/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Hero Section */
.hero {
  position: relative;
  color: white;
  text-align: center;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('6.jpeg') center center/cover no-repeat;
  z-index: 1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(158, 88, 107, 0.8) 0%, rgba(184, 107, 127, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
  background: white;
  color: #9e586b;
  border: none;
  padding: 18px 35px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(158, 88, 107, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #9e586b, #b86b7f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #9e586b;
}

.feature-card p {
  margin-bottom: 15px;
  color: #666;
}

.highlight {
  color: #9e586b;
  font-weight: 600;
  font-size: 1.1rem;
}

.telegram-button {
  background: linear-gradient(135deg, #0088cc, #00a8ff);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.telegram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.feature-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(158, 88, 107, 0.2);
  transition: transform 0.3s ease;
}

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

.placeholder-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.2rem;
}

.placeholder-image i {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.benefit-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  border-color: #9e586b;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(158, 88, 107, 0.1);
}

.benefit-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #9e586b, #b86b7f);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #9e586b;
}

.benefit-card p {
  color: #666;
}

/* Telegram Section */
.telegram-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.telegram-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.telegram-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #9e586b;
}

.telegram-content p {
  margin-bottom: 15px;
  color: #666;
  font-size: 1.1rem;
}

.telegram-logo-button {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0088cc, #00a8ff);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.telegram-logo-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 136, 204, 0.4);
}

.telegram-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(158, 88, 107, 0.2);
  transition: transform 0.3s ease;
}

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

/* Stats Section */
.stats {
  padding: 100px 0;
  background: linear-gradient(135deg, #9e586b 0%, #b86b7f 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  display: inline-block;
  margin-right: 5px;
}

.stat-symbol {
  font-size: 2rem;
  font-weight: 600;
  display: inline-block;
}

.stat-card h3 {
  font-size: 1.3rem;
  margin: 15px 0;
  opacity: 0.9;
}

.stat-card p {
  opacity: 0.8;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 600px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .feature-img {
    height: 300px;
  }
  
  .telegram-img {
    height: 300px;
  }
  
  .features-grid,
  .telegram-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card,
  .telegram-content {
    padding: 30px 20px;
  }
  
  .telegram-content h2 {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .feature-img {
    height: 250px;
  }
  
  .telegram-img {
    height: 250px;
  }
  
  .features,
  .benefits,
  .telegram-section,
  .stats {
    padding: 60px 0;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* Animation for stats */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-card.animate {
  animation: countUp 0.6s ease-out;
} 