/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Tektur', sans-serif;
  background: linear-gradient(to bottom, #141320 0%, #302F3F 100%);
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(23, 23, 36, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(237, 237, 103, 0.1);
}

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

.logo {
  height: 40px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.burger-icon {
  width: 24px;
  height: 24px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-list a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-list a:hover {
  color: #EDED67;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #EDED67;
  transition: width 0.3s ease;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  display: flex;
  background: rgba(48, 47, 63, 0.8);
  border-radius: 20px;
  padding: 2px;
  position: relative;
  overflow: hidden;
}

.lang-switcher::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  background: #EDED67;
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  box-shadow: 0 2px 8px rgba(237, 237, 103, 0.3);
}

.lang-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  min-width: 40px;
}

.lang-btn.active {
  color: #181725;
  transform: scale(1.05);
}

.lang-btn:not(.active) {
  color: rgba(255, 255, 255, 0.7);
}

.lang-btn:not(.active):hover {
  color: #FFFFFF;
  transform: scale(1.02);
}

.lang-switcher.ru-active::before {
  transform: translateX(100%);
}

.cta-btn {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #EDED67;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cta-btn:hover {
  background: #EDED67;
  border-color: #EDED67;
  color: #181725;
}

.cta-btn .btn-arrow {
  transition: all 0.3s ease;
}

.cta-btn:hover .btn-arrow {
  transform: rotate(-90deg);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-circle {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-image: url('circle.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mask: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  -webkit-mask: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.hero-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 25%;
  background-image: url('rectangle.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  mask: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

@media (max-width: 1024px) {
  .hero-circle {
    height: 100vh;
    width: 100vh;
    left: -100px;
    bottom: -100px;
  }

  .hero-gradient {
    left: -25vw;
    right: -25vw;
    width: 150vw;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content-logo {
  max-width: 800px;
}

.hero-title {
  font-family: 'Tektur', sans-serif;
  font-size: clamp(48px, 3vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.highlight {
  color: #EDED67;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.hero-cta {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #EDED67;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 400;
  cursor: pointer;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hero-cta:hover {
  background: #EDED67;
  border-color: #EDED67;
  color: #181725;
  box-shadow: 0 10px 30px rgba(237, 237, 103, 0.3);
}

.hero-cta .btn-arrow {
  transition: all 0.3s ease;
}

.hero-cta:hover .btn-arrow {
  transform: rotate(-90deg);
}

.hero-logo {
  display: block;
}

.hero-logo-img {
  width: 100%;
  margin-top: 160px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav {
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: rgba(23, 23, 36, 0.98);
      backdrop-filter: blur(20px);
      padding: 20px;
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }

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

  .nav-list {
      flex-direction: column;
      gap: 20px;
  }

  .mobile-menu-toggle {
      display: flex;
  }

  .header-right {
      gap: 15px;
  }

  .cta-btn {
      padding: 10px 20px;
      font-size: 12px;
  }

  .hero {
      padding-top: 120px;
      text-align: center;
  }

  .hero-title {
      font-size: 32px;
      margin-bottom: 30px;
  }

  .hero-logo {
      position: static;
      margin-top: 40px;
      text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }

  .hero-title {
      font-size: 28px;
  }

  .hero-cta {
      padding: 14px 24px;
      font-size: 14px;
  }

  .lang-switcher {
      display: none;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: #EDED67;
  color: #181725;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #302F3F;
}

::-webkit-scrollbar-thumb {
  background: #EDED67;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8A38F5;
}

/* About & Stats Section */
.about-stats {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.about-stats::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 400px;
  height: 400px;
  background-image: url('star.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
  z-index: 0;
}

.about-stats-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}

.stats-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}

.badge-icon {
  width: 24px;
  height: 24px;
}

.badge-text {
  font-family: 'Tektur', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.stats-grid {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.stat-item {
  background: #191824;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.stat-number {
  font-family: 'Tektur', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #EDED67;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.about-right {
  display: none;
}

/* Section Divider */
.section-divider {
  padding: 80px 0;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-stats::before {
    display: none;
  }
  
  .about-stats-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-section,
  .stats-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  
  .stats-grid {
    gap: 5px;
    flex-direction: column;
    width: 100%;
  }
  
  .stat-item {
    padding: 24px;
  }
  
  .stat-number {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .about-stats {
    padding: 0;
  }
  
  .about-title {
    font-size: 32px;
  }
  
  .stats-grid {
    gap: 5px;
  }
  
  .stat-item {
    text-align: center;
    padding:24px;
  }
  
  .stat-number {
    font-size: 48px;
  }
}

/* Services Section */
.services-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('bg-services.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 0;
}

.services-content {
  position: relative;
  z-index: 1;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #191824;
  padding: 8px 20px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 60px;
  margin-left: -100px;
}

.badge-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #181725;
  font-weight: 700;
}

.badge-text {
  font-family: 'Tektur', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Vacancies Block */
.vacancies-block {
  background: #191824;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
}

.block-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #EDED67;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.2;
}

.block-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255);
  line-height: 1.6;
  margin-bottom: 20px;
}

.block-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255);
  line-height: 1.5;
  margin-bottom: 40px;
}

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

.vacancy-category {
  margin-bottom: 30px;
}

.category-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #EDED67;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.vacancy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vacancy-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vacancy-dot {
  width: 8px;
  height: 8px;
  background: #EDED67;
  border-radius: 50%;
  flex-shrink: 0;
}

.vacancy-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  gap: 4px;
}

.vacancy-level {
  font-weight: 600;
}

.vacancy-position {
  color: rgba(255, 255, 255, 0.8);
}

.guarantees-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantees-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #EDED67;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.guarantees-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255);
  line-height: 1.6;
  margin-bottom: 10px;
}

.guarantees-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255);
  line-height: 1.5;
}

.cta-button {
  margin-top: 20px;
}


/* Candidates Block */
.candidates-block {
  background: #191824;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}

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

.approach-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #EDED67;
  margin-bottom: 12px;
}

.approach-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1366px) {
  .section-badge {
    margin-left: -20px;
  }
}

@media (max-width: 1024px) {
  .services-section {
      padding: 0px 0;
  }
  
  .block-title {
      font-size: 28px;
  }
  
  .vacancies-grid {
      grid-template-columns: 1fr;
      gap: 25px;
  }
  
  .approach-grid {
      grid-template-columns: 1fr;
      gap: 25px;
  }

  .section-badge {
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .services-section {
      padding: 0px 0;
  }
  
  .vacancies-block,
  .candidates-block {
      padding: 30px 24px;
  }
  
  .block-title {
      font-size: 24px;
  }
  
  .badge-text {
      font-size: 24px;
  }
  
  .section-badge {
      margin-bottom: 40px;
      margin-left: 0px;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }
  
  .vacancies-block,
  .candidates-block {
      padding: 24px 20px;
  }
  
  .block-title {
      font-size: 20px;
  }
  
  .badge-text {
      font-size: 24px;
  }
}

/* Vacancy Slider Section */
.vacancy-slider-section {
  padding: 0 0 80px 0;
  position: relative;
  overflow: hidden;
}

.vacancy-slider {
  position: relative;
  margin-top: 40px;
}

.vacancy-slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.vacancy-slides::-webkit-scrollbar {
  display: none;
}

.vacancy-slide {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  opacity: 1;
  transform: none;
  transition: none;
  pointer-events: auto;
}

.vacancy-card {
  background: #191824;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.vacancy-header {
  position: relative;
  z-index: 1;
}

.vacancy-content {
  position: relative;
  z-index: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vacancy-title {
  font-family: 'Tektur', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #EDED67;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.vacancy-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  flex-grow: 1;
}

.vacancy-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.vacancy-btn {
  background: transparent;
  color: #EDED67;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-family: 'Tektur', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.vacancy-btn .btn-arrow {
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
}

.vacancy-btn:hover .btn-arrow {
  transform: rotate(-90deg);
}

/* Pagination Styles */
.vacancy-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  position: relative;
}

.pagination-dot {
  width: 16px;
  height: 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pagination-dot.active {
  background: #EDED67;
  width: 32px;
  box-shadow: 0 0 20px rgba(237, 237, 103, 0.5);
}

.pagination-dot:hover:not(.active) {
  background: rgba(237, 237, 103, 0.5);
  transform: scale(1.1);
}

/* Responsive Design */
@media (min-width: 768px) {
  .vacancy-slide {
    width: calc(50% - 10px);
  }
}

@media (min-width: 1024px) {
  .vacancy-slide {
    width: calc(33.333% - 14px);
  }
}

@media (min-width: 1200px) {
  .vacancy-slide {
    width: calc(25% - 15px);
  }
}

@media (max-width: 767px) {
  .vacancy-slider-section {
    padding: 0 0 60px 0;
  }

  .vacancy-slide {
    width: 280px;
  }

  .vacancy-card {
    padding: 30px 24px;
  }

  .vacancy-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .vacancy-description {
    font-size: 14px;
  }

  .vacancy-btn {
    padding: 10px 20px;
    font-size: 11px;
  }

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

@media (max-width: 480px) {
  .vacancy-slide {
    width: 260px;
  }

  .vacancy-card {
    padding: 24px 20px;
  }

  .vacancy-title {
    font-size: 32px;
  }

  .vacancy-description {
    font-size: 14px;
  }

  .pagination-dot {
    width: 14px;
    height: 10px;
  }

  .pagination-dot.active {
    width: 28px;
  }

  .vacancy-pagination {
    gap: 6px;
    margin-top: 30px;
  }
}

/* Footer Styles */
.footer {
  background: #171724;
  padding: 60px 0 40px 0;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: #EDED67;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #181725;
  font-weight: 700;
}

.footer-logo-text {
  font-family: 'Tektur', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #EDED67;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 280px;
}

.footer-section h3 {
  font-family: 'Tektur', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #EDED67;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.footer-menu a:hover {
  color: #EDED67;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #EDED67;
}

.social-icon {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-bottom {
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  margin-bottom: 40px;
}

.footer-big-logo {
  text-align: center;
  padding-top: 40px;
}

.footer-big-logo-img {
  max-width: 100%;
  height: auto;
  width: clamp(300px, 50vw, 800px);
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
  }

  .footer-big-logo-img {
      width: clamp(250px, 45vw, 600px);
  }
}

@media (max-width: 768px) {
  .footer {
      padding: 40px 0 30px 0;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 40px;
  }

  .footer-description {
      max-width: 100%;
  }

  .footer-big-logo-img {
      width: clamp(200px, 60vw, 400px);
  }
}

@media (max-width: 480px) {
  .footer {
      padding: 30px 0 20px 0;
  }

  .footer-content {
      gap: 25px;
      margin-bottom: 30px;
  }

  .footer-logo-text {
      font-size: 24px;
  }

  .footer-big-logo-img {
      width: clamp(150px, 70vw, 300px);
  }
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.modal-container {
  background: #2A2937;
  border-radius: 20px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #FFFFFF;
  font-size: 20px;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Modal Content */
.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: 100%;
}

/* Left Side */
.modal-left {
  padding: 40px;
  background: #2A2937;
  border-radius: 20px 0 0 20px;
}

/* Right Side */
.modal-right {
  padding: 40px;
  background: #232130;
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-direction: column;
}

/* Hot Vacancy Badge */
.hot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #8A38F5;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 30px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hot-badge .fire-icon {
  width: 16px;
  height: 16px;
}

/* Vacancy Title */
.vacancy-title {
  font-family: 'Tektur', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #EDED67;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Description */
.vacancy-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
}

.vacancy-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 40px;
}

/* Section Titles */
.section-title {
  font-family: 'Tektur', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #EDED67;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 30px;
}

.section-title:first-of-type {
  margin-top: 0;
}

/* Lists */
.info-list {
  list-style: none;
  margin-bottom: 30px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.info-list li::before {
  content: "•";
  color: #EDED67;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Conditions Section */
.conditions-title {
  font-family: 'Tektur', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #EDED67;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Condition Cards */
.condition-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.condition-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(237, 237, 103, 0.3);
}

.condition-label {
  font-family: 'Tektur', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #EDED67;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.condition-value {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Apply Button */
.apply-btn {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #EDED67;
  padding: 16px 32px;
  border-radius: 25px;
  font-weight: 400;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  white-space: nowrap;
}

.apply-btn:hover {
  background: #EDED67;
  border-color: #EDED67;
  color: #181725;
}

.apply-btn .btn-arrow {
  transition: all 0.3s ease;
  width: 16px;
  height: 16px;
}

.apply-btn:hover .btn-arrow {
  transform: rotate(-90deg);
}

/* Scrollbar */
.modal-container::-webkit-scrollbar {
  width: 6px;
}

.modal-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.modal-container::-webkit-scrollbar-thumb {
  background: #EDED67;
  border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .modal-content {
      grid-template-columns: 1fr;
  }

  .modal-left,
  .modal-right {
      border-radius: 20px;
      padding: 30px;
  }

  .vacancy-title {
      font-size: 28px;
  }
}

@media (max-width: 768px) {
  .modal-container {
      width: 95%;
      margin: 20px;
  }

  .modal-left,
  .modal-right {
      padding: 24px;
  }

  .vacancy-title {
      font-size: 24px;
  }

  .section-title {
      font-size: 20px;
  }
}

/* Demo styles for preview */
.demo-btn {
  background: #EDED67;
  color: #181725;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  margin: 20px;
}

/* Contact Form Modal Specific Styles */

/* Contact Modal Container Override */
.contact-modal .modal-container {
  max-width: 800px;
  padding: 40px;
}

/* Modal Title */
.modal-title {
  font-family: 'Tektur', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #EDED67;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-align: left;
}

/* Tab Switcher */
.tab-switcher {
  display: flex;
  background: rgba(48, 47, 63, 0.8);
  border-radius: 20px;
  padding: 2px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.tab-switcher::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  background: #EDED67;
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  box-shadow: 0 2px 8px rgba(237, 237, 103, 0.3);
}

.tab-switcher.candidates-active::before {
  transform: translateX(100%);
}

.tab-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-btn.active {
  color: #181725;
  transform: scale(1.02);
}

.tab-btn:not(.active) {
  color: rgba(255, 255, 255, 0.7);
}

.tab-btn:not(.active):hover {
  color: #FFFFFF;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group.row {
  flex-direction: row;
  gap: 15px;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #EDED67;
  border-radius: 12px;
  padding: 16px 20px;
  color: #FFFFFF;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  resize: none;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #EDED67;
  box-shadow: 0 0 0 3px rgba(237, 237, 103, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit Button */
.submit-btn {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #EDED67;
  padding: 16px 32px;
  border-radius: 25px;
  font-weight: 400;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  white-space: nowrap;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #EDED67;
  border-color: #EDED67;
  color: #181725;
}

.submit-btn .btn-arrow {
  transition: all 0.3s ease;
  width: 16px;
  height: 16px;
}

.submit-btn:hover .btn-arrow {
  transform: rotate(-90deg);
}

/* Form Fields Container */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Animation for form changes */
.form-content {
  transition: opacity 0.8s ease;
}

.form-content.changing {
  opacity: 0.7;
}

/* Contact Form Responsive Design */
@media (max-width: 768px) {
  .contact-modal .modal-container {
    width: 95%;
    margin: 20px;
    padding: 30px 24px;
  }

  .modal-title {
    font-size: 20px;
  }

  .form-group.row {
    flex-direction: column;
    gap: 20px;
  }

  .tab-btn {
    padding: 10px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .contact-modal .modal-container {
    padding: 24px 20px;
  }

  .form-input {
    padding: 14px 16px;
  }
}