:root {
  --primary: #e64415;
  --primary-dark: #c23a10;
  --primary-light: #ff8c69;
  --dark: #1a1a1a;
  --gray: #f4f4f5;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
  color: var(--dark);
  background: #fafafa;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
}

.logo img {
  width: 50px;
  height: 50px;
}

.main-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.main-nav a {
  font-weight: 500;
  transition: color 0.3s;
  padding: 8px 0;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--primary);
}

.header-notice {
  font-size: 0.8rem;
  color: #666;
  max-width: 200px;
  text-align: right;
  line-height: 1.3;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark);
  padding: 10px;
}

.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 68, 21, 0.4), transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  margin: 20px 0 30px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 1rem;
  color: var(--white);
}

.btn-store i {
  font-size: 1.3rem;
}

.btn-store:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 68, 21, 0.4);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  border-radius: 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features {
  padding: 64px 0 48px;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.feature-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(230, 68, 21, 0.15);
}

.feature-card.overlapping-card {
  position: relative;
  top: -30px;
  z-index: 1;
  background: var(--dark);
  color: var(--white);
}

.feature-card.overlapping-card .feature-icon {
  color: var(--primary-light);
}

.feature-card.overlapping-card:hover {
  top: -35px;
  box-shadow: 0 18px 40px rgba(230, 68, 21, 0.3);
}

.feature-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

/* ===== Новые стили для More Features ===== */
.more-features {
  padding: 64px 0;
  background: #f9f9f9;
  position: relative;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.more-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.more-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(230, 68, 21, 0.15);
  border-color: rgba(230, 68, 21, 0.3);
}

.more-item i {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 16px;
  transition: transform 0.3s;
}

.more-item:hover i {
  transform: scale(1.15);
}

.more-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.more-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== Отзывы / Testimonials ===== */
.testimonials {
  padding: 64px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #f9f9f9;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(230, 68, 21, 0.12);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--primary);
  box-shadow: 0 6px 15px rgba(230, 68, 21, 0.25);
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
}

.testimonial-card blockquote p {
  font-style: italic;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  quotes: '„' '“' '‚' '‘';
}

.testimonial-card blockquote p::before {
  content: '„';
  font-size: 2.5rem;
  color: var(--primary);
  position: absolute;
  left: -10px;
  top: -15px;
  opacity: 0.3;
}

.testimonial-card blockquote footer {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Остальные существующие стили... */
.blog {
  padding: 48px 0 64px;
  background: #f9f9f9;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}

.blog-card:hover {
  transform: translateY(-8px) rotate(1deg) scale(1.02);
  box-shadow: 0 24px 40px rgba(230, 68, 21, 0.2);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.blog-card h3 {
  padding: 16px 20px 8px;
  font-size: 1.2rem;
  color: var(--dark);
}

.blog-card p {
  padding: 0 20px 16px;
  color: #555;
  font-size: 0.95rem;
}

.btn-read {
  display: inline-block;
  margin: 0 20px 20px;
  padding: 10px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  transition:
    background 0.3s,
    transform 0.3s;
}

.btn-read:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.how {
  padding: 48px 0 64px;
  background: var(--white);
  position: relative;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 40px 28px;
  position: relative;
  z-index: 2;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 35px rgba(230, 68, 21, 0.25);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(230, 68, 21, 0.4);
}

.step h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.step p {
  color: #444;
}

.stats {
  padding: 48px 0 64px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: var(--white);
}

.stats .section-title {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-6px);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

.preview {
  padding: 48px 0 64px;
  background: #f9f9f9;
  overflow: hidden;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.preview-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.preview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.preview-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.preview-list li i {
  color: var(--primary);
  font-size: 1.3rem;
}

.preview-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.preview-image img {
  max-height: 500px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transform: rotate(-2deg);
  transition: transform 0.4s;
}

.preview-image img:hover {
  transform: rotate(0deg) scale(1.05);
}

.faq {
  padding: 48px 0 64px;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 8px;
  font-size: 1.1rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
  padding: 0 8px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 16px;
}

.faq-answer p {
  color: #444;
}

.site-footer {
  margin-top: auto;
  background: var(--dark);
  color: var(--white);
  padding: 48px 0 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-disclaimer {
  margin-top: 16px;
  line-height: 1.5;
  opacity: 0.8;
}

.footer-legal ul {
  list-style: none;
}

.footer-legal a {
  display: block;
  padding: 4px 0;
  opacity: 0.8;
  transition:
    opacity 0.3s,
    color 0.3s;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--primary-light);
}

.footer-contact p {
  opacity: 0.8;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 32px;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--dark);
}

.legal-content h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--dark);
}

.legal-content p {
  margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.blog-post .blog-banner {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.blog-post h1 {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.blog-post p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

.blog-post p strong {
  color: var(--primary-dark);
}

@media (max-width: 900px) {
  .header-inner .main-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-inner.nav-open .main-nav {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  .header-inner.nav-open .main-nav ul {
    flex-direction: column;
    gap: 12px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    order: -1;
    margin-bottom: 20px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .feature-card.overlapping-card {
    top: 0;
  }
  .more-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .preview-grid {
    grid-template-columns: 1fr;
  }
  .preview-text .section-title {
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .blog-post h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .section-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 390px) {
  .header-inner {
    flex-wrap: wrap;
    row-gap: 15px;
  }

  .header-notice {
    order: 1;
    text-align: left;
  }
}
