* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Background */
.main-background {
   min-height: 100vh;
   background: linear-gradient(135deg, #0c4532 0%, #1a5844 50%, #2e6b58 100%);
   position: relative;
   overflow: hidden;
}

/* Animated Background Elements */
.bg-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
}

.bg-element-1 {
  top: -160px;
  right: -160px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.05);
  animation: pulse 4s ease-in-out infinite;
}

.bg-element-2 {
  top: 50%;
  left: -160px;
  width: 384px;
  height: 384px;
  background: rgba(255, 255, 255, 0.03);
  animation: pulse 4s ease-in-out infinite 1s;
}

.bg-element-3 {
  bottom: -160px;
  right: 33%;
  width: 256px;
  height: 256px;
  background: rgba(255, 255, 255, 0.04);
  animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.15;
  }
}

/* Glass Card Effect */
.glass-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(75, 135, 107, 0.37);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}
.custom-check-list {
  list-style: none;
  padding-left: 0;
}

.custom-check-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;
}

.custom-check-list li:hover {
  transform: translateX(5px);
}

.custom-check-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-right: 12px;
  color: #4CAF50;
  transition: all 0.3s ease;
}

.custom-check-list li:hover .custom-check-icon {
  color: #2E7D32;
  transform: scale(1.1);
}

.custom-check-list li span {
  display: inline-block;
  vertical-align: middle;
}
/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 3rem;
  border-radius: 24px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero .description {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-telegram {
  background: linear-gradient(135deg, #5d8e82 0%, #4a7a6e 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(93, 142, 130, 0.3);
}

.btn-telegram:hover {
  background: linear-gradient(135deg, #4a7a6e 0%, #3d6b5f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(93, 142, 130, 0.4);
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 4rem;
  opacity: 0.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.card {
  padding: 2rem;
  border-radius: 16px;
  color: white;
}

.card-header {
  margin-bottom: 1rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-description {
  opacity: 0.7;
  line-height: 1.5;
}

/* Forms */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(8px);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.check-icon {
  width: 16px;
  height: 16px;
  color: #10b981;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  opacity: 0.6;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
}

/* Job Cards */
.job-card {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.job-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.job-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Telegram Section */
.telegram-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 24px;
}

.telegram-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #5d8e82 0%, #4a7a6e 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 32px rgba(93, 142, 130, 0.3);
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.6;
  font-size: 0.875rem;
}
.form-input:focus,
.form-textarea:focus {
  outline: none; /* убирает стандартное синее свечение */
  border: 2px solid rgba(255, 255, 255, 0.63); /* задаём свой цвет рамки, например фиолетовый */
  border-radius: 8px; /* закруглённые края для красоты */
  transition: 0.2s ease; /* плавный эффект */
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 40px;
  height: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .stats {
    gap: 1rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Custom Scrollbar */ч
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

