:root {
  /* Брутальная цветовая схема - разделительно-дополнительная */
  --primary: #FF3C38;
  --primary-dark: #D32F2F;
  --secondary: #2B59C3;
  --secondary-dark: #1A3A8F;
  --accent: #FFC107;
  --accent-dark: #FF8F00;
  --background: #f9f9f9;
  --background-alt: #efefef;
  --text-dark: #222222;
  --text-light: #ffffff;
  --text-muted: #666666;
  --border: #dddddd;
  
  /* Тени и эффекты */
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--secondary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  font-size: 2.8rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 1rem auto 0;
}

/* Кнопки */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 0 var(--primary-dark);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--primary-dark);
  color: var(--text-light);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
  box-shadow: 0 4px 0 var(--secondary-dark);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--secondary-dark);
  color: var(--text-light);
}

.btn-small {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.desktop-menu ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.desktop-menu a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
}

.desktop-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-fast);
}

.desktop-menu a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: white;
  padding: 1rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin-bottom: 1rem;
}

.mobile-menu a {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Vision Section */
.vision {
  padding: 80px 0;
  background-color: var(--background);
}

.vision-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.vision-text {
  flex: 1;
}

.vision-image {
  flex: 1;
  box-shadow: var(--box-shadow);
  border-radius: 8px;
  overflow: hidden;
  transform: rotate(2deg);
  transition: transform var(--transition-fast);
}

.vision-image:hover {
  transform: rotate(0);
}

.vision-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Success Stories Section */
.success-stories {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.stories-carousel {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
  overflow: hidden;
}

.story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin: 1rem;
  transition: transform var(--transition-fast);
}

.story-card:hover {
  transform: translateY(-10px);
}

.image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.story-card:hover .image-container img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  text-align: center;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.prev-btn, .next-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.prev-btn:hover, .next-btn:hover {
  background: var(--primary-dark);
}

/* Webinars Section */
.webinars {
  padding: 80px 0;
  background-color: var(--background);
}

.webinars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.webinar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-fast);
}

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

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.webinar-card:hover .card-image img {
  transform: scale(1.05);
}

.webinar-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Resources Section */
.resources {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  color: var(--text-light);
}

.resources .section-title {
  color: var(--text-light);
}

.resources .section-title::after {
  background: var(--accent);
}

.resources-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

.resource-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 2rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.resource-card h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.resource-card p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.resource-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  position: relative;
  padding-right: 20px;
}

.resource-link::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.resource-link:hover {
  color: var(--accent-dark);
}

.resource-link:hover::after {
  transform: translate(5px, -50%);
}

/* Accolades Section */
.accolades {
  padding: 80px 0;
  background-color: var(--background);
}

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

.accolade-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-fast);
}

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

.accolade-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.accolade-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.accolade-card:hover .card-image img {
  transform: scale(1.05);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--background-alt);
}

.contact-wrapper {
  display: flex;
  gap: 4rem;
}

.contact-info {
  flex: 1;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.contact-form {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  outline: none;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-label input {
  margin-right: 10px;
  width: auto;
}

/* Footer */
.footer {
  background-color: #222;
  color: white;
  padding: 60px 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: white;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.social-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Privacy and Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: 60px;
}

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

/* About Page */
.about-page {
  padding-top: 100px;
  padding-bottom: 60px;
}

.about-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 4rem;
}

.about-hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Media Queries */
@media (max-width: 992px) {
  .vision-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .vision-image {
    transform: rotate(0);
  }
  
  .contact-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .desktop-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* Cookie Consent */
#cookie-consent {
  border-top: 3px solid var(--primary);
}

#accept-cookies {
  transition: all var(--transition-fast);
}

#accept-cookies:hover {
  background-color: #3e8e41;
  transform: translateY(-2px);
}