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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #f4f7fc;
  color: #1e2b3c;
  line-height: 1.6;
}

.page-wrapper {
  position: relative;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero с фоновым изображением */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.4);
  transform: scale(1.1);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  opacity: 0.9;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Кнопки */
.btn {
  display: inline-block;
  background: #f97316;
  color: white;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 42px;
  border-radius: 60px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn:hover {
  background: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

.btn--large {
  padding: 18px 52px;
  font-size: 20px;
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 48px;
  color: white;
  cursor: pointer;
  animation: bounce 2.5s infinite;
  opacity: 0.8;
  transition: opacity 0.3s;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.scroll-indicator:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(15px); }
}

/* Section title */
.section-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #1e2b3c;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #f97316, #3b82f6);
  margin: 20px auto 0;
  border-radius: 5px;
}

.section-title--light {
  color: white;
}
.section-title--light:after {
  background: white;
}

/* Definitions */
.definitions {
  padding: 100px 0;
  background: white;
}

.defs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.def-card {
  background: #f8fafc;
  border-radius: 40px;
  padding: 40px 35px;
  box-shadow: 0 20px 35px rgba(0,0,0,0.02);
  transition: 0.3s;
}

.def-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 45px rgba(0,0,0,0.05);
}

.def-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 20px;
}

.def-card p {
  font-size: 18px;
  color: #334155;
  line-height: 1.7;
}

/* Advantages */
.advantages {
  padding: 100px 0;
  background: #f1f5f9;
}

.adv-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.adv-card {
  background: white;
  border-radius: 40px;
  padding: 40px 30px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.03);
}

.adv-card--accent {
  border: 2px solid #f97316;
  transform: scale(1.02);
}

.adv-card h4 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #1e2b3c;
}

.adv-card ul {
  list-style: none;
}

.adv-card li {
  padding: 12px 0;
  border-bottom: 1px dashed #d1d5db;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.adv-note {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 25px 40px;
  border-radius: 60px;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

/* Purpose */
.purpose {
  padding: 100px 0;
  background: white;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.purpose-item {
  background: #f8fafc;
  border-radius: 40px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0,0,0,0.02);
}

.purpose-marker {
  position: absolute;
  top: 20px;
  right: 30px;
  font-weight: 800;
  font-size: 48px;
  color: #f97316;
  opacity: 0.1;
}

.purpose-item h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e2b3c;
}

.purpose-item p {
  font-size: 18px;
  color: #334155;
}

/* Comparison table */
.comp-table {
  padding: 100px 0;
  background: #f1f5f9;
}

.big-compare {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 30px;
  border-collapse: collapse;
  background: white;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0,0,0,0.03);
}

.big-compare th {
  background: #f97316;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: left;
}

.big-compare td {
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 18px;
}

.big-compare tr:last-child td {
  border-bottom: none;
}

.big-compare td:first-child {
  font-weight: 600;
  background: #f8fafc;
}

.comp-note {
  text-align: center;
  font-size: 18px;
  color: #475569;
  font-style: italic;
}

/* Audience */
.audience {
  padding: 100px 0;
  background: white;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.audience-block {
  background: #f8fafc;
  border-radius: 40px;
  padding: 40px 30px;
}

.audience-block h3 {
  font-size: 28px;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 20px;
}

.audience-block p {
  font-size: 18px;
  color: #334155;
  margin-bottom: 20px;
}

.audience-block ul {
  list-style: none;
  padding-left: 0;
}

.audience-block li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}

.audience-block li:before {
  content: "✓";
  color: #f97316;
  font-weight: 700;
}

.audience-why {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #fff3e0, #ffffff);
  padding: 30px 50px;
  border-radius: 60px;
  font-size: 20px;
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: #f1f5f9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.price-card {
  background: white;
  border-radius: 40px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.03);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.08);
}

.price-card--hit {
  border: 2px solid #f97316;
  transform: scale(1.02);
}

.hit-label {
  position: absolute;
  top: 20px;
  right: -35px;
  background: #f97316;
  color: white;
  padding: 5px 45px;
  font-size: 14px;
  font-weight: 700;
  transform: rotate(45deg);
  width: 150px;
}

.price-card h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #1e2b3c;
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: #f97316;
  margin-bottom: 25px;
}

.price span {
  font-size: 18px;
  font-weight: 400;
  color: #64748b;
}

.price-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 18px;
}

.price-note {
  margin-top: 15px;
  font-size: 14px;
  color: #64748b;
  background: #f1f5f9;
  padding: 8px;
  border-radius: 30px;
}

.pricing-special {
  text-align: center;
  background: white;
  padding: 35px;
  border-radius: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-special p {
  margin-bottom: 20px;
  font-size: 20px;
}

/* Cases */
.cases {
  padding: 100px 0;
  background: #dee2e6;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.case-card {
  background: white;
  border-radius: 30px;
  padding: 25px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.case-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
  margin-bottom: 15px;
}

.case-img:hover {
  transform: scale(1.02);
}

.case-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
}

.case-table caption {
  font-weight: 700;
  color: #f97316;
  margin-bottom: 8px;
}

.case-table th {
  background: #f97316;
  color: white;
  padding: 8px;
}

.case-table td {
  padding: 8px;
  text-align: center;
  border-bottom: 1px solid #ced4da;
}

.cases-note {
  text-align: center;
  font-size: 18px;
  color: #1e2b3c;
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: #f8fafc;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.faq-item h3 {
  font-size: 24px;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 15px;
}

.faq-item p {
  font-size: 18px;
  color: #334155;
}

/* Contact */
.contact {
  background: linear-gradient(135deg, #1e2b3c, #0f172a);
  color: white;
  padding: 120px 0;
}

.contact-inner {
  text-align: center;
  max-width: 700px;
}

.contact-text {
  font-size: 22px;
  margin-bottom: 50px;
  opacity: 0.9;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Footer */
.footer {
  background: white;
  padding: 50px 0;
  border-top: 1px solid #ced4da;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  font-size: 28px;
  font-weight: 800;
  color: #1e2b3c;
}

.brand-accent {
  color: #f97316;
}

.footer-links a {
  color: #1e2b3c;
  text-decoration: none;
  margin-left: 30px;
  font-size: 16px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .hero__title {
    font-size: 48px;
  }
  .adv-comparison {
    grid-template-columns: 1fr;
  }
  .big-compare {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 40px;
  }
  .hero__subtitle {
    font-size: 20px;
  }
  .section-title {
    font-size: 32px;
  }
  .contact-buttons {
    flex-direction: column;
  }
  .footer-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-links a {
    margin: 0 10px;
  }
}