:root {
  --primary-color: #F08080;
  --secondary-color: #0C0F24;
  --accent-color: #F79C92;
  --light-color: #F5F5F5;
  --dark-color: #261E6B;
  --gradient-primary: linear-gradient(135deg, #F08080 0%, #0C0F24 100%);
  --hover-color: #F4D03F;
  --background-color: #F5F5F5;
  --text-color: #261E6B;
  --border-color: rgba(240, 128, 128, 0.2);
  --divider-color: rgba(12, 15, 36, 0.15);
  --shadow-color: rgba(240, 128, 128, 0.15);
  --highlight-color: #6A1E9C;
  --main-font: 'Lora', sans-serif;
  --alt-font: 'Inter', sans-serif;
}

/* Mobile Menu Styles - Standard dropdown */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.hamburger .line {
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 1px;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked ~ .mobile-nav {
  max-height: 350px;
  opacity: 1;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--border-color);
  z-index: 1000;
}

.mobile-nav ul {
  padding: 2rem;
  margin: 0;
  list-style: none;
}

.mobile-nav li {
  margin: 0.8rem 0;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.mobile-nav a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Feature Cards - Простой стиль */
.feature-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 12px rgba(240, 128, 128, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(240, 128, 128, 0.15);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 3rem;
  margin: 0 auto 1.5rem;
  width: 75px;
  height: 75px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--secondary-color);
  transform: scale(1.05);
}

/* Testimonials - Простые карточки */
.testimonial {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 1rem 0;
  box-shadow: 0 6px 18px rgba(240, 128, 128, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(240, 128, 128, 0.15);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 3.5rem;
  color: var(--primary-color);
  font-family: serif;
  opacity: 0.4;
}

/* FAQ Items - Минималистичный стиль */
.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin: 1rem 0;
  box-shadow: 0 3px 12px rgba(240, 128, 128, 0.08);
  transition: all 0.3s ease;
  padding: 2rem;
}

.faq-item:hover {
  box-shadow: 0 6px 18px rgba(240, 128, 128, 0.15);
  transform: translateY(-2px);
}

.faq-item h3 {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.faq-item h3::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 0;
  background: var(--primary-color);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
}

/* Form Styles - Простые поля */
input,
textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 1.2rem;
  background-color: white;
  color: var(--text-color);
  font-size: 1rem;
  width: 100%;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(240, 128, 128, 0.1);
}

input:hover,
textarea:hover {
  border-color: var(--secondary-color);
}

/* Button Styles - Простые кнопки */
button,
.btn {
  transition: all 0.3s ease;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 12px rgba(240, 128, 128, 0.3);
}

button:hover,
.btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(240, 128, 128, 0.4);
}

/* Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--primary-color);
}

/* Statistics Cards - Простые карточки */
.stat-card {
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(240, 128, 128, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(240, 128, 128, 0.18);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--main-font);
  line-height: 1;
}

.stat-text {
  font-size: 1rem;
  color: var(--text-color);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Trust Indicators - Простой стиль */
.trust-indicator {
  background: white;
  padding: 1.5rem 1.8rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 10px rgba(240, 128, 128, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.trust-indicator:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(240, 128, 128, 0.15);
}

/* Header and Footer */
header {
  background: white;
  color: var(--text-color);
  padding: 1.5rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(240, 128, 128, 0.1);
}

footer {
  background: var(--secondary-color);
  color: white;
  padding: 3rem 0 1rem;
}

footer img[alt="logo"] {
  filter: brightness(0) invert(1);
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Grid Layouts */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* Pattern Background - Простые точки */
.pattern-bg {
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(240, 128, 128, 0.1) 1px, transparent 0);
  background-size: 25px 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .navigation {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .feature-card,
  .testimonial,
  .faq-item {
    margin: 0.8rem 0;
    padding: 1.8rem;
  }

  .trust-indicator {
    margin: 0.8rem 0;
    padding: 1.2rem .5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}