:root {
  /* Цветовая схема "Триада" */
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  
  --secondary-color: #e11d48;
  --secondary-dark: #be123c;
  --secondary-light: #fb7185;
  
  --tertiary-color: #16a34a;
  --tertiary-dark: #15803d;
  --tertiary-light: #4ade80;
  
  --neutral-100: #f8fafc;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;
  
  /* Градиенты для динамических цветовых переходов */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  --gradient-tertiary: linear-gradient(135deg, var(--tertiary-color), var(--tertiary-dark));
  --gradient-primary-light: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  
  /* Футуристические тени */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  
  /* Гласморфизм */
  --glass-background: rgba(255, 255, 255, 0.1);
  --glass-border: 1px solid rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --glass-blur: blur(10px);
  
  /* Радиусы скругления */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Переходы и анимации */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--neutral-800);
  line-height: 1.6;
  background-color: var(--neutral-100);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--neutral-700);
}

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

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

section {
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}

/* Кнопки - глобальные стили */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before, 
button::before, 
input[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform var(--transition-medium);
  z-index: -1;
}

.btn:hover::before, 
button:hover::before, 
input[type="submit"]:hover::before {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: white;
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
}

.btn-secondary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: white;
}

.btn-tertiary {
  background: var(--gradient-tertiary);
  color: white;
}

.btn-tertiary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: white;
}

/* Шапка */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  transition: all var(--transition-fast);
}

.logo a:hover {
  color: var(--primary-dark);
  transform: scale(1.05);
}

.nav-desktop ul {
  display: flex;
  gap: 1.5rem;
}

.nav-desktop a {
  color: var(--neutral-700);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-desktop a:hover {
  color: var(--primary-color);
}

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

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--neutral-800);
  transition: all var(--transition-medium);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: var(--shadow-lg);
  padding: 1rem 0;
  z-index: 999;
}
.nav-mobile.active{
  display: block!important;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--neutral-700);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.nav-mobile a:hover {
  background-color: var(--neutral-200);
  color: var(--primary-color);
}

/* Hero секция */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 8rem 0 5rem;
  margin-top: 0;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: var(--neutral-200);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Vision секция */
.vision {
  background-color: white;
}

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

.vision-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all var(--transition-medium);
}

.vision-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

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

.vision-text {
  flex: 1;
}

.vision-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* History секция */
.history {
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.history::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/pattern-dots.jpg') repeat;
  opacity: 0.05;
  z-index: 0;
}

.timeline {
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradient-primary-light);
  border-radius: var(--radius-full);
}

.timeline-item {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  max-width: 80%;
  margin: 0 auto;
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all var(--transition-medium);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.timeline-date {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  color: var(--primary-dark);
}

.timeline-content img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

/* Statistics секция */
.statistics {
  background-color: white;
}

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

.stat-card {
  background-color: var(--neutral-100);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  margin-bottom: 1.5rem;
  transition: all var(--transition-medium);
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 1rem;
}

.stat-description {
  color: var(--neutral-600);
}

.stats-insights {
  margin-top: 4rem;
  background-color: var(--neutral-100);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stats-insights h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

/* Team секция */
.team {
  background-color: var(--neutral-100);
}

.team-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

.team-member {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 2rem;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

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

.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-member h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.team-member .role {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member p {
  padding: 0 1.5rem;
}

/* Resources секция */
.resources {
  background-color: white;
}

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

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

.resource-card {
  background-color: var(--neutral-100);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.resource-card:hover::before {
  transform: scaleX(1);
}

.resource-card h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.resource-source {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Webinars секция */
.webinars {
  background-color: var(--neutral-100);
}

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

.webinars-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.webinar-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  transition: all var(--transition-medium);
}

.webinar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.webinar-image {
  flex: 1;
  min-width: 40%;
  overflow: hidden;
}

.webinar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

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

.webinar-content {
  flex: 1.5;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.webinar-content h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.webinar-date {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.webinar-content p {
  margin-bottom: 1.5rem;
}

.webinar-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Testimonials секция */
.testimonials {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/pattern-quotes.jpg') no-repeat;
  background-size: 400px;
  background-position: right top;
  opacity: 0.05;
  z-index: 0;
}

.testimonials-slider {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.testimonial-slide {
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  transition: all var(--transition-medium);
  position: relative;
  z-index: 1;
}

.testimonial-slide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  position: relative;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--neutral-700);
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  color: var(--primary-light);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--primary-light);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--neutral-600);
  margin-bottom: 0;
}

/* Accolades секция */
.accolades {
  background-color: var(--neutral-100);
}

.accolades-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

.accolades-text {
  flex: 1.5;
}

.accolades-list {
  margin-top: 2rem;
}

.accolades-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.accolades-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1.5;
}

.accolades-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.accolades-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

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

.stats-highlight {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-highlight-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  flex: 1;
  min-width: 200px;
}

.stat-highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-highlight-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 1rem;
}

.stat-highlight-text {
  font-size: 1.1rem;
  color: var(--neutral-700);
  font-weight: 500;
}

/* Contact секция */
.contact {
  background-color: white;
}

.contact-content {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

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

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

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

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

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

.social-links a {
  color: var(--neutral-700);
  font-weight: 500;
  transition: all var(--transition-fast);
  padding: 0.5rem 1rem;
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
}

.social-links a:hover {
  color: white;
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.contact-form {
  flex: 1.5;
  background-color: var(--neutral-100);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--neutral-700);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  background-color: white;
  transition: all var(--transition-fast);
  color: var(--neutral-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
}

.footer-logo h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: var(--neutral-400);
}

.footer-links-column h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links-column h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-links-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-column a {
  color: var(--neutral-400);
  transition: all var(--transition-fast);
}

.footer-links-column a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-social h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-social h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-700);
  text-align: center;
}

.footer-bottom p {
  color: var(--neutral-500);
  margin-bottom: 0;
}

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

.success-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--tertiary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon svg {
  width: 50px;
  height: 50px;
  color: white;
}

.success-content h1 {
  color: var(--tertiary-dark);
  margin-bottom: 1.5rem;
}

.success-content p {
  margin-bottom: 2rem;
}

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

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

.privacy-content h2,
.terms-content h2 {
  color: var(--primary-dark);
  margin-top: 2.5rem;
}

.privacy-content h3,
.terms-content h3 {
  color: var(--primary-color);
  margin-top: 2rem;
}

.privacy-content ul,
.terms-content ul {
  list-style: disc;
  padding-left: 2rem;
  margin: 1rem 0;
}

/* Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Cookie notice */
#cookie-notice {
  animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Медиа-запросы */
@media (max-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .vision-content,
  .accolades-content,
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .vision-image,
  .accolades-image {
    order: -1;
  }
  
  .webinar-card {
    flex-direction: column;
  }
  
  .webinar-image {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero {
    padding: 7rem 0 4rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stats-widgets {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-highlight {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}