:root {
  /* Футуристическая цветовая схема "Аналоговая" */
  --primary-color: #6A11CB;
  --primary-light: #8C51E7;
  --primary-dark: #4A0B8F;
  --secondary-color: #2575FC;
  --secondary-light: #57A0FF;
  --secondary-dark: #1A54B0;
  --accent-color: #FF3366;
  --accent-light: #FF6B91;
  --accent-dark: #CC1A47;
  --text-color: #333333;
  --text-light: #666666;
  --text-white: #FFFFFF;
  --background-color: #F8F9FA;
  --background-dark: #EAEAEA;
  --background-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --card-background: #FFFFFF;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --card-border: 2px solid #000000;
  --brutalism-shadow: 8px 8px 0px #000000;
  --header-height: 80px;
  --footer-background: #111111;
  --footer-text: #CCCCCC;
  --success-color: #00D1B2;
  --warning-color: #FFDD57;
  --error-color: #FF3860;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

/* Утилиты */
.text-center {
  text-align: center;
}

.mb-6 {
  margin-bottom: 3rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

.has-text-centered {
  text-align: center !important;
}

/* Хедер и навигация */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: var(--header-height);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 70px;
}

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

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-item {
  font-weight: 500;
  color: var(--text-color);
  padding: 0.5rem 1rem;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.navbar-item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-item:hover:after {
  width: 80%;
}

.navbar-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .navbar-burger {
    display: block;
  }

  .navbar-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--card-background);
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .navbar-menu.is-active {
    height: calc(100vh - var(--header-height));
  }

  .navbar-end {
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }

  .navbar-item {
    padding: 1rem;
    border-bottom: 1px solid var(--background-dark);
    width: 100%;
    text-align: center;
  }

  .navbar-item:after {
    display: none;
  }
}

/* Hero секция */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
}

.hero-body {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero .title, .hero .subtitle, .hero p {
  color: var(--text-white) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

.hero .title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Кнопки */
.button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 30px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

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

.button:hover:before {
  width: 100%;
}

.button.is-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--brutalism-shadow);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.is-primary:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 0px #000000;
}

.button.is-primary:active {
  transform: translateY(0);
  box-shadow: var(--brutalism-shadow);
}

.button.is-light {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: var(--brutalism-shadow);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.is-light:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 0px #000000;
  background: white;
  color: var(--primary-dark);
}

.button.is-light:active {
  transform: translateY(0);
  box-shadow: var(--brutalism-shadow);
}

.button.is-primary.is-outlined {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button.is-primary.is-outlined:hover {
  background: var(--primary-color);
  color: white;
}

.buttons.is-centered {
  justify-content: center;
}

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

.section .title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section .title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
}

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

.mission-card {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--card-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0px #000000;
}

.mission-card .card-image {
  overflow: hidden;
  border-bottom: var(--card-border);
  height: 200px;
}

.mission-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.mission-card .title {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 1rem;
}

.mission-card .title:after {
  display: none;
}

/* Blog Section */
.blog-section {
  background-color: var(--background-dark);
  padding: 6rem 0;
}

.blog-card {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--card-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0px #000000;
}

.blog-card .card-image {
  overflow: hidden;
  border-bottom: var(--card-border);
  height: 200px;
}

.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.blog-card .title {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 0.5rem;
}

.blog-card .title:after {
  display: none;
}

.blog-card .subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-card a.button {
  margin-top: auto;
  align-self: flex-start;
}

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

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

.resource-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--card-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0px #000000;
}

.resource-card .card-content {
  padding: 1.5rem;
}

.resource-card .title {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 1rem;
}

.resource-card .title:after {
  display: none;
}

.resource-card ul {
  list-style-type: none;
  padding-left: 0;
}

.resource-card ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

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

.resource-card a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

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

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

.partner-card {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--card-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0px #000000;
}

.partner-card .card-image {
  overflow: hidden;
  border-bottom: var(--card-border);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.partner-card .title {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 1rem;
}

.partner-card .title:after {
  display: none;
}

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

.press-card {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--card-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.press-card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0px #000000;
}

.press-card .card-image {
  overflow: hidden;
  border-bottom: var(--card-border);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.press-card .title {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 0.5rem;
}

.press-card .title:after {
  display: none;
}

.press-card .subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: auto;
}

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

.contact-card, .info-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  border: var(--card-border);
  height: 100%;
}

.contact-form .input, 
.contact-form .textarea, 
.contact-form .select select {
  border-radius: 8px;
  border: 2px solid #000;
  padding: 0.75rem;
  font-family: 'IBM Plex Sans', sans-serif;
  transition: all 0.3s ease;
}

.contact-form .input:focus, 
.contact-form .textarea:focus, 
.contact-form .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(106, 17, 203, 0.25);
}

.contact-form .label {
  font-weight: 600;
  color: var(--text-color);
}

.contact-form .button {
  margin-top: 1rem;
}

.info-card .card-content {
  padding: 1.5rem;
}

.info-card .title {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.info-card .title:after {
  display: none;
}

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

.info-card .content strong {
  color: var(--primary-color);
}

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

.footer .title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.footer .title:after {
  display: none;
}

.footer p {
  margin-bottom: 1rem;
}

.footer ul {
  list-style-type: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--footer-text);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
  text-decoration: underline;
}

.social-links a {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: white;
}

.newsletter-form .input {
  border-radius: 30px 0 0 30px;
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: 'IBM Plex Sans', sans-serif;
}

.newsletter-form .button {
  border-radius: 0 30px 30px 0;
}

.legal-links {
  font-size: 0.9rem;
}

.copyright {
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal.is-active {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.image-gallery img {
  max-width: 100%;
  max-height: 80vh;
  border: 4px solid white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

.cookie-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

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

/* Additional Pages */
.page-content {
  padding-top: calc(var(--header-height) + 3rem);
  min-height: calc(100vh - 400px);
}

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

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: var(--header-height);
}

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

.success-message {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.success-page .button {
  margin-top: 2rem;
}

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

.pulse {
  animation: pulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section .title {
    font-size: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    padding-right: 0;
    margin-bottom: 1rem;
  }
  
  .resources-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
  }
  
  .section .title {
    font-size: 1.8rem;
  }
  
  .button {
    padding: 0.6rem 1.2rem;
  }
}