* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #4A90E2;
  --primary-dark: #357ABD;
  --secondary: #7B8FA1;
  --text: #2C3E50;
  --text-light: #6C757D;
  --bg: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-gray: #E9ECEF;
  --border: #DEE2E6;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(74, 144, 226, 0.2);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 20px;
  margin-bottom: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-icon {
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.badge {
  background: var(--bg);
  padding: 10px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  box-shadow: 0 2px 10px var(--shadow);
}

.badge-icon {
  font-size: 18px;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px var(--shadow-hover);
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-hover);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 15px;
}

.section-lead {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.about-section {
  margin-bottom: 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.large-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 25px;
}

.large-text strong {
  color: var(--primary);
  font-weight: 600;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  color: var(--text-light);
  font-size: 16px;
}

.mockup-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px var(--shadow);
  overflow: hidden;
}

.mockup-header {
  background: var(--bg-light);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
}

.mockup-title {
  font-weight: 600;
  color: var(--text);
}

.mockup-content {
  padding: 20px;
}

.audio-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: background 0.3s;
}

.audio-item:hover {
  background: var(--bg-light);
}

.audio-item.active {
  background: rgba(74, 144, 226, 0.1);
}

.audio-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gray);
  border-radius: 8px;
}

.audio-info {
  flex: 1;
}

.audio-name {
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.audio-duration {
  font-size: 12px;
  color: var(--text-light);
}

.features-section {
  margin-bottom: 100px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-hover);
}

.feature-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.usage-section {
  margin-bottom: 100px;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.usage-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px var(--shadow-hover);
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.download-section {
  margin-bottom: 100px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.download-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow);
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-hover);
}

.download-card.featured {
  border: 2px solid var(--primary);
}

.download-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.platform-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.download-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.download-card p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.version-info {
  display: flex;
  justify-content: space-around;
  padding: 15px;
  background: var(--bg-light);
  border-radius: 10px;
  margin-bottom: 25px;
  font-size: 14px;
  color: var(--text-light);
}

.download-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px var(--shadow-hover);
}

.download-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-hover);
}

.download-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 12px;
}

.info-item {
  color: var(--text-light);
  font-size: 14px;
}

.info-item strong {
  color: var(--text);
  margin-right: 8px;
}

.faq-section {
  margin-bottom: 100px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.footer {
  background: var(--bg-light);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.footer-content p {
  color: var(--text-light);
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-note {
  font-size: 12px;
  color: var(--secondary);
}

.screenshots-section {
  margin-bottom: 100px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.screenshot-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  cursor: pointer;
  transition: all 0.3s;
}

.screenshot-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-hover);
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.screenshot-item:hover .screenshot-img {
  transform: scale(1.05);
}

/* Модальное окно для скриншотов */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  margin-top: 50px;
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 2001;
}

.modal-close:hover {
  color: var(--primary);
}

.modal-caption {
  text-align: center;
  color: #fff;
  padding: 20px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .usage-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-menu {
    display: none;
  }
  
  .navbar {
    padding: 10px 0;
  }
  
  .nav-container {
    justify-content: center;
  }
}
