/* ============================================
   СТРАНИЦА ПРОЕКТИРОВАНИЯ - ЛОКАЛЬНЫЕ СТИЛИ
   ============================================
   
   Базовые стили берутся из ../style.css:
   - CSS переменные (:root)
   - body, html, h1-h6
   - .container, .content-wrapper
   - .section, .btn
   - .header стили
   
   Этот файл содержит только специфичные стили для страницы проектирования
   ============================================ */

/* Header стили берутся из главного style.css */

/* Отступ для контента под fixed header - убираем для hero секции */
.main {
  padding-top: 0;
}

/* Hero секция на весь экран, поэтому первый элемент не нуждается в отступе */
.main > .design-hero:first-child {
  margin-top: 0;
}

/* Золотой акцент */
.highlight {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

/* Чередование фонов секций */
.design-types {
  background: linear-gradient(to bottom, 
    var(--background-color) 0%,
    rgba(22, 24, 34, 0.95) 10%,
    rgba(22, 24, 34, 0.95) 90%,
    var(--background-color) 100%
  );
}

.design-types > .container {
  max-width: 100%;
  padding: 0;
}

.design-process {
  background: var(--background-color);
}

.prices {
  background: linear-gradient(to bottom, 
    var(--background-color) 0%,
    rgba(22, 24, 34, 0.95) 10%,
    rgba(22, 24, 34, 0.95) 90%,
    var(--background-color) 100%
  );
  padding: 40px 0 !important;
  overflow: visible;
}

.prices .container {
  padding-top: 20px;
  padding-bottom: 10px;
  overflow: visible;
}

.prices .section-title {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.prices .section-subtitle {
  margin-bottom: 20px;
  font-size: 1rem;
}

.portfolio {
  background: var(--background-color);
}

.faq {
  background: linear-gradient(to bottom, 
    var(--background-color) 0%,
    rgba(22, 24, 34, 0.95) 10%,
    rgba(22, 24, 34, 0.95) 90%,
    var(--background-color) 100%
  );
}

/* Декоративные элементы для секций */
.design-types .decor-left-top,
.design-process .decor-left-top,
.prices .decor-left-top,
.portfolio .decor-left-top,
.faq .decor-left-top {
  background-image: url('../main_img/project.webp');
  top: 10%;
  left: -150px;
}

.design-types .decor-left-bottom,
.design-process .decor-left-bottom,
.prices .decor-left-bottom,
.portfolio .decor-left-bottom,
.faq .decor-left-bottom {
  background-image: url('../main_img/project.webp');
  bottom: 10%;
  left: -150px;
  transform: rotate(180deg);
}

.design-types .decor-right-top,
.design-process .decor-right-top,
.prices .decor-right-top,
.portfolio .decor-right-top,
.faq .decor-right-top {
  background-image: url('../main_img/project.webp');
  top: 10%;
  right: -150px;
  transform: rotate(270deg);
}

.design-types .decor-right-bottom,
.design-process .decor-right-bottom,
.prices .decor-right-bottom,
.portfolio .decor-right-bottom,
.faq .decor-right-bottom {
  background-image: url('../main_img/project.webp');
  bottom: 10%;
  right: -150px;
  transform: rotate(90deg);
}

/* Design Hero Section - использует стили из style.css, добавляем только специфичные */
.design-hero {
  /* Стили берутся из .hero в style.css */
  position: relative;
  height: 100vh;
  max-height: 100vh;
  margin-top: 0;
  padding: 0 !important;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.design-hero > .container {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  height: 100%;
  max-height: 100vh;
}

.design-hero .hero-content-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: clamp(60px, 8vh, 75px); /* Отступ от fixed header */
  padding-bottom: clamp(10px, 1.5vh, 20px);
  max-height: calc(100vh - 70px);
  overflow: hidden;
}

.design-hero .hero-info {
  margin-top: clamp(4px, 0.8vw, 8px);
}

.design-hero .hero-info p {
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  margin-bottom: clamp(2px, 0.5vw, 4px);
  line-height: 1.3;
}

.design-hero .hero-left {
  min-height: auto !important;
  padding-top: 0 !important;
  justify-content: flex-start !important;
  gap: clamp(4px, 0.8vw, 8px);
}

/* Убеждаемся, что видео-фон растягивается на весь экран */
.design-hero .hero-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.design-hero .hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.design-hero .hero-title {
  white-space: normal;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: clamp(4px, 0.8vw, 8px);
}

.design-hero .hero-subtitle {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  margin-bottom: clamp(4px, 0.8vw, 8px);
  line-height: 1.4;
}

/* Компактные USP блоки */
.design-hero .hero-features {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(4px, 0.8vw, 6px);
  justify-content: start;
  max-width: 450px;
  margin-bottom: clamp(4px, 0.8vw, 8px);
}

.design-hero .hero-feature {
  padding: clamp(6px, 1.2vw, 8px) clamp(8px, 1.5vw, 12px);
  gap: clamp(4px, 0.8vw, 6px);
  width: 100%;
  min-width: 0;
}

.design-hero .feature-icon {
  width: clamp(24px, 3vw, 28px);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.design-hero .feature-text {
  white-space: normal;
}

.design-hero .feature-text strong {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
}

.design-hero .feature-text span {
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
}

/* Главное преимущество - уникальный элемент для страницы проектирования */
.design-hero-main-feature {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 12px);
  padding: clamp(8px, 1.2vw, 12px) clamp(12px, 1.8vw, 18px);
  margin-bottom: clamp(4px, 0.8vw, 8px);
  width: 100%;
  max-width: 600px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  text-align: left;
}

.design-hero-main-feature:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.12) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.6);
}

.main-feature-icon {
  flex-shrink: 0;
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.main-feature-icon i {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--secondary-color);
}

.main-feature-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.5vw, 4px);
  flex: 1;
}

.main-feature-content strong {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  color: white;
  line-height: 1.3;
  display: block;
}

.main-feature-content span {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* Адаптив для главного преимущества */
@media (max-width: 768px) {
  .design-hero {
    height: 100vh;
    max-height: 100vh;
    align-items: flex-start;
  }
  
  .design-hero > .container {
    height: 100%;
    max-height: 100vh;
    align-items: flex-start;
  }
  
  .design-hero .hero-content-wrapper {
    padding-top: 60px;
    padding-bottom: 10px;
    align-items: flex-start;
    max-height: calc(100vh - 60px);
    overflow: hidden;
  }
  
  .design-hero .hero-left {
    gap: clamp(10px, 3vw, 15px);
  }
  
  .design-hero .hero-title {
    white-space: normal;
    font-size: clamp(1.3rem, 6vw, 2rem);
    margin-bottom: clamp(8px, 2vw, 12px);
  }
  
  .design-hero .hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin-bottom: clamp(8px, 2vw, 15px);
  }
  
  .design-hero-main-feature {
    flex-direction: column;
    text-align: center;
    padding: clamp(15px, 3vw, 20px);
    max-width: 100%;
    margin-bottom: clamp(10px, 2vw, 20px);
  }
  
  .main-feature-icon {
    width: clamp(40px, 6vw, 45px);
    height: clamp(40px, 6vw, 45px);
  }
  
  .main-feature-icon i {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
  }
  
  .main-feature-content strong {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  
  .main-feature-content span {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
  }
  
  .design-hero .hero-features {
    gap: clamp(4px, 1.5vw, 6px);
    margin-bottom: clamp(8px, 2vw, 12px);
  }
  
  .design-hero .hero-feature {
    padding: clamp(6px, 2vw, 8px) clamp(8px, 2vw, 10px);
  }
  
  .design-hero .hero-info {
    margin-top: clamp(8px, 2vw, 12px);
  }
  
  .design-hero .hero-info p {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    margin-bottom: clamp(4px, 1vw, 6px);
  }
}

/* Стили для секции типов проектов */
.design-types {
    background-color: var(--background-color);
    position: relative;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

/* Десктоп: исходный слайдер с hover эффектами */
.design-cards-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 0.85fr 0.85fr 0.85fr 0.85fr 0.85fr;
    gap: 1em;
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 450px;
    transition: all 400ms ease;
    padding: 0 40px;
    justify-content: center;
}

.design-cards-grid:hover .design-card-simple:not(:hover) {
    filter: none;
}

.design-card-simple {
    position: relative;
    background: url('desing_img/project_back_side.webp') center center;
    background-size: cover;
    transition: all 400ms;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
    z-index: 1;
    transform-origin: center;
}

.design-card-simple:nth-child(1) {
    --card-bg-img: url(desing_img/Projects/Eskiz.webp);
}

.design-card-simple:nth-child(2) {
    --card-bg-img: url(desing_img/Projects/Arhitecture.webp);
}

.design-card-simple:nth-child(3) {
    --card-bg-img: url(desing_img/Projects/Constructive.webp);
}

.design-card-simple:nth-child(4) {
    --card-bg-img: url(desing_img/Projects/Ingeener.webp);
}

.design-card-simple:nth-child(5) {
    --card-bg-img: url(desing_img/Projects/Design.webp);
}

.design-card-simple:nth-child(6) {
    --card-bg-img: url(desing_img/Projects/Landscape.webp);
}

.design-card-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: rotateY(180deg);
    background-image: var(--card-bg-img);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 400ms;
    z-index: 1;
    backface-visibility: hidden;
    pointer-events: none;
}

.design-card-simple:hover::before {
    opacity: 1;
    transform: rotateY(0deg);
}

.design-card-simple .card-image-simple {
    display: none;
}

.design-card-simple .card-content-simple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: all 400ms;
    z-index: 4;
    overflow: hidden;
    color: #fff;
    background: rgba(0, 0, 0, 0.85);
    pointer-events: none;
}

.design-card-simple:hover .card-content-simple {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 200ms;
    pointer-events: auto;
}

.design-card-simple:hover {
    filter: grayscale(0%) opacity(100%) !important;
    z-index: 10;
}

.design-cards-grid:has(.design-card-simple:nth-child(1):hover) {
    grid-template-columns: 2.55fr 1fr 1fr 1fr 1fr 1fr;
}

.design-cards-grid:has(.design-card-simple:nth-child(2):hover) {
    grid-template-columns: 1fr 2.55fr 1fr 1fr 1fr 1fr;
}

.design-cards-grid:has(.design-card-simple:nth-child(3):hover) {
    grid-template-columns: 1fr 1fr 2.55fr 1fr 1fr 1fr;
}

.design-cards-grid:has(.design-card-simple:nth-child(4):hover) {
    grid-template-columns: 1fr 1fr 1fr 2.55fr 1fr 1fr;
}

.design-cards-grid:has(.design-card-simple:nth-child(5):hover) {
    grid-template-columns: 1fr 1fr 1fr 1fr 2.55fr 1fr;
}

.design-cards-grid:has(.design-card-simple:nth-child(6):hover) {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 2.55fr;
}

.design-card-simple:nth-child(odd) {
    transform: translateY(-16px);
}

.design-card-simple:nth-child(even) {
    transform: translateY(16px);
}

.design-card-simple:nth-child(odd):hover {
    transform: translateY(-16px) scaleX(1.02) scaleY(1.02);
}

.design-card-simple:nth-child(even):hover {
    transform: translateY(16px) scaleX(1.02) scaleY(1.02);
}

.design-card-simple::after {
    content: attr(data-text);
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    max-width: 90%;
    line-height: 1.4;
    transition: opacity 400ms;
    pointer-events: none;
}

.design-card-simple:hover::after {
    opacity: 0;
}

.card-title-simple {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 0 0 14px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-description-simple {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 14px;
    font-size: 0.88rem;
    flex-grow: 1;
    border-left: 3px solid var(--secondary-color);
    padding-left: 14px;
}

.card-description-simple strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.card-features-simple {
    margin: 0;
    padding-top: 12px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.card-features-simple h4 {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-features-simple ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.card-features-simple ul li {
    padding-left: 24px;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.72rem;
    line-height: 1.4;
}

.card-features-simple ul li::before {
    display: none;
}

.card-features-simple ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--secondary-color);
    font-size: 0.75rem;
    width: 18px;
    text-align: center;
}


.design-card {
    background: var(--card-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.design-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-header {
    padding: 25px 25px 15px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.design-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 232, 72, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    flex-shrink: 0;
}

.design-card h3 {
    margin: 0;
    font-size: 20px;
    color: var(--light-color);
    flex-grow: 1;
}

.price-badge {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-body {
    padding: 0 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-description {
    color:var(--light-color);
    line-height: 1.6;
    margin: 15px 0;
    font-size: 15px;
}

.timeline {
    margin: 15px 0;
    padding-left: 15px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 232, 72, 0.3);
}

.timeline-item {
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.timeline-info {
     color:var(--light-color);
    font-size: 14px;
}

.features-block {
    margin: 20px 0;
}

.features-title {
    font-size: 16px;
     color:var(--light-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color:var(--light-color);
    font-size: 14px;
}

.features-list i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-color);
}

.card-footer {
    margin-top: auto;
    display: flex;
    gap: 10px;
    padding-top: 15px;
}

.btn-details {
    flex-grow: 0;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.75rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-details:hover {
    background: rgba(255, 232, 72, 0.1);
}

.btn-order {
    flex-grow: 1;
    background: var(--accent-color);
    color: var(--dark-color);
    border: 2px solid var(--accent-color);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

/* Адаптация для планшетов */
@media (max-width: 1200px) {
    .design-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        height: 360px;
        max-width: 100%;
    }
    
    .design-cards-grid:has(.design-card-simple:nth-child(1):hover) {
        grid-template-columns: 3fr 1fr 1fr;
    }
    
    .design-cards-grid:has(.design-card-simple:nth-child(2):hover) {
        grid-template-columns: 1fr 3fr 1fr;
    }
    
    .design-cards-grid:has(.design-card-simple:nth-child(3):hover) {
        grid-template-columns: 1fr 1fr 3fr;
    }
    
    .design-cards-grid:has(.design-card-simple:nth-child(4):hover) {
        grid-template-columns: 3fr 1fr 1fr;
    }
    
    .design-cards-grid:has(.design-card-simple:nth-child(5):hover) {
        grid-template-columns: 1fr 3fr 1fr;
    }
    
    .design-cards-grid:has(.design-card-simple:nth-child(6):hover) {
        grid-template-columns: 1fr 1fr 3fr;
    }
}

/* Адаптация для мобильных - простые карточки */
@media (max-width: 768px) {
    .design-cards-grid {
        grid-template-columns: 1fr !important;
        height: auto !important;
        gap: 20px;
        padding: 0 15px;
    }
    
    .design-cards-grid:hover .design-card-simple {
        filter: none !important;
    }
    
    .design-card-simple {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 15px !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        transform: none !important;
        cursor: default !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
        margin: 0;
    }
    
    .design-card-simple::before,
    .design-card-simple::after {
        display: none !important;
    }
    
    .design-card-simple:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        filter: none !important;
    }
    
    .design-card-simple .card-image-simple {
        display: block !important;
        width: 100%;
        height: 280px;
        overflow: hidden;
        position: relative;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        margin-bottom: 20px;
        flex-shrink: 0;
    }
    
    .design-card-simple .card-image-simple img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .design-card-simple:hover .card-image-simple img {
        transform: scale(1.05);
    }
    
    .design-card-simple .card-content-simple {
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        background: transparent !important;
        padding: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        flex-grow: 1;
    }
    
    .card-title-simple {
        font-size: 1.25rem !important;
        text-transform: none !important;
        letter-spacing: normal !important;
    }
    
    .card-description-simple {
        font-size: 1rem !important;
        border-left: none !important;
        padding-left: 0 !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .card-features-simple {
        margin-top: auto;
        padding-top: 20px;
        border-top: 2px solid rgba(212, 175, 55, 0.2);
    }
    
    .card-features-simple h4 {
        font-size: 0.9375rem !important;
        text-transform: none !important;
        letter-spacing: normal !important;
    }
    
    .card-features-simple ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        grid-template-columns: none !important;
    }
    
    .card-features-simple ul li {
        font-size: 1rem !important;
        padding: 8px 0 !important;
        padding-left: 25px !important;
        color: rgba(255, 255, 255, 0.8) !important;
        line-height: 1.6 !important;
    }
    
    .card-features-simple ul li::before {
        content: '✓' !important;
        display: block !important;
        position: absolute;
        left: 0;
        color: var(--secondary-color);
        font-weight: bold;
        font-size: 1.2rem;
    }
    
    .card-features-simple ul li i {
        display: none !important;
    }
}

/* Process Steps - Табы с горизонтальными карточками */
.design-process {
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.process-tabs-container {
    max-width: 1200px;
    margin: 10px auto 0;
    padding: 0 40px;
}

/* Навигация вкладок - современный дизайн */
.process-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    padding: 0;
    position: relative;
}


.process-tab-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 110px;
    position: relative;
}

.process-tab-btn .tab-icon,
.process-tab-btn .tab-title {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-tab-btn .tab-icon {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.process-tab-btn .tab-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.process-tab-btn:hover .tab-icon {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.process-tab-btn:hover .tab-title {
    color: rgba(255, 255, 255, 0.9);
}

.process-tab-btn.active .tab-icon {
    color: var(--secondary-color);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    transform: scale(1.15);
}

.process-tab-btn.active .tab-title {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Опциональный шаг */
.process-tab-btn.optional {
    opacity: 0.7;
}

.process-tab-btn.optional::after {
    content: 'Опц.';
    position: absolute;
    top: -8px;
    right: -8px;
    background: rgba(212, 175, 55, 0.8);
    color: #000;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    line-height: 1;
    letter-spacing: 0.5px;
    z-index: 3;
}

.process-tab-btn.optional:hover,
.process-tab-btn.optional.active {
    opacity: 1;
}

.process-tab-panel.optional .process-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    -webkit-text-fill-color: initial;
}

.process-tab-panel.optional .process-content h3 > span:first-child {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(255, 232, 72, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-tab-panel.optional .optional-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--secondary-color);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Контент вкладок */
.process-tabs-content {
    position: relative;
    min-height: 370px;
}

.process-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    filter: blur(3px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.6s ease;
}

.process-tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Карточка процесса - современный дизайн */
.process-card {
    background: linear-gradient(135deg, rgba(33, 36, 44, 0.95) 0%, rgba(28, 31, 40, 0.98) 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    backdrop-filter: blur(20px);
    height: 370px;
}


.process-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1d26 0%, #000 100%);
    height: 370px;
    z-index: 2;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-content {
    flex: 1;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow-y: auto;
}

.process-content h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(255, 232, 72, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 14px 0;
    font-weight: 800;
    position: relative;
    padding-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.process-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, rgba(255, 232, 72, 0.5) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}


.process-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
    letter-spacing: 0.05px;
    font-weight: 400;
}

.process-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-features li {
    margin-bottom: 10px;
    padding-left: 32px;
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: 1.5;
}

.process-features li:hover {
    transform: translateX(6px);
    color: rgba(255, 255, 255, 1);
    padding-left: 36px;
}

.process-features i {
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 232, 72, 0.15) 100%);
    border: 1px solid rgba(255, 232, 72, 0.3);
    border-radius: 4px;
    color: var(--secondary-color);
    font-size: 0.7rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.2);
}

.process-features li:hover i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(255, 232, 72, 0.25) 100%);
    border-color: rgba(255, 232, 72, 0.5);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.35);
}

/* Адаптация для планшетов */
@media (max-width: 992px) {
    .process-tabs-container {
        padding: 0 20px;
    }
    
    .process-tabs-nav {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .process-tab-btn {
        padding: 0;
        width: 100px;
    }
    
    .process-tab-btn .tab-icon {
        font-size: 1.2rem;
    }
    
    .process-tab-btn .tab-title {
        font-size: 0.65rem;
        letter-spacing: 1.2px;
    }
    
    .process-card {
        flex-direction: column;
        height: 370px;
    }
    
    .process-image {
        flex: 0 0 40%;
        height: 370px;
    }
    
    .process-content {
        padding: 28px 32px;
    }
    
    .process-content h3 {
        font-size: 1.35rem;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .process-description {
        font-size: 0.88rem;
        margin-bottom: 16px;
        line-height: 1.4;
    }
    
    .process-features li {
        font-size: 0.82rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .process-tabs-nav {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .process-tab-btn {
        padding: 0;
        width: 85px;
        gap: 3px;
    }
    
    .process-tab-btn .tab-icon {
        font-size: 1.1rem;
    }
    
    .process-tab-btn .tab-title {
        font-size: 0.6rem;
        letter-spacing: 0.8px;
    }
    
    .process-tabs-content {
        min-height: auto;
    }
    
    .process-card {
        height: 370px;
        flex-direction: column;
    }
    
    .process-image {
        flex: 0 0 185px;
        height: 185px;
    }
    
    .process-content {
        padding: 20px 25px;
    }
    
    .process-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }
    
    .process-description {
        font-size: 0.8rem;
        margin-bottom: 14px;
        line-height: 1.4;
    }
    
    .process-features li {
        font-size: 0.75rem;
        margin-bottom: 6px;
        padding-left: 28px;
        line-height: 1.4;
    }
    
    .process-features i {
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
        top: 2px;
    }
}

/* Старые стили timeline удалены */

/* CTA блок */
.improved-cta {
    left: 35px;
    right: 17.5px;
    height: 4px;
    background: rgba(255, 232, 72, 0.08);
    border-radius: 2px;
    z-index: 1;
    overflow: hidden;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 232, 72, 0.1) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--secondary-color) 0%, rgba(212, 175, 55, 1) 40%, rgba(212, 175, 55, 0.95) 70%, rgba(212, 175, 55, 0.85) 100%);
    border-radius: 2px;
    transition: width 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    opacity: 0;
}

.timeline-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

.timeline-progress::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -3px;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8), 0 0 20px rgba(212, 175, 55, 0.5);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.8), 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 18px rgba(212, 175, 55, 1), 0 0 35px rgba(212, 175, 55, 0.7);
    }
}

/* Контейнер маркеров */
.timeline-markers {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 3;
    padding: 0;
}

/* Отдельный маркер */
.timeline-marker {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.timeline-marker:hover:not(.active) .marker-circle {
    transform: scale(1.1);
    border-color: rgba(255, 232, 72, 0.5);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.timeline-marker:hover:not(.active) .step-num {
    color: rgba(255, 255, 255, 0.8);
}


.timeline-marker.active .marker-circle {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    transform: scale(1.2);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6), 0 0 0 6px rgba(212, 175, 55, 0.1);
    animation: pulseMarker 2s ease-in-out infinite;
}

@keyframes pulseMarker {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6), 0 0 0 6px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.8), 0 0 0 8px rgba(212, 175, 55, 0.15);
    }
}

.timeline-marker.active .step-num {
    color: var(--secondary-color);
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}


/* Круг маркера */
.marker-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--card-color);
    border: 2px solid rgba(255, 232, 72, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    margin-bottom: 12px;
    overflow: hidden;
    z-index: 10;
    opacity: 1;
}

.marker-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.marker-circle::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: linear-gradient(to bottom, var(--secondary-color) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.timeline-marker.active .marker-circle::before {
    opacity: 1;
}

.timeline-marker.active .marker-circle::after {
    opacity: 0.6;
    height: 12px;
}

.step-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    line-height: 1;
    position: relative;
    z-index: 1;
}

/* Большая карточка с деталями */
.timeline-card-wrapper {
    position: relative;
    min-height: 380px;
    margin-bottom: 25px;
    overflow: hidden;
}

.timeline-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(40px) scale(0.92);
    pointer-events: none;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: blur(2px);
}

.timeline-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
    filter: blur(0);
}

.step-card {
    background: var(--card-color);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.step-card:hover::before {
    opacity: 1;
}

.step-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: 380px;
    z-index: 2;
}

.step-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(33, 36, 44, 0.88) 0%, rgba(33, 36, 44, 0.5) 40%, transparent 60%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.step-card:hover .step-image::before {
    background: linear-gradient(to right, rgba(33, 36, 44, 0.85) 0%, rgba(33, 36, 44, 0.4) 40%, transparent 60%);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    filter: brightness(0.85);
}

.timeline-card.active .step-image img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.step-card:hover .step-image img {
    transform: scale(1.12);
    filter: brightness(0.95);
}

.step-card-content {
    flex: 1;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step-card-content h3 {
    font-size: 1.7rem;
    color: var(--secondary-color);
    margin: 0 0 16px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.step-card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, rgba(212, 175, 55, 0.6) 100%);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.timeline-card.active .step-card-content h3::after {
    width: 110px;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-color);
    margin-bottom: 20px;
    opacity: 0.92;
    letter-spacing: 0.1px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    color: var(--light-color);
    font-size: 0.9rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    line-height: 1.5;
    opacity: 0.9;
}

.step-features li:hover {
    transform: translateX(6px);
    color: #fff;
    opacity: 1;
    padding-left: 32px;
}

.step-features i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--secondary-color);
    font-size: 1rem;
    transition: all 0.35s ease;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.step-features li:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 3px 8px rgba(212, 175, 55, 0.5));
}

/* Навигация */
.timeline-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.timeline-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.timeline-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: -1;
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.timeline-nav-btn:hover {
    color: var(--dark-color);
    transform: scale(1.1);
}

.timeline-nav-btn:hover::before {
    transform: scale(1);
}

.timeline-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Адаптация для планшетов */
@media (max-width: 992px) {
    .timeline-container {
        padding: 0 20px;
    }
    
    .timeline-wrapper {
        padding: 20px 0 40px;
        margin-bottom: 20px;
    }
    
    .timeline-line {
        top: 30px;
        height: 3px;
        left: 30px;
        right: 15px;
    }
    
    .timeline-markers {
        padding: 0;
    }
    
    .marker-circle {
        width: 30px;
        height: 30px;
        margin-bottom: 10px;
        z-index: 10;
        border: 2px solid rgba(255, 232, 72, 0.3);
    }
    
    .step-num {
        font-size: 0.75rem;
    }
    
    .timeline-marker.active .step-num {
        font-size: 0.85rem;
    }
    
    .step-card {
        flex-direction: column;
    }
    
    .step-image {
        flex: 0 0 250px;
        min-height: 250px;
    }
    
    .step-image::before {
        background: linear-gradient(to bottom, rgba(33, 36, 44, 0.85) 0%, transparent 50%);
    }
    
    .step-card-content {
        padding: 25px;
    }
    
    .step-card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .step-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .timeline-card-wrapper {
        min-height: auto;
        margin-bottom: 20px;
    }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .timeline-wrapper {
        padding: 20px 0 40px;
        margin-bottom: 40px;
    }
    
    .timeline-line {
        top: 27px;
        height: 2px;
        left: 27px;
        right: 13.5px;
    }
    
    .timeline-markers {
        flex-wrap: wrap;
        gap: 15px;
        padding: 0;
    }
    
    .marker-circle {
        width: 27px;
        height: 27px;
        z-index: 10;
        border: 2px solid rgba(255, 232, 72, 0.3);
    }
    
    .step-num {
        font-size: 0.7rem;
    }
    
    .timeline-marker.active .step-num {
        font-size: 0.8rem;
    }
    
    .timeline-marker {
        flex: 0 0 calc(50% - 7.5px);
    }
    
    .marker-circle {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
    }
    
    .step-num {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .marker-title {
        font-size: 0.6rem;
    }
    
    .timeline-card-wrapper {
        min-height: auto;
    }
    
    .step-card-content {
        padding: 25px;
    }
    
    .step-card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .step-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .step-features li {
        font-size: 0.9rem;
        margin-bottom: 12px;
        padding-left: 28px;
    }
    
    .step-image {
        min-height: 250px;
    }
    
    .timeline-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* CTA блок */
.improved-cta {
  width: 100%;
    background-color: rgba(44, 49, 63, 0.87); /* #2C313F87 */
    padding: 60px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.cta-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-image-column {
    flex: 1;
    padding: 20px;
    position: relative;
}

.cta-image {
    width: 100%;
    height: auto;
     }

.cta-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.cta-content-column {
    flex: 1;
    padding: 20px 40px;
}

.cta-content {
    max-width: 500px;
    margin-left: auto;
}

.cta-title {
    color: #FFE848;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    line-height: 1.3;
}

.cta-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #FFE848;
    margin-top: 15px;
}

.cta-text {
    color: #ECF0F1;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: #FFE848;
    color: #121A24;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 232, 72, 0.3);
}

.cta-button:hover {
    background: #121A24;
    color: #FFE848;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 232, 72, 0.4);
}

.cta-button i {
    font-size: 18px;
}

/* Декоративные элементы */
.improved-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,232,72,0.15) 0%, rgba(255,232,72,0) 70%);
    z-index: 1;
}

.improved-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,232,72,0.1) 0%, rgba(255,232,72,0) 70%);
    z-index: 1;
}

/* Адаптация для планшетов */
@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
    }
    
    .cta-content-column {
        padding: 40px 20px 0;
    }
    
    .cta-content {
        max-width: 100%;
        text-align: center;
    }
    
    .cta-title::after {
        margin: 15px auto 0;
    }
    
    .cta-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Адаптация для мобильных */
@media (max-width: 576px) {
    .improved-cta {
        padding: 40px 0;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Адаптация для мобильных */
@media (max-width: 992px) {
    .slide-content {
        flex-direction: column;
        height: auto;
    }
    
    .step-info {
        padding: 30px 20px;
    }
    
    .step-image {
        height: 300px;
    }
    
    .step-number {
        font-size: 80px;
        top: -15px;
        left: -10px;
    }
}

@media (max-width: 576px) {
    .step-info h3 {
        font-size: 24px;
    }
    
    .process-cta p {
        font-size: 16px;
    }
    
    .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
    }
}

/* Portfolio */
.portfolio-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--accent-color);
  color: var(--dark-color);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.portfolio-image {
  position: relative;
  height: 250px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.portfolio-btn {
  padding: 10px 25px;
}

.portfolio-cta {
  text-align: center;
  margin-top: 40px;
}

/* Pricing Tables */
.pricing-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.pricing-card {
  background: var(--card-color);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
  overflow: visible;
}

.pricing-card.popular {
  border: 2px solid var(--accent-color);
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .pricing-card.popular {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: none;
  }
  
  .pricing-card.popular.fully-visible {
    border: 2px solid var(--secondary-color);
  }
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 15px;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 4px 12px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.8rem;
  z-index: 1000;
}

.pricing-header {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-header h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  color: white;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
  margin: 10px 0;
}

.price span {
  font-size: 1rem;
  font-weight: normal;
}

.pricing-header p {
  margin: 0;
  color: var(--light-color);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.pricing-features li {
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
  font-size: 0.9rem;
}

.pricing-features i.fa-check {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--accent-color);
}

.pricing-features i.fa-times {
  position: absolute;
  left: 0;
  top: 4px;
  color: #e74c3c;
}

.pricing-btn {
  width: 100%;
  padding: 10px;
  font-weight: bold;
  font-size: 0.9rem;
}

.pricing-card.selected {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  transform: scale(1.02);
  transition: all 0.3s ease;
}

/* Мобильные: простые карточки цен */
@media (max-width: 768px) {
  .pricing-tables {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    gap: 20px !important;
    padding: 20px 0 20px 0 !important;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) rgba(255, 255, 255, 0.05);
  }
  
  .pricing-tables::-webkit-scrollbar {
    height: 8px;
  }
  
  .pricing-tables::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
  }
  
  .pricing-tables::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
  }
  
  .pricing-tables::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
  }
  
  .pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
    flex-shrink: 0 !important;
    opacity: 0.6;
    transform: scale(0.95);
    transition: all 0.3s ease;
    position: relative !important;
    overflow: visible !important;
  }
  
  .pricing-card.popular {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transform: none;
  }
  
  .pricing-card.fully-visible {
    opacity: 1;
    transform: scale(1);
    border: 2px solid var(--secondary-color) !important;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
  }
  
  .pricing-card.popular.fully-visible {
    border: 2px solid var(--secondary-color) !important;
  }
  
  .pricing-card:first-child {
    margin-left: 0;
  }
  
  .pricing-card:last-child {
    margin-right: 0;
  }
  
  .pricing-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  }
  
  .pricing-header h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .price {
    color: var(--secondary-color);
    margin: 10px 0;
  }
  
  .pricing-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
  }
  
  .pricing-features {
    margin-bottom: 12px;
    flex-grow: 1;
  }
  
  .pricing-features li {
    padding: 6px 0;
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .pricing-features li:has(i.fa-times)::before {
    content: '✗';
    color: #e74c3c;
  }
  
  .pricing-features i.fa-check,
  .pricing-features i.fa-times {
    display: none;
  }
}

@media (max-width: 576px) {
  .pricing-card {
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    position: relative !important;
    overflow: visible !important;
  }
}

.pricing-note {
  margin-top: 15px;
  font-size: 0.8rem;
  color: var(--light-color);
  text-align: center;
  opacity: 0.7;
  line-height: 1.4;
}

/* Toast-уведомление для выбора пакета */
.pricing-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(26, 29, 41, 0.98);
  backdrop-filter: blur(20px);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10000;
  max-width: 380px;
}

.pricing-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.pricing-toast .toast-content {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.pricing-toast .toast-content i {
  font-size: 2rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.pricing-toast .toast-text {
  flex: 1;
}

.pricing-toast .toast-text strong {
  display: block;
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 5px;
}

.pricing-toast .toast-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.pricing-toast .toast-btn {
  background: var(--secondary-color);
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pricing-toast .toast-btn:hover {
  background: rgba(212, 175, 55, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.pricing-toast .toast-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: rgba(212, 175, 55, 0.9);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
}

.pricing-toast .toast-close:hover {
  background: var(--secondary-color);
  transform: rotate(90deg) scale(1.1);
}

@media (max-width: 768px) {
  .pricing-toast {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(100px);
  }
  
  .pricing-toast.show {
    transform: translateY(0);
  }
  
  .pricing-toast .toast-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .pricing-toast .toast-btn {
    width: 100%;
  }
}

/* FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-color);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255,255,255,0.05);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--light-color);
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}

/* Order Project */
.order-project {
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
}

.order-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.order-form {
  margin-top: 40px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  flex: 1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: rgba(0, 0, 0, 0.6);
}

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

.form-footer {
  margin-top: 20px;
}

.form-footer p {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.form-footer a {
  color: var(--accent-color);
  text-decoration: none;
}

/* Footer стили берутся из главного style.css */

/* Responsive Styles - локальные для страницы проектирования */
@media (max-width: 992px) {
  .process-step, .process-step.reverse {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 20px;
  }
  
  .pricing-tables {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .design-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .portfolio-filter {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 250px;
  }
  
  .order-form {
    padding: 20px;
  }
}

/* Стили для workflow optional элементов */
.workflow-tabs {
    overflow: visible !important;
}

.workflow-tab.optional {
    opacity: 0.7;
    position: relative;
    overflow: visible !important;
}

.workflow-tab.optional::after {
    content: 'Опционально';
    position: absolute;
    top: -12px;
    right: -8px;
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 4px 7px;
    border-radius: 6px;
    line-height: 1;
    z-index: 9999;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.workflow-tab.optional:hover,
.workflow-tab.optional.active {
    opacity: 1;
}

.workflow-step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.workflow-slide .optional-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--secondary-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 8px;
    margin-left: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}