:root {
  --primary: #ffdb2f;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --gray: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background-color: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto;
}

/* Навигация */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
}

.navbar-brand span b {
font-weight: 900;
color: #ffdb2f;
font-size: 1.3em;
text-shadow: 0 0 10px rgba(255, 219, 47, 0.3);
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  color: var(--dark);
}

.nav-link:hover {
  color: var(--primary);
}
.feature-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 10px;
  height: 100%;
  transition: all 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-item h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.feature-item p {
  color: var(--gray);
  margin: 0;
}
/* Герой секция */
.hero {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0.05;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--gray);
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* Кнопки */
.btn-primary {
  background-color: var(--primary);
  color: var(--dark);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #ffcc00;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--dark);
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

/* Особенности */
.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s;
  height: 100%;
  border-top: 4px solid var(--primary);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

/* Процесс работы */
.process-section {
  background-color: var(--light);
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* Тарифы */
.pricing-card {
  background: #fff;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  margin: 1.5rem 0;
  color: var(--dark);
}

.price span {
  font-size: 1rem;
  color: var(--gray);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}
.software-feature {
  padding: 2rem;
}

.software-feature h3 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.software-feature p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.software-screenshot {
  text-align: center;
  padding: 2rem;
}

.screenshot-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  padding: 4rem 2rem;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.software-screenshot {
  text-align: center;
  padding: 1rem;
}

.software-screenshot img {
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.software-screenshot img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Адаптивность */
@media (max-width: 991px) {
  .software-feature {
      text-align: center;
      padding: 1rem;
  }
  
  .software-screenshot {
      margin-top: 2rem;
  }
  
  .software-screenshot img {
      max-width: 100%;
      height: auto;
  }
}
/* Адаптивность */
@media (max-width: 991px) {
  .software-feature {
      text-align: center;
      padding: 1rem;
  }
  
  .software-screenshot {
      margin-top: 2rem;
  }
}
/* Стили для таблицы услуг */
.service-table {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-table thead th {
  background-color: var(--primary);
  color: var(--dark);
  font-weight: 700;
  border: none;
  padding: 1.5rem 1rem;
  font-size: 1.1rem;
}

.service-table tbody tr {
  transition: all 0.3s;
}

.service-table tbody tr:hover {
  background-color: rgba(255, 219, 47, 0.1);
}

.service-table tbody td {
  padding: 1.5rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid #dee2e6;
}

.service-table .price-cell {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}

.service-table .popular-service {
  background-color: rgba(255, 219, 47, 0.05);
  border-left: 4px solid var(--primary);
}

.service-table .btn {
  white-space: nowrap;
}
/* Отзывы */
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 700;
}

/* Форма */
.form-section {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.form-container {
  background: #fff;
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Футер */
footer {
  background-color: var(--dark);
  color: #fff;
  padding: 60px 0 30px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}
.modal-content {
border-radius: 10px;
border: none;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header {
border-bottom: 2px solid var(--primary);
background-color: var(--light);
}

.modal-title {
font-weight: 700;
color: var(--dark);
}

.contact-info a {
color: var(--primary);
text-decoration: none;
}

.contact-info a:hover {
text-decoration: underline;
}
/* Анимации */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
/* Стили для промо-блока */
.promo-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 2px dashed var(--primary);
}

.promo-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.promo-code {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--primary);
  padding: 1rem 2rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
}
/* Адаптивность */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2.5rem;
  }
  
  .section {
      padding: 60px 0;
  }
  
  .pricing-card.popular {
      transform: scale(1);
  }
  
  .pricing-card.popular:hover {
      transform: translateY(-5px);
  }
}