:root {
  /* Основная цветовая схема */
  --primary-color: #6f42c1;
  --primary-light: #9d7ed5;
  --primary-dark: #4c2885;
  
  --secondary-color: #1f9bcf;
  --secondary-light: #4db6e2;
  --secondary-dark: #1678a2;
  
  --accent-color: #e83e8c;
  --accent-light: #f173ac;
  --accent-dark: #bd2a6d;
  
  /* Нейтральные цвета */
  --light: #ffffff;
  --light-grey: #f8f9fa;
  --medium-grey: #e9ecef;
  --dark-grey: #343a40;
  --dark: #212529;
  
  /* Функциональные цвета */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  
  /* Цвета градиентов */
  --gradient-primary: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
  --gradient-secondary: linear-gradient(145deg, var(--secondary-light), var(--secondary-dark));
  --gradient-accent: linear-gradient(145deg, var(--accent-light), var(--accent-dark));
  --gradient-light: linear-gradient(145deg, #ffffff, #e6e6e6);
  --gradient-dark: linear-gradient(145deg, #2c3e50, #1a252f);
  
  /* Тени для нейроморфизма */
  --shadow-small: 3px 3px 6px rgba(0, 0, 0, 0.1), -3px -3px 6px rgba(255, 255, 255, 0.7);
  --shadow-medium: 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(255, 255, 255, 0.7);
  --shadow-large: 10px 10px 20px rgba(0, 0, 0, 0.1), -10px -10px 20px rgba(255, 255, 255, 0.7);
  --shadow-inset: inset 3px 3px 6px rgba(0, 0, 0, 0.1), inset -3px -3px 6px rgba(255, 255, 255, 0.7);
  
  /* Переходы и анимации */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Типографика */
  --font-family-heading: 'Inter', sans-serif;
  --font-family-body: 'IBM Plex Sans', sans-serif;
  
  /* Размеры шрифта */
  --font-size-small: 0.875rem;
  --font-size-regular: 1rem;
  --font-size-medium: 1.25rem;
  --font-size-large: 1.5rem;
  --font-size-xlarge: 2rem;
  --font-size-xxlarge: 3rem;
  
  /* Радиусы скругления */
  --border-radius-small: 8px;
  --border-radius-medium: 12px;
  --border-radius-large: 20px;
  --border-radius-circle: 50%;
  
  /* Размеры контейнера */
  --container-max-width: 1200px;
  --container-padding: 1.5rem;
  
  /* Z-индексы */
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal-backdrop: 1040;
  --z-index-modal: 1050;
  --z-index-popover: 1060;
  --z-index-tooltip: 1070;
}

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

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

body {
  font-family: var(--font-family-body);
  font-size: var(--font-size-regular);
  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-family-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: var(--font-size-xxlarge);
}

h2 {
  font-size: var(--font-size-xlarge);
}

h3 {
  font-size: var(--font-size-large);
}

h4 {
  font-size: var(--font-size-medium);
}

p {
  margin-bottom: 1rem;
}

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

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

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

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

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

/* Кнопки */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  font-family: var(--font-family-heading);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-regular);
  line-height: 1.5;
  border-radius: var(--border-radius-medium);
  transition: all var(--transition-medium);
  cursor: pointer;
  box-shadow: var(--shadow-small);
  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);
  z-index: -1;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

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

.btn:focus,
button:focus,
input[type="submit"]:focus {
  outline: none;
  box-shadow: var(--shadow-inset);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  text-decoration: none;
  color: var(--light);
}

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

.btn-secondary:hover {
  background: var(--secondary-dark);
  text-decoration: none;
  color: var(--light);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--light);
}

.btn-accent:hover {
  background: var(--accent-dark);
  text-decoration: none;
  color: var(--light);
}

.btn-light {
  background: var(--gradient-light);
  color: var(--dark);
}

.btn-light:hover {
  background: var(--medium-grey);
  text-decoration: none;
  color: var(--dark);
}

.btn-dark {
  background: var(--gradient-dark);
  color: var(--light);
}

.btn-dark:hover {
  background: var(--dark);
  text-decoration: none;
  color: var(--light);
}

.btn-product,
.btn-workshop,
.btn-submit {
  background: var(--gradient-primary);
  color: var(--light);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-small);
  transition: all var(--transition-medium);
  display: inline-block;
  text-align: center;
  font-weight: 500;
}

.btn-product:hover,
.btn-workshop:hover,
.btn-submit:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--light);
}

/* Формы */
input,
textarea,
select {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-regular);
  font-family: var(--font-family-body);
  line-height: 1.5;
  color: var(--dark);
  background-color: var(--light);
  border: 1px solid var(--medium-grey);
  border-radius: var(--border-radius-medium);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-small);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-inset);
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

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

.checkbox-container {
  display: flex;
  align-items: center;
}

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

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

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

.logo {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-large);
  font-weight: 700;
}

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

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

.nav-desktop {
  display: flex;
}

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

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

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

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

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

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

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

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--light);
  z-index: var(--z-index-fixed);
  transform: translateX(-100%);
  transition: transform var(--transition-medium);
}

.nav-mobile.active {
  transform: translateX(0);
  display: block;
}

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

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

.nav-mobile a {
  display: block;
  font-size: var(--font-size-large);
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--medium-grey);
  transition: color var(--transition-fast);
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background::after {
  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.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
  color: var(--light);
}

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

.hero-content p {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--light);
  animation: fadeIn 1.5s ease-out 0.8s forwards;
  opacity: 0;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--light);
  border-radius: 20px;
  position: relative;
  margin-bottom: 0.5rem;
}

.wheel {
  width: 6px;
  height: 6px;
  background-color: var(--light);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}

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

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

/* Products Section */
.products {
  padding: 6rem 0;
  background-color: var(--light);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--dark-grey);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background-color: var(--light);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
}

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

.card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  width: 100%;
}

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-accent);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-small);
  font-weight: 500;
  box-shadow: var(--shadow-small);
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.card-content p {
  color: var(--dark-grey);
  margin-bottom: 1.5rem;
}

.product-price {
  font-size: var(--font-size-large);
  font-weight: 700;
  color: var(--primary-color);
  margin: auto 0 1.5rem 0;
}

.products-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 4rem;
  text-align: center;
}

.stat-widget {
  flex: 1;
  min-width: 200px;
  padding: 2rem;
  margin: 1rem;
  background-color: var(--light);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium);
}

.stat-widget:hover {
  transform: translateY(-5px);
}

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

.stat-label {
  color: var(--dark-grey);
  font-weight: 500;
}

/* Methodology Section */
.methodology {
  padding: 6rem 0;
  background-color: var(--light-grey);
}

.methodology-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.methodology-image {
  flex: 1 1 400px;
  min-height: 400px;
  position: relative;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

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

.methodology-text {
  flex: 1 1 500px;
}

.methodology-steps {
  margin-top: 2rem;
}

.step {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.step-number {
  font-size: var(--font-size-xlarge);
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 1.5rem;
  opacity: 0.8;
}

.step-content {
  flex: 1;
}

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

.step-content p {
  color: var(--dark-grey);
}

/* Workshops Section */
.workshops {
  padding: 6rem 0;
  background-color: var(--light);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.workshop-card {
  display: flex;
  flex-direction: column;
  background-color: var(--light);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
}

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

.workshop-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.detail {
  display: flex;
  flex-direction: column;
}

.detail .label {
  font-size: var(--font-size-small);
  color: var(--dark-grey);
}

.detail .value {
  font-weight: 500;
  color: var(--dark);
}

/* Our Process Section */
.our-process {
  padding: 6rem 0;
  background-color: var(--light-grey);
}

.process-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 0;
}

.process-step {
  flex: 1 1 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius-circle);
  background-color: var(--light);
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium);
}

.process-step:hover .step-icon {
  transform: translateY(-10px);
}

.step-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.process-step h3 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.process-step p {
  color: var(--dark-grey);
}

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

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

.resource-card {
  background-color: var(--light);
  border-radius: var(--border-radius-large);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

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

.resource-card p {
  color: var(--dark-grey);
  margin-bottom: 1.5rem;
}

.resource-links {
  list-style: none;
  padding: 0;
}

.resource-links li {
  margin-bottom: 0.5rem;
}

.resource-links a {
  display: block;
  padding: 0.5rem 0;
  color: var(--primary-color);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  padding-left: 1.5rem;
}

.resource-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  transition: transform var(--transition-fast);
}

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

.resource-links a:hover::before {
  transform: translateX(5px);
}

/* Partners Section */
.partners {
  padding: 6rem 0;
  background-color: var(--light-grey);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2.5rem;
}

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

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

.partner-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

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

.partner-card p {
  color: var(--dark-grey);
}

/* Media Section */
.media {
  padding: 6rem 0;
  background-color: var(--light);
}

.media-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.media-item {
  flex: 1 1 300px;
  max-width: 500px;
  background-color: var(--light);
  border-radius: var(--border-radius-large);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.media-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.media-quote {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary-color);
}

.media-quote p {
  font-style: italic;
  color: var(--dark-grey);
}

.media-source {
  display: flex;
  align-items: center;
}

.media-source img {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  object-fit: contain;
}

.media-source span {
  font-weight: 500;
  color: var(--dark);
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background-color: var(--light-grey);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
}

.faq-item {
  background-color: var(--light);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: box-shadow var(--transition-medium);
}

.faq-item:hover {
  box-shadow: var(--shadow-large);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  border-bottom: 1px solid var(--medium-grey);
}

.faq-question h3 {
  margin: 0;
  font-size: var(--font-size-medium);
  color: var(--dark);
}

.toggle-icon {
  font-size: var(--font-size-large);
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: 1.5rem 2rem;
  max-height: 500px;
}

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

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

.contact-info {
  flex: 1 1 300px;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item h3 {
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.info-item p {
  color: var(--dark-grey);
}

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

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

.social-icons a {
  color: var(--primary-color);
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

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

.contact-form {
  display: flex;
  flex-direction: column;
}

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

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

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo h3 {
  font-size: var(--font-size-large);
  color: var(--light);
  margin-bottom: 1rem;
}

.footer-logo p {
  color: var(--medium-grey);
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 150px;
}

.footer-column h4 {
  color: var(--light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

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

.footer-column a {
  color: var(--medium-grey);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--light);
  text-decoration: none;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
  border: none;
}

.newsletter-form button {
  background: var(--gradient-primary);
  color: var(--light);
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--medium-grey);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--medium-grey);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--light);
  text-decoration: none;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(33, 37, 41, 0.95);
  color: var(--light);
  z-index: 9999;
  display: none;
}

.cookie-content {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-content button {
  background: var(--gradient-primary);
  color: var(--light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-medium);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.cookie-content button:hover {
  background: var(--primary-dark);
}

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

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

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

.success-title {
  font-size: var(--font-size-xlarge);
  margin-bottom: 1rem;
  color: var(--dark);
}

.success-message {
  color: var(--dark-grey);
  margin-bottom: 2rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Privacy & Terms Pages */
.page-content {
  padding: 100px 0 6rem;
}

.page-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  margin-bottom: 3rem;
  text-align: center;
}

.page-section {
  margin-bottom: 3rem;
}

.page-section h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.page-section p {
  margin-bottom: 1rem;
  color: var(--dark-grey);
}

.page-section ul {
  margin-bottom: 1.5rem;
}

.page-section li {
  margin-bottom: 0.5rem;
  color: var(--dark-grey);
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-content {
    max-width: 600px;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    max-width: 100%;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-info, .contact-form-container {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-content {
    text-align: center;
    padding: 1rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .section-title {
    font-size: var(--font-size-large);
  }
  
  .products-grid, .workshops-grid, .resources-grid, .partners-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .product-card, .workshop-card, .resource-card, .partner-card, .media-item, .faq-item {
    max-width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.is-two-thirds {
  flex: 0 0 66.6666%;
  max-width: 66.6666%;
}

.is-half {
  flex: 0 0 50%;
  max-width: 50%;
}

.is-one-third {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.is-one-quarter {
  flex: 0 0 25%;
  max-width: 25%;
}

.is-full {
  flex: 0 0 100%;
  max-width: 100%;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}