:root {
  --primary-color: #2A3E58;
  --secondary-color: #4B1461;
  --accent-color: #2C7FB2;
  --light-color: #F2D4C9;
  --dark-color: #261E6B;
  --gradient-primary: linear-gradient(135deg, #2A3E58 0%, #4B1461 100%);
  --hover-color: #630E76;
  --background-color: #F2D4C9;
  --text-color: #261E6B;
  --border-color: rgba(42, 62, 88, 0.2);
  --divider-color: rgba(75, 20, 97, 0.15);
  --shadow-color: rgba(42, 62, 88, 0.15);
  --highlight-color: #F79C92;
  --main-font: 'Lora', sans-serif;
  --alt-font: 'Open Sans', 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: none;
  border-radius: 0;
  padding: 2.5rem 2rem;
  box-shadow: none;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--primary-color);
}

.feature-card:hover {
  background: rgba(42, 62, 88, 0.02);
  border-bottom-color: var(--accent-color);
}

.feature-icon {
  font-size: 2.8rem;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: block;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover .feature-icon {
  background: none;
  color: var(--accent-color);
  transform: scale(1.1);
}

/* Testimonials - Квадратный дизайн */
.testimonial {
  background: linear-gradient(135deg, white, rgba(42, 62, 88, 0.02));
  border: none;
  border-radius: 0;
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: none;
  position: relative;
  border-left: 6px solid var(--primary-color);
  border-top: 1px solid rgba(42, 62, 88, 0.1);
  transition: all 0.3s ease;
}

.testimonial:hover {
  background: white;
  border-left-color: var(--accent-color);
  transform: none;
}

/* FAQ Items - Минималистичный стиль */
.faq-item {
  background: white;
  border: none;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(42, 62, 88, 0.1);
}

.faq-item:hover {
  background: rgba(42, 62, 88, 0.02);
  transform: none;
}

.faq-item h3 {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.faq-item h3::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: bold;
}

/* Form Styles - Clean and simple */
input,
textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  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(42, 62, 88, 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: 2px solid var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 0;
  font-weight: 600;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

button:hover,
.btn:hover {
  background: white;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: none;
}

/* Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: linear-gradient(135deg, #F2D4C9 0%, var(--light-color) 100%);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: none;
}

/* Statistics Cards - Плоский стиль */
.stat-card {
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 0;
  padding: 1.5rem;
  text-align: center;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
}

.stat-card:hover {
  background: var(--primary-color);
  color: white;
  transform: none;
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-text {
  color: white;
}

.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: 1rem 1.2rem;
  border-radius: 0;
  border: 2px solid var(--primary-color);
  box-shadow: none;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.trust-indicator::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
}

.trust-indicator:hover {
  background: var(--primary-color);
  color: white;
  transform: none;
}

/* Header and Footer */
header {
  background: white;
  color: var(--text-color);
  padding: 1.5rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow-color);
}

footer {
  background: linear-gradient(135deg, white, var(--light-color));
  color: var(--text-color);
  padding: 3rem 0 1rem;
  box-shadow: 0 -2px 10px var(--shadow-color);
}

/* 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(250px, 1fr));
  gap: 0;
  border: 1px solid rgba(42, 62, 88, 0.1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* Pattern Background - Subtle geometric */
.pattern-bg {
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(42, 62, 88, 0.08) 1px, transparent 0);
  background-size: 30px 30px;
}

/* 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.5rem 0;
    padding: 1.5rem;
  }

  .trust-indicator {
    margin: 0.5rem 0;
    padding: 1rem 1.2rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}