/* Основные переменные и нейроморфные стили */
:root {
  /* Цветовая тетрада */
  --primary-color: #FF5E5B; /* Основной красный */
  --primary-dark: #D14542;
  --secondary-color: #39A0ED; /* Голубой */
  --secondary-dark: #2680C0;
  --tertiary-color: #53DD6C; /* Зеленый */
  --tertiary-dark: #3AB950;
  --quaternary-color: #F9C80E; /* Желтый */
  --quaternary-dark: #D0A70B;
  
  /* Нейтральные цвета */
  --dark: #181818;
  --dark-gray: #2A2A2A;
  --medium-gray: #5C5C5C;
  --light-gray: #EBEBEB;
  --white: #FFFFFF;
  
  /* Неоморфические тени */
  --nm-shadow-light: 10px 10px 20px rgba(0, 0, 0, 0.1);
  --nm-shadow-dark: -10px -10px 20px rgba(255, 255, 255, 0.05);
  --nm-shadow-inset: inset 5px 5px 10px rgba(0, 0, 0, 0.1), inset -5px -5px 10px rgba(255, 255, 255, 0.05);
  
  /* Другие переменные */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Тени */
  --box-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --box-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --box-shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.14);
  
  /* Transition */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Контейнеры */
  --container-width: 1200px;
  --container-padding: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light-gray);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

/* Секции */
section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.8rem;
  position: relative;
  z-index: 1;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--nm-shadow-light);
}

/* Кнопки */
.button,
button,
input[type="submit"] {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-md);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  text-align: center;
  box-shadow: var(--box-shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-lg);
  background-color: var(--primary-dark);
}

.button:active,
button:active,
input[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: var(--box-shadow-sm);
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
  z-index: -1;
}

.button:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

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

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

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

.button.secondary:hover {
  background-color: var(--secondary-dark);
}

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

.button.tertiary:hover {
  background-color: var(--tertiary-dark);
}

.button.quaternary {
  background-color: var(--quaternary-color);
  color: var(--dark);
}

.button.quaternary:hover {
  background-color: var(--quaternary-dark);
}

/* Хедер и навигация */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--box-shadow-md);
  padding: 15px 0;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

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

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo h1 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin: 0;
  transition: color var(--transition-normal);
}

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

.nav-desktop {
  display: flex;
}

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

.nav-desktop ul li {
  margin-left: 30px;
}

.nav-desktop ul li a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-normal);
  position: relative;
}

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

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

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

.nav-mobile {
  display: none;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  padding: 0;
  box-shadow: none;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--dark);
  transition: all var(--transition-normal);
}

.hamburger:hover span {
  background-color: var(--primary-color);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--box-shadow-lg);
  padding: 20px;
  display: none;
  z-index: 1000;
}

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

.mobile-menu ul li {
  margin-bottom: 15px;
}

.mobile-menu ul li a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-normal);
}

.mobile-menu ul li a:hover {
  color: var(--primary-color);
}

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

.hero .overlay {
  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.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.9;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

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

/* Vision Section */
.vision-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.vision-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.vision-text {
  flex: 1;
  min-width: 300px;
}

.vision-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  transition: transform var(--transition-slow);
}

.vision-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
  transition: transform var(--transition-normal);
}

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

/* Process Section */
.process-section {
  background-color: var(--light-gray);
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(83, 221, 108, 0.05), transparent 400px),
              radial-gradient(circle at 80% 20%, rgba(57, 160, 237, 0.05), transparent 400px);
}

.process-steps {
  position: relative;
  z-index: 1;
}

.process-step {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex: 0 0 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 30px;
  box-shadow: var(--box-shadow-md);
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.process-step:hover .step-content {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.image-container {
  margin-top: 20px;
  text-align: center;
}

.image-container img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-md);
  transition: transform var(--transition-normal);
  object-fit: cover;
  max-height: 250px;
}

.image-container:hover img {
  transform: scale(1.03);
}

/* Resources Section */
.resources-section {
  background-color: var(--white);
}

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

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

.resource-card {
  background-color: var(--light-gray);
  padding: 25px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.resource-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

.resource-card ul {
  list-style: none;
}

.resource-card ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.resource-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.resource-card ul li a {
  color: var(--dark);
  transition: color var(--transition-normal);
}

.resource-card ul li a:hover {
  color: var(--secondary-color);
}

/* Blog Section */
.blog-section {
  background-color: var(--light-gray);
  position: relative;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blog-post {
  height: 100%;
}

.card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  height: 200px;
  overflow: hidden;
  text-align: center;
}

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

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

.card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.post-date {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.read-more {
  margin-top: auto;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-normal), transform var(--transition-normal);
}

.read-more::after {
  content: '→';
  margin-left: 5px;
  transition: transform var(--transition-normal);
}

.read-more:hover {
  color: var(--primary-dark);
  transform: translateX(3px);
}

.read-more:hover::after {
  transform: translateX(3px);
}

.blog-navigation {
  text-align: center;
}

/* Media Section */
.media-section {
  background-color: var(--white);
}

.media-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.video-container {
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
}

.video-container img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.video-container:hover img {
  transform: scale(1.03);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 94, 91, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.play-button:hover {
  background-color: rgba(255, 94, 91, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 5px;
}

.media-text {
  flex: 1;
  min-width: 300px;
}

.media-text h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Accolades Section */
.accolades-section {
  background-color: var(--light-gray);
  position: relative;
}

.accolades-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
}

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

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

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

.accolade-image {
  padding: 20px;
  width: 100%;
  text-align: center;
}

.accolade-image img {
  height: 150px;
  object-fit: contain;
  transition: transform var(--transition-normal);
  margin: 0 auto;
}

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

.accolade-content {
  padding: 0 20px 20px;
  text-align: center;
}

.accolade-content h3 {
  color: var(--tertiary-color);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Community Section */
.community-section {
  background-color: var(--white);
  position: relative;
}

.community-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.community-text {
  flex: 1;
  min-width: 300px;
}

.testimonials {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  background-color: var(--light-gray);
  border-radius: var(--border-radius-lg);
  padding: 5px;
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.testimonial-content {
  background-color: var(--white);
  border-radius: calc(var(--border-radius-lg) - 5px);
  padding: 25px;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(83, 221, 108, 0.2);
  font-family: 'Georgia', serif;
  line-height: 1;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-style: italic;
  padding-left: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--tertiary-color);
  margin-right: 15px;
}

.author-info h4 {
  margin-bottom: 5px;
  color: var(--dark);
}

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

/* Contact Section */
.contact-section {
  background-color: var(--light-gray);
  position: relative;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

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

.contact-info h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  min-width: 30px;
  text-align: center;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius-md);
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(57, 160, 237, 0.2);
  outline: none;
}

textarea.form-control {
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: center;
}

.form-check-input {
  margin-right: 10px;
  width: auto;
  flex-shrink: 0;
}

.form-check-label {
  margin-bottom: 0;
  font-weight: 400;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-logo h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 150px;
}

.footer-section h3 {
  color: var(--quaternary-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
}

.footer-section ul li a:hover {
  color: var(--white);
  transform: translateX(3px);
}

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

.social-links li a::before {
  content: '';
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform var(--transition-normal);
}

.social-links li:nth-child(1) a::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23EBEBEB"><path d="M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96C15.9 21.59 18.03 20.39 19.48 18.64C20.94 16.89 21.63 14.72 21.58 12.5C21.53 6.91 17.13 2.39 12 2.04Z"/></svg>');
}

.social-links li:nth-child(2) a::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23EBEBEB"><path d="M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23z"/></svg>');
}

.social-links li:nth-child(3) a::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23EBEBEB"><path d="M12 2.16c3.2 0 3.58.01 4.85.07 1.17.05 1.8.25 2.23.41.56.22.96.48 1.38.9.42.42.68.82.9 1.38.17.42.36 1.06.41 2.23.06 1.27.07 1.65.07 4.85s-.01 3.58-.07 4.85c-.05 1.17-.25 1.8-.41 2.23-.22.56-.48.96-.9 1.38-.42.42-.82.68-1.38.9-.42.17-1.06.36-2.23.41-1.27.06-1.65.07-4.85.07s-3.58-.01-4.85-.07c-1.17-.05-1.8-.25-2.23-.41-.56-.22-.96-.48-1.38-.9-.42-.42-.68-.82-.9-1.38-.17-.42-.36-1.06-.41-2.23-.06-1.27-.07-1.65-.07-4.85s.01-3.58.07-4.85c.05-1.17.25-1.8.41-2.23.22-.56.48-.96.9-1.38.42-.42.82-.68 1.38-.9.42-.17 1.06-.36 2.23-.41 1.27-.06 1.65-.07 4.85-.07zm0 2.16c-3.16 0-3.53.01-4.8.07-1.06.05-1.37.19-1.6.31-.36.14-.65.3-.92.57-.28.28-.44.56-.58.92-.12.22-.27.54-.31 1.59-.05 1.27-.07 1.65-.07 4.8s.01 3.53.07 4.8c.05 1.06.19 1.37.31 1.6.14.36.3.65.57.92.28.28.56.44.92.58.22.12.54.27 1.59.31 1.27.05 1.65.07 4.8.07s3.53-.01 4.8-.07c1.06-.05 1.37-.19 1.6-.31.36-.14.65-.3.92-.57.28-.28.44-.56.58-.92.12-.22.27-.54.31-1.59.05-1.27.07-1.65.07-4.8s-.01-3.53-.07-4.8c-.05-1.06-.19-1.37-.31-1.6-.14-.36-.3-.65-.57-.92-.28-.28-.56-.44-.92-.58-.22-.12-.54-.27-1.59-.31-1.27-.05-1.65-.07-4.8-.07zm0 3.68c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6zm0 2.16c-2.12 0-3.84 1.72-3.84 3.84S9.88 15.84 12 15.84s3.84-1.72 3.84-3.84S14.12 10.16 12 10.16zm6.27-3.74c0 .77-.63 1.4-1.4 1.4s-1.4-.63-1.4-1.4.63-1.4 1.4-1.4 1.4.63 1.4 1.4z"/></svg>');
}

.social-links li:nth-child(4) a::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23EBEBEB"><path d="M21.35,11.1H12.18V13.83H18.69C18.36,17.64 15.19,19.27 12.19,19.27C8.36,19.27 5,16.25 5,12C5,7.9 8.2,4.73 12.2,4.73C15.29,4.73 17.1,6.7 17.1,6.7L19,4.72C19,4.72 16.56,2 12.1,2C6.42,2 2.03,6.8 2.03,12C2.03,17.05 6.16,22 12.25,22C17.6,22 21.5,18.33 21.5,12.91C21.5,11.76 21.35,11.1 21.35,11.1V11.1Z"/></svg>');
}

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

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

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--light-gray);
  padding: 20px;
}

.success-content {
  text-align: center;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
  max-width: 600px;
  width: 100%;
}

.success-icon {
  font-size: 5rem;
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.success-title {
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.success-actions {
  margin-top: 30px;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  min-height: calc(100vh - 100px);
}

.page-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-md);
  margin-bottom: 40px;
}

.page-title {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.page-section {
  margin-bottom: 30px;
}

.page-section h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .nav-mobile {
    display: block;
  }
  
  .hero {
    padding: 140px 0 80px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .button {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .card-image {
    height: 180px;
  }
  
  .contact-content,
  .community-content,
  .media-content,
  .vision-content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .card-image {
    height: 160px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-section {
    min-width: 100%;
  }
}

/* Animations */
@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.morphing {
  animation: morphing 15s infinite;
}

/* Class to reveal elements on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Additional utility classes */
.text-center {
  text-align: center;
}

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

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

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 10px;
}

.p-2 {
  padding: 20px;
}

.p-3 {
  padding: 30px;
}

.p-4 {
  padding: 40px;
}

.d-flex {
  display: flex;
}

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

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

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

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}