:root {
  /* Основные цвета */
  --primary-color: #FF6B35; /* яркий оранжевый */
  --primary-dark: #E85A2A; /* темно-оранжевый */
  --secondary-color: #2EC4B6; /* бирюзовый */
  --secondary-dark: #1AA599; /* темно-бирюзовый */
  --accent-color: #7045AF; /* фиолетовый */
  --accent-dark: #5D359A; /* темно-фиолетовый */
  
  /* Нейтральные цвета */
  --dark: #1D1E2C; /* почти черный */
  --dark-blue: #252945; /* темно-синий */
  --medium-grey: #7E8299; /* средне-серый */
  --light-grey: #F3F3F7; /* светло-серый */
  --white: #FFFFFF; /* белый */
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  
  /* Тени для неоморфного дизайна */
  --shadow-light: 8px 8px 16px rgba(174, 174, 192, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.6);
  --shadow-inset: inset 2px 2px 5px rgba(174, 174, 192, 0.2), inset -3px -3px 7px rgba(255, 255, 255, 0.6);
  --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.15);
  
  /* Типографика */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
  
  /* Размеры шрифтов */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */
  --text-5xl: 3rem;      /* 48px */
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  
  /* Радиусы границ */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Размеры контейнера */
  --container-padding: 1.5rem;
  --container-max-width: 1200px;
  
  /* Z-индексы */
  --z-negative: -1;
  --z-elevate: 1;
  --z-sticky: 100;
  --z-drawer: 200;
  --z-modal: 300;
  --z-popover: 400;
  --z-maximum: 999;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light-grey);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: 1rem;
}

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, ol {
  list-style-position: inside;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 1rem auto 0;
  border-radius: var(--radius-full);
}

/* Buttons */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-medium);
  font-size: var(--text-base);
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: hidden;
}

.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: translateX(-100%) skewX(-15deg);
  transition: transform var(--transition-slow);
}

.btn:hover::before,
button:hover::before,
input[type="submit"]:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
}

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

.btn-secondary:hover {
  background: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-register, 
.btn-recording {
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(117, 160, 234, 0.95);
  box-shadow: var(--shadow-dark);
  z-index: var(--z-sticky);
  transition: all var(--transition-medium);
}

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

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 60px;
  width: auto;
}

.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
}

.desktop-nav li {
  margin-left: 1.5rem;
}

.desktop-nav a {
  color: var(--dark-blue);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform var(--transition-medium);
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

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

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark-blue);
  border-radius: var(--radius-full);
  transition: all var(--transition-medium);
}

.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--white);
  overflow: hidden;
  transition: height var(--transition-medium);
  z-index: var(--z-drawer);
}

.mobile-nav.active {
  height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-nav ul {
  list-style: none;
  padding: 2rem;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 1.5rem;
}

.mobile-nav a {
  color: var(--dark-blue);
  font-size: var(--text-xl);
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

/* Hero Section */
.hero {
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  margin-top: 0;
}

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

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: var(--z-elevate);
}

.hero-content h1 {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
  margin-bottom: 2rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Mission Section */
.mission {
  padding: 5rem 0;
  background-color: var(--white);
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mission-text {
  flex: 1;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background-color: var(--light-grey);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
}

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

.stat-card h3 {
  font-size: var(--text-4xl);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Clientele Section */
.clientele {
  padding: 5rem 0;
  background-color: var(--light-grey);
}

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

.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform var(--transition-medium);
}

.client-card {
  flex: 0 0 calc(100% - 2rem);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.client-content {
  padding: 2rem;
  text-align: center;
}

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

.prev-btn, .next-btn {
  background-color: var(--white);
  color: var(--dark-blue);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
}

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

.testimonials {
  margin-top: 4rem;
}

.testimonials h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.testimonial {
  flex: 1 1 300px;
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: var(--font-heading);
}

.testimonial blockquote {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: var(--primary-color);
}

/* Webinars Section */
.webinars {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.upcoming-webinars h3,
.past-webinars h3 {
  margin-bottom: 2rem;
  text-align: center;
}

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

.webinar-card {
  background-color: var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

.webinar-date {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  font-weight: 500;
}

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

.webinar-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.webinar-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 2px;
  background-color: var(--primary-color);
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--primary-color);
  border: 2px solid var(--white);
}

.timeline-date {
  font-weight: 500;
  color: var(--primary-color);
}

.timeline-content {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
}

/* External Resources Section */
.external-resources {
  padding: 5rem 0;
  background-color: var(--light-grey);
}

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

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

.resource-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.resource-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.resource-card h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.resource-card ul {
  list-style: none;
  margin: 0;
  width: 100%;
}

.resource-card li {
  margin-bottom: 0.75rem;
}

.resource-card a {
  display: block;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.resource-card a:hover {
  background-color: var(--light-grey);
  transform: translateX(5px);
}

/* Sustainability Section */
.sustainability {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.sustainability-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pillar-card {
  background-color: var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

.pillar-content {
  padding: 2rem;
  text-align: center;
}

.sustainability-impact h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.impact-stat {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-dark);
}

.impact-stat h4 {
  font-size: var(--text-3xl);
  margin-bottom: 0.5rem;
  color: var(--white);
}

.impact-note {
  text-align: center;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

/* Insights Section */
.insights {
  padding: 5rem 0;
  background-color: var(--light-grey);
}

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

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.insight-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.insight-content {
  padding: 2rem;
  text-align: center;
}

.insight-category {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.insights-cta {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  text-align: center;
}

.insights-cta h3 {
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 300px;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Press Section */
.press {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.press-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.press-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--light-grey);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
  align-items: center;
}

.press-item:hover {
  transform: translateY(-5px);
}

.press-logo {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.press-content {
  flex: 1;
  text-align: center;
}

.press-date {
  display: block;
  color: var(--medium-grey);
  margin-bottom: 0.5rem;
}

.press-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  text-decoration: underline;
}

.press-contact {
  background-color: var(--light-grey);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  text-align: center;
}

.press-contact h3 {
  margin-bottom: 1rem;
}

.press-contact-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--light-grey);
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info {
  flex: 1;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

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

.social-links h4 {
  margin-bottom: 1rem;
}

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

.social-icons a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--white);
  color: var(--dark-blue);
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-light);
}

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

.contact-form-container {
  flex: 1;
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  max-width: 300px;
}

.footer-logo img {
  margin-bottom: 1rem;
  max-height: 70px;
  width: auto;
}

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

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
}

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

.footer-section ul {
  list-style: none;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--light-grey);
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-sm);
  color: var(--medium-grey);
}

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

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

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  color: var(--primary-color);
}

/* Privacy and Terms Pages */
.privacy-content,
.terms-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
}

.privacy-content h1,
.terms-content h1 {
  margin-top: 100px;
}

/* Cookie Notice */
#cookie-notice {
  animation: slideUp var(--transition-medium);
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Media Queries */
@media (min-width: 768px) {
  .desktop-nav {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .mission-content {
    flex-direction: row;
  }
  
  .client-card {
    flex: 0 0 calc(50% - 2rem);
  }
  
  .press-item {
    flex-direction: row;
  }
  
  .press-logo {
    margin-right: 2rem;
  }
  
  .press-content {
    text-align: left;
  }
  
  .contact-content {
    flex-direction: row;
  }
  
  .footer-content {
    flex-direction: row;
  }
  
  .footer-logo {
    margin-right: 3rem;
  }
}

@media (min-width: 1024px) {
  .client-card {
    flex: 0 0 calc(33.333% - 2rem);
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --light-grey: #2A2C3E;
    --white: #1D1E2C;
    --dark: #FFFFFF;
    --dark-blue: #F3F3F7;
    --medium-grey: #A0A4B8;
  }
  
  .shadow-light {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
}