:root {
  /* Основная цветовая схема (дополнительная) */
  --primary-color: #FF5E3A;
  --primary-dark: #E74C3A;
  --primary-light: #FF8265;
  --secondary-color: #3AAFE5;
  --secondary-dark: #2387B5;
  --secondary-light: #65C8FF;
  --tertiary-color: #8A3AFF;
  --tertiary-light: #B265FF;
  --accent-color: #FFD03A;
  --accent-light: #FFE265;

  /* Нейтральные цвета */
  --black: #111111;
  --dark-gray: #333333;
  --mid-gray: #666666;
  --light-gray: #AAAAAA;
  --off-white: #F7F7F7;
  --white: #FFFFFF;

  /* Функциональные цвета */
  --background: var(--white);
  --text-primary: var(--black);
  --text-secondary: var(--dark-gray);
  --text-tertiary: var(--mid-gray);
  --border-color: rgba(0, 0, 0, 0.1);

  /* Параметры компонентов */
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-rounded: 50%;

  /* Брутализм */
  --brutalism-shadow: 6px 6px 0 rgba(0, 0, 0, 0.8);
  --brutalism-border: 3px solid var(--black);
  
  /* Биоморфный дизайн */
  --biomorphic-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  --biomorphic-radius-2: 60% 40% 30% 70% / 60% 30% 70% 40%;
  --biomorphic-radius-3: 40% 60% 70% 30% / 40% 30% 70% 60%;

  /* Шрифты */
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Lato', sans-serif;
  
  /* Размеры шрифтов */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;
  
  /* Контейнер */
  --container-padding: 1.5rem;
  --container-max-width: 1200px;
  
  /* Анимации */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-индексы */
  --z-negative: -1;
  --z-elevate: 1;
  --z-dropdown: 10;
  --z-sticky: 100;
  --z-drawer: 200;
  --z-modal: 300;
  --z-popover: 400;
  --z-toast: 500;
  --z-tooltip: 600;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: 2rem;
}

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

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

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-md);
}

p {
  margin-bottom: 1rem;
}

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

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

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

/* Контейнер */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Секция */
section {
  padding: 4rem 0;
  position: relative;
}

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

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

/* Кнопки */
.btn, button, input[type='submit'] {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: var(--brutalism-border);
  background-color: var(--primary-color);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  text-align: center;
}

.btn:hover, button:hover, input[type='submit']:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.8);
  text-decoration: none;
}

.btn:active, button:active, input[type='submit']:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8);
}

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

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

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

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

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: var(--z-sticky);
  padding: 1rem 0;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 900;
  text-transform: uppercase;
}

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

.logo a:hover {
  text-decoration: none;
}

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

.desktop-nav a {
  color: var(--text-primary);
  font-weight: 700;
  position: relative;
}

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

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

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

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

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-primary);
  transition: all var(--transition-medium);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

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

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

.mobile-nav a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: var(--text-primary);
  font-weight: 700;
}

.mobile-nav a:hover {
  background-color: var(--off-white);
  color: var(--primary-color);
  text-decoration: none;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: var(--z-negative);
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: var(--z-elevate);
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
  border: var(--brutalism-border);
  box-shadow: var(--brutalism-shadow);
}

.hero h1, .hero h2, .hero p {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: 0.5rem;
}

.hero h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: 1.5rem;
  color: var(--accent-light);
}

.hero p {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
}

/* Particles Container */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

/* Case Studies Section */
.case-studies {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.case-studies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(255, 94, 58, 0.1) 0%, transparent 80%);
  z-index: var(--z-negative);
}

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

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background-color: var(--primary-color);
  z-index: var(--z-negative);
}

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

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

.timeline-content {
  background-color: var(--white);
  border: var(--brutalism-border);
  border-radius: var(--border-radius);
  box-shadow: var(--brutalism-shadow);
  padding: 1.5rem;
  position: relative;
  z-index: var(--z-elevate);
  transition: transform var(--transition-medium);
}

.timeline-content:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.8);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-image {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

/* Gallery Section */
.gallery {
  background-color: var(--white);
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 80%, rgba(58, 175, 229, 0.1) 0%, transparent 80%);
  z-index: var(--z-negative);
}

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

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--white);
  border: var(--brutalism-border);
  border-radius: var(--border-radius);
  box-shadow: var(--brutalism-shadow);
  padding: 1.5rem;
  transition: transform var(--transition-medium);
}

.gallery-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.8);
}

.gallery-item .image-container {
  width: 100%;
  height: 200px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

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

.gallery-item p {
  color: var(--text-secondary);
}

/* Behind the Scenes Section */
.behind-scenes {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.behind-scenes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(138, 58, 255, 0.1) 0%, transparent 80%);
  z-index: var(--z-negative);
}

.scenes-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.scene-item {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.scene-item:nth-child(even) {
  flex-direction: row-reverse;
}

.scene-item .image-container {
  flex: 1;
  min-width: 300px;
  height: 350px;
  border-radius: var(--biomorphic-radius);
  overflow: hidden;
  border: var(--brutalism-border);
  box-shadow: var(--brutalism-shadow);
}

.scene-item:nth-child(even) .image-container {
  border-radius: var(--biomorphic-radius-2);
}

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

.scene-item:hover img {
  transform: scale(1.05);
}

.scene-content {
  flex: 1;
  padding: 1.5rem;
  background-color: var(--white);
  border: var(--brutalism-border);
  border-radius: var(--border-radius);
  box-shadow: var(--brutalism-shadow);
}

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

.scene-content p {
  color: var(--text-secondary);
}

/* External Resources Section */
.external-resources {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.external-resources::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 208, 58, 0.1) 0%, transparent 80%);
  z-index: var(--z-negative);
}

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

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

.resource-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.8);
}

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

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

.resource-link {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.resource-link:hover {
  color: var(--secondary-dark);
  text-decoration: underline;
}

/* Press Section */
.press {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.press::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 94, 58, 0.1) 0%, transparent 80%);
  z-index: var(--z-negative);
}

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

.press-item {
  background-color: var(--white);
  border: var(--brutalism-border);
  border-radius: var(--border-radius);
  box-shadow: var(--brutalism-shadow);
  padding: 2rem;
  transition: transform var(--transition-medium);
}

.press-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.8);
}

.press-quote {
  font-style: italic;
  color: var(--text-secondary);
  position: relative;
  padding: 1rem 0;
}

.press-quote::before,
.press-quote::after {
  content: '"';
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--primary-light);
  position: absolute;
  line-height: 1;
}

.press-quote::before {
  top: 0;
  left: 0;
}

.press-quote::after {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.press-quote p {
  position: relative;
  z-index: var(--z-elevate);
}

.press-quote cite {
  display: block;
  text-align: right;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* FAQ Section */
.faq {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(58, 175, 229, 0.1) 0%, transparent 80%);
  z-index: var(--z-negative);
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border: var(--brutalism-border);
  border-radius: var(--border-radius);
  box-shadow: var(--brutalism-shadow);
  overflow: hidden;
  background-color: var(--white);
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--primary-dark);
}

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

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-icon span {
  position: absolute;
  background-color: var(--white);
  transition: transform var(--transition-medium);
}

.faq-icon span:first-child {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon span:last-child {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon span:last-child {
  transform: translateX(-50%) rotate(90deg);
}

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

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

.faq-answer p {
  margin: 0;
  color: var(--text-secondary);
}

/* Contact Section */
.contact {
  background-color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(138, 58, 255, 0.1) 0%, transparent 80%);
  z-index: var(--z-negative);
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.contact-info {
  flex: 1;
}

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

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

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

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-item .animated-icon {
  margin-right: 1rem;
  color: var(--primary-color);
}

.contact-item span {
  color: var(--text-secondary);
}

.contact-form-container {
  flex: 1;
}

.contact-form {
  background-color: var(--white);
  border: var(--brutalism-border);
  border-radius: var(--border-radius);
  box-shadow: var(--brutalism-shadow);
  padding: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: var(--font-size-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-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius-sm);
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--primary-color);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(255, 94, 58, 0.2) 0%, transparent 80%);
  z-index: var(--z-negative);
}

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

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-logo p {
  color: var(--light-gray);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-links-column {
  min-width: 150px;
}

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

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

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

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

.footer-links-column a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
}

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

.social-links a {
  display: flex;
  align-items: center;
}

.social-links a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-right: 8px;
  transition: transform var(--transition-fast);
}

.social-links a:hover::before {
  transform: scale(1.5);
}

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

.footer-bottom p {
  color: var(--light-gray);
  margin: 0;
  font-size: var(--font-size-sm);
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--white);
  padding: 1rem;
  z-index: var(--z-modal);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.cookie-btn {
  white-space: nowrap;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--border-radius-sm);
  transition: background-color var(--transition-fast);
}

.cookie-btn:hover {
  background-color: var(--primary-dark);
}

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

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

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

.success-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.success-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Privacy and Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.page-content .container {
  max-width: 800px;
}

.page-content h1 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.page-content h2 {
  color: var(--secondary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.page-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.page-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* Read More Links */
.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1rem;
  position: relative;
  padding-right: 20px;
}

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

.read-more:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

/* Animated Icons */
.animated-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animated-icon svg {
  transition: transform var(--transition-medium);
}

.animated-icon:hover svg {
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  :root {
    --font-size-4xl: 2.5rem;
    --font-size-3xl: 2rem;
    --font-size-2xl: 1.75rem;
  }
  
  .scene-item {
    flex-direction: column;
  }
  
  .scene-item:nth-child(even) {
    flex-direction: column;
  }
  
  .scene-item .image-container {
    width: 100%;
  }
  
  .contact-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  :root {
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
    --font-size-2xl: 1.5rem;
    --font-size-xl: 1.25rem;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .timeline-content {
    padding: 1rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .resources-grid,
  .gallery-grid,
  .press-container {
    grid-template-columns: 1fr;
  }
}