@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header styles */
.main-header {
  width: 100%;
  height: 70px;
  background: white;
  border: 1px solid #f2f3f7;
  border-radius: 0 0 35px 35px;
  position: relative;
  z-index: 100;
}

.header-container {
  padding: 0 60px;
  height: 100%;
}

.logo-pc img {
  max-height: 40px; /* Установите нужную высоту */
  width: auto;
}

@media (max-width: 768px) {
  .logo-pc img {
    max-height: 24px;
  }
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.logo-orange {
  color: #fe630c;
}

.logo-dark {
  color: #191f33;
}

.burger-menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  order: 2;
  z-index: 1001;
  margin-left: auto;
}

@media (max-width: 768px) {
  .burger-menu-icon {
    display: block;
  }

  .header-nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px; /* чуть ниже header */
      right: 15px;
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      padding: 15px 10px;
      z-index: 1000;
      width: 200px;
    }

    .header-nav.active {
      display: flex;
    }

    .nav-button {
      width: 100%;
      height: 35px;
      font-size: 11px;
      padding: 10px;
      margin: 5px 0;
      justify-content: center;
    }
}

.header-nav {
  gap: 15px;
  align-items: center;
}

.nav-button {
  padding: 10px 20px;
  width: 150px;
  height: 35px;
  border-radius: 100px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; /* Remove underline from links */
}

.nav-button-dark {
  background-color: #191f33;
}

.nav-button-orange {
  background-color: #fe630c;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
  .header-container {
    padding: 0 30px;
  }

  .header-nav {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 15px;
    margin-top: 10px;
  }

  .navbar-nav {
    gap: 10px;
  }

  .nav-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
    flex-wrap: wrap;
  }

.logo {
    margin-right: auto;
    font-size: 16px;
    order: 1;
    width: 50%;
  }

  .nav-button {
    width: 100px;
    font-size: 8px;
    padding: 5px;
    height: 25px;
  }

  .header-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    gap: 5px;
  }

  .navigation-arrows {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 14px;
  }

  .nav-button {
    font-size: 8px;
    width: 100%;
  }
}

/* Hero section */
.hero-section {
  padding: 0 60px;
  width: 1500px;
  margin-left: 230px;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 650px;
}

.hero-text-block {
  padding: 40px 45px;
  width: 650px;
  height: 320px;
  border-radius: 35px;
  background-color: #f2f3f7;
  position: relative;
}

.hero-title {
  color: #191f33;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 30px;
}

.business-types {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}

.business-type-card {
  width: 250px;
  height: 55px;
  border-radius: 15px;
  background-color: #d9dff2;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.hero-description {
  color: #03070a;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: justify;
}

.goal-block {
  padding: 30px 40px;
  width: 650px;
  height: 160px;
  border-radius: 35px;
  background-color: #050f17;
  background-image: url("https://cdn.builder.io/api/v1/image/assets/TEMP/9905411c9beed4952f4d2724496b4215fca00d71?placeholderIfAbsent=true");
  background-size: cover;
  background-position: center;
  margin-top: 25px;
}

.goal-label {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.goal-text {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.hero-image {
  position: relative;
  flex: 1;
}

.laptop-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
}

/* Professionals section */
.professionals-section {
  padding: 0 60px;
  width: 1500px;
  margin-top: 50px;
  margin-left: 230px;
  display: flex;
  border-radius: 50px;
  height: 550px;
  align-items: center;
  gap: 50px;
  background-color: #f2f3f7;
}

.professionals-image {
  flex: 1;
}

.trophy-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.professionals-content {
  padding: 60px 0;
  flex: 1;
}

.section-title {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 30px;
}

.section-description {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.5px;
  text-align: justify;
  margin-bottom: 60px;
}

.quote-block {
  padding: 30px 25px;
  width: 550px;
  height: 220px;
  border-radius: 35px;
  background-color: #d9dff2;
  position: relative;
}

.quote-text {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 90px;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  justify-content: flex-start;
}

.author-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.3;
  word-break: break-word;
  max-width: 320px;
  text-align: center;
}

.author-name {
  color: #000;
}

.author-title {
  color: #6b6c6f;
}

.assessment-section {
  padding: 0 80px;
  width: 1500px;
  margin-left: 230px;
  margin-top: 60px;
  display: flex;
  border-radius: 50px;
  height: 500px;
  align-items: center;
  gap: 40px;
  background-color: #f2f3f7;
  position: relative;
}

.assessment-content {
  padding: 50px 40px;
  flex: 1;
}

.time-info {
  margin-bottom: 35px;
}

.time-text {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.5px;
  text-align: justify;
  margin-bottom: 12px;
}

.time-badge {
  padding: 12px 20px;
  width: 150px;
  height: 35px;
  border-radius: 100px;
  background-color: #fe630c;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soft-skills-block {
  padding: 30px 40px;
  width: 650px;
  height: 160px;
  border-radius: 35px;
  background-color: #050f17;
  background-image: url("https://cdn.builder.io/api/v1/image/assets/TEMP/9905411c9beed4952f4d2724496b4215fca00d71?placeholderIfAbsent=true");
  background-size: cover;
  background-position: center;
}

.soft-skills-note {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 15px;
}

.soft-skills-text {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.assessment-image {
  position: relative;
  flex: 1;
}

.character-image {
  width: 100%;
  max-width: 40px;
  height: auto;
  margin-bottom: 20px;
}

.lightbulb {
  position: absolute;
  object-fit: contain;
}

.lightbulb-1 {
  width: 120px !important;
  height: 120px !important;
  top: 50px;
  right: 40px;
  transform: rotate(18.447deg);
  opacity: 0.8;
  filter: blur(0.5px);
}

.lightbulb-2 {
  width: 50px !important;
  height: 50px !important;
  top: 140px;
  left: 30px;
  transform: rotate(-37.442deg);
  opacity: 0.4;
  filter: blur(1px);
}

/* Services section */
.services-section {
  padding: 0 100px;
  width: 100%;
  margin-top: 60px;
  display: flex;
  gap: 50px;
  justify-content: center;
}

.service-card {
  padding: 35px 40px 40px 40px;
  width: 450px;
  height: 480px;
  border-radius: 50px;
  background-color: #f2f3f7;
  position: relative;
}

.service-badge {
  padding: 6px 20px 5px 20px;
  height: 35px;
  border-radius: 100px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
  display: none;
}

.service-title {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 35px;
}

.service-description {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.5px;
  text-align: justify;
  margin-bottom: 75px;
}

.service-button {
  width: 150px;
  height: 35px;
  border-radius: 100px;
  background-color: #191f33;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navigation-arrows {
  padding: 0 350px;
  width: 100%;
  margin-top: -250px;
  display: flex;
  justify-content: space-between;
}

.nav-arrow {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background-color: #191f33;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Research Section - Compact Version */
.research-section {
  padding: 40px 60px;
  width: 100%;
  max-width: 1200px;
  margin: 100px auto 0;
  display: flex;
  margin-top: 200px;
  border-radius: 40px;
  min-height: 400px;
  align-items: center;
  gap: 40px;
  background-color: #f2f3f7;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.research-logos {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}

.research-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.harvard-logo,
.stanford-logo,
.carnegie-logo {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.harvard-logo {
  max-height: 120px;
}

.stanford-logo {
  max-height: 150px;
}

.carnegie-logo {
  max-height: 180px;
}

.research-content {
  padding: 40px 0;
  flex: 1;
  position: relative;
  z-index: 2;
}

.stats-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.section-description {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.5;
}

.research-stats {
  padding: 20px 25px;
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  background-color: #d9dff2;
}

/* Mobile Adaptations */
@media (max-width: 992px) {
  .research-section {
    padding: 30px 40px;
    flex-direction: column;
    gap: 30px;
    margin-top: 80px;
    border-radius: 30px;
    min-height: auto;
  }
  
  .research-logos {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px 0 10px;
    gap: 20px;
  }
  
  .research-logo-container {
    width: calc(50% - 10px);
  }
  
  .harvard-logo {
    max-height: 100px;
  }
  
  .stanford-logo {
    max-height: 120px;
  }
  
  .carnegie-logo {
    max-height: 140px;
  }
  
  .research-content {
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .research-section {
    padding: 25px 30px;
    margin-top: 60px;
  }
  
  .research-logos {
    gap: 15px;
  }
  
  .harvard-logo {
    max-height: 80px;
  }
  
  .stanford-logo {
    max-height: 100px;
  }
  
  .carnegie-logo {
    max-height: 120px;
  }
  
  .stats-title {
    font-size: 18px;
  }
  
  .section-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .research-section {
    padding: 20px;
    margin-top: 40px;
    border-radius: 25px;
  }
  
  .research-logos {
    flex-direction: column;
    gap: 15px;
  }
  
  .research-logo-container {
    width: 100%;
  }
  
  .harvard-logo {
    max-height: 70px;
  }
  
  .stanford-logo {
    max-height: 90px;
  }
  
  .carnegie-logo {
    max-height: 100px;
  }
  
  .research-stats {
    padding: 15px 20px;
  }
}

.stats-title {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 18px;
}

.stats-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.stats-text {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.5px;
  text-align: justify;
}

.stats-badge {
  padding: 12px 20px;
  width: 150px;
  height: 35px;
  border-radius: 100px;
  background-color: #fe630c;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SkillSet Section - Desktop & Mobile */
.skillset-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 60px auto 0 auto;
  padding: 60px 32px;
  background: #f2f3f7;
  border-radius: 40px;
  box-sizing: border-box;
  width: 100%;
}

.skillset-title {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.skillset-description {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.skillset-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background-color: transparent;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.settings-icon {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 500px;
  height: 500px;
  z-index: 1;
  
}

.settings-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  
  opacity: 0.1;
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  list-style-type: none;
}

.skill-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  padding-left: 30px;
}

.skill-bullet {
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(254, 99, 12, 0.5);
  flex-shrink: 0;
}

.skill-name {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.skill-description {
  color: #7c7c7c;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 5px;
  display: block;
}

/* Tablet Adaptation */
@media (max-width: 1200px) {
  .skillset-section {
    padding: 50px 60px;
    max-width: 98vw;
  }
  .skillset-content {
    padding: 40px 30px;
  }
}

/* Mobile Adaptations */
@media (max-width: 992px) {
  .skillset-section {
    padding: 40px 20px;
    border-radius: 40px;
    margin: 60px auto 0 auto;
  }
  .skillset-content {
    padding: 30px 10px;
  }
}

@media (max-width: 768px) {
  .skillset-section {
    padding: 20px 5px;
    border-radius: 30px;
    margin: 40px auto 0 auto;
  }
  .skillset-content {
    padding: 15px 0;
  }
}

/* Pricing Section */
.pricing-section {
  text-align: center;
  padding: 60px 90px;
  width: 100%;
  margin-top: 60px;
}

.pricing-title {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 65px;
}

.pricing-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  padding: 60px 40px 15px 40px;
  width: 280px;
  height: 450px;
  border-radius: 50px;
  background-color: #1e1e1e;
  position: relative;
}

.card-title {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.card-features {
  margin-bottom: 80px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.feature-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(254, 99, 12, 0.5);
  position: relative;
  margin-top: 6px;
  flex-shrink: 0;
}

.feature-text {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 18px;
}

.card-price {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 6px;
}

.card-price-per {
  color: #757575;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 20px;
}

.card-button {
  margin: 0 auto;
  width: 150px;
  height: 35px;
  border-radius: 17.5px;
  background-color: #fe630c;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.main-footer {
  padding: 0 100px;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 35px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo {
  font-family: "Montserrat", sans-serif;
  font-size: 65px;
  font-weight: 700;
  line-height: 45px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-value {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 24px;
}

.footer-copyright {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  max-width: 320px;
  white-space: pre-line;
}


.settings-icon {
  width: 500px; /* Нормальное положительное значение */
  height: 50px; /* Нормальное положительное значение */
  position: absolute;
  top: -50px;
  right: 20px;
}

.settings-icon img {
  width: 100%; /* Чтобы изображение заполняло контейнер */
  height: auto; /* Сохраняем пропорции */
  object-fit: contain; /* Чтобы изображение полностью помещалось */
}

@media (max-width: 768px) {
  .quote-author {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }
}

/* Responsive design */
@media (max-width: 991px) {
  .header-container {
    padding: 0 30px;
  }

  .header-nav {
    gap: 8px;
  }

  .nav-button {
    width: 120px;
    font-size: 10px;
    padding: 8px 15px;
    height: 30px;
  }

  .hero-section {
    flex-direction: column;
    padding: 0 30px;
    height: auto;
    gap: 25px;
  }

  .hero-text-block {
    width: 100%;
    height: auto;
    padding: 30px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 36px;
  }

  .business-types {
    flex-direction: column;
    gap: 15px;
  }

  .business-type-card {
    width: 100%;
  }

  .goal-block {
    width: 100%;
    height: auto;
    padding: 25px;
  }

  .laptop-image {
    width: 100%;
    height: auto;
  }

  .professionals-section {
    flex-direction: column;
    padding: 30px;
    height: auto;
    gap: 25px;
  }

  .trophy-image {
    width: 100%;
    height: auto;
  }

  .section-title {
    font-size: 32px;
    line-height: 36px;
  }

  .quote-block {
    width: 100%;
    height: auto;
    padding: 25px;
  }

  .quote-author {
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .assessment-section {
    flex-direction: column;
    padding: 30px;
    height: auto;
    gap: 25px;
  }

  .soft-skills-block {
    width: 100%;
    height: auto;
    padding: 25px;
  }

  .character-image {
    width: 100%;
    height: auto;
  }

  .lightbulb-1,
  .lightbulb-2 {
    display: none;
  }

  .services-section {
    flex-direction: column;
    padding: 0 30px;
    gap: 20px;
  }

  .service-card {
    width: 100%;
    height: auto;
    padding: 30px;
  }

  .service-title {
    font-size: 32px;
    line-height: 36px;
  }

  .research-section {
    flex-direction: column;
    padding: 30px;
    height: auto;
    gap: 25px;
  }

  .research-stats {
    width: 100%;
    height: auto;
    padding: 25px;
  }

  .stats-content {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .skillset-section {
    padding: 0 30px;
  }

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

  .skillset-content {
    height: auto;
    padding: 30px;
  }

  .skillset-subtitle {
    font-size: 32px;
  }

  .skillset-decorations {
    position: static;
    margin-top: 25px;
    justify-content: center;
  }

  .pricing-section {
    padding: 0 30px;
  }

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

  .pricing-cards {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 350px;
    height: auto;
    padding: 30px;
  }

  .main-footer {
    padding: 0 30px;
  }

  .footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .footer-logo {
    font-size: 45px;
  }
}

@media (max-width: 768px) {
  .navigation-arrows {
    padding: 0 15px;
    margin-top: 20px;
    position: static;
  }

  .nav-arrow {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
    flex-wrap: wrap;
  }
  
  .logo {
    margin-right: auto;
    font-size: 16px;
    order: 1;
    width: 50%;
  }
  
  .header-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    gap: 5px;
  }
  
  .nav-button {
    width: 100px;
    font-size: 8px;
    padding: 5px;
    height: 25px;
  }
  
  .hero-section {
    width: 100%;
    margin-left: 0;
    padding: 0 15px;
    flex-direction: column;
    height: auto;
  }
  
  .hero-text-block {
    width: 100%;
    padding: 20px;
    height: auto;
  }
  
  .hero-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  
  .business-types {
    flex-direction: column;
    gap: 10px;
  }
  
  .business-type-card {
    width: 100%;
    height: 40px;
    font-size: 14px;
  }
  
  .goal-block {
    width: 100%;
    padding: 15px;
    height: auto;
  }
  
  .goal-text {
    font-size: 14px;
  }
  
  .professionals-section,
  .assessment-section,
  .research-section {
    width: 100%;
    margin-left: 0;
    padding: 20px 15px;
    height: auto;
    flex-direction: column;
  }
  
  .section-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .quote-block {
    width: 100%;
    padding: 15px;
    height: auto;
  }
  
  .quote-text {
    font-size: 16px;
    padding-left: 15px;
  }
  
  .services-section {
    flex-direction: column;
    padding: 0 15px;
    gap: 20px;
  }
  
  .service-card {
    width: 100%;
    height: auto;
    padding: 20px;
  }
  
  .service-title {
    font-size: 24px;
  }
  
  .skillset-section {
    padding: 0 90px;
    width: 100%;
    margin-top: 60px;
    background-color: #f2f3f7;
    border-radius: 50px;
  }

  .skillset-title {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-top: 40px;
  text-align: center;
}


  .skillset-description {
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
  }

  .skillset-content {
    padding: 40px;
    width: 100%;
    position: relative;
  }

  .skills-list {
    max-width: 600px;
    margin: 0 auto;
    list-style-type: none;
  }

  .skill-item {
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
  }

  .skill-bullet {
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(254, 99, 12, 0.5);
  }

  .skill-name {
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
  }

  .skill-description {
    color: #7c7c7c;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
  }

  /* .settings-icon {
    width: 500px;
    height: 500px;
    top: 10px;
    right: 20px;
  } */

  /* Удаляем ненужные элементы */
  .skillset-subtitle,
  .skillset-decorations {
    display: none;
  }

  /* Адаптация для мобильных устройств */
  @media (max-width: 768px) {
    .skillset-section {
      padding: 0 20px;
      border-radius: 30px;
    }
    
    .skillset-title {
      font-size: 28px;
      padding-top: 30px;
    }
    
    .skillset-description {
      font-size: 14px;
      padding: 0 15px;
    }
    
    .skillset-content {
      padding: 20px;
    }
    
    .skill-item {
      margin-bottom: 20px;
    }
    
    .skill-name {
      font-size: 16px;
    }
    
    .skill-description {
      font-size: 14px;
    }
  }
  
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-logo {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .footer-contacts {
    margin-bottom: 20px;
  }
  
  .contact-value {
    font-size: 18px;
  }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
  .logo {
    font-size: 14px;
  }
  
  .nav-button {
    width: 80px;
    font-size: 7px;
  }
  
  .hero-title {
    font-size: 20px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .service-title {
    font-size: 20px;
  }
  
  .skillset-title,
  .skillset-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .navigation-arrows {
    display: none;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute !important;
    top: 60px; /* высота вашего header */
    left: 0;
    width: 100vw;
    background: #fff;
    z-index: 1050;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border-radius: 0 0 24px 24px;
    padding-bottom: 20px;
  }
}

/* Увеличиваем размеры секций и внутренних элементов еще чуть-чуть */
.hero-section,
.professionals-section,
.assessment-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1600px;         /* было 1400px */
    margin: 0 auto 64px auto;  /* еще больше отступ снизу */
    padding: 64px 48px;        /* было 48px 32px */
    box-sizing: border-box;
    border-radius: 56px;       /* еще больше скругление */
    min-height: 620px;         /* увеличена минимальная высота */
}

.hero-section {
    gap: 72px;                 /* было 56px */
}
.professionals-section,
.assessment-section {
    gap: 60px;                 /* было 44px */
}

.hero-content,
.professionals-content,
.assessment-content {
    flex: 1 1 520px;           /* было 420px */
    min-width: 480px;          /* было 380px */
    max-width: 900px;          /* было 720px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 0;           /* увеличен внутренний отступ */
}

.hero-image,
.professionals-image,
.assessment-image {
    flex: 1 1 480px;           /* было 380px */
    min-width: 400px;          /* было 320px */
    max-width: 700px;          /* было 540px */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;           /* увеличен отступ */
}

.hero-image img,
.professionals-image img,
.assessment-image img {
    width: 100%;
    max-width: 600px;          /* было 480px */
    height: auto;
    display: block;
}

@media (max-width: 1400px) {
    .hero-section,
    .professionals-section,
    .assessment-section {
        max-width: 98vw;
        padding: 32px 2vw;
    }
    .hero-content,
    .professionals-content,
    .assessment-content,
    .hero-image,
    .professionals-image,
    .assessment-image {
        max-width: 100%;
        min-width: 0;
        padding: 0;
    }
    .hero-image img,
    .professionals-image img,
    .assessment-image img {
        max-width: 400px;
    }
}

@media (max-width: 900px) {
    .hero-section,
    .professionals-section,
    .assessment-section {
        flex-direction: column;
        gap: 32px;
        padding: 18px 2vw;
        min-height: unset;
    }
    .hero-image img,
    .professionals-image img,
    .assessment-image img {
        max-width: 220px;
    }
}
@media (max-width: 600px) {
  .laptop-image,
  .hero-image {
    display: none !important;
  }
  .hero-section {
    min-height: unset !important;
    height: auto !important;
    padding: 18px 2vw !important;
    gap: 12px !important;
    max-width: 100vw !important;
    margin: 0 auto 24px auto !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .hero-content {
    max-width: 100vw !important;
    min-width: 0 !important;
    padding: 0 !important;
  }
}
@media (max-width: 600px) {
  .laptop-image,
  .hero-image,
  .trophy-image,
  .lightbulb-1,
  .lightbulb-2,
  .professionals-image {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .character-image {
    display: block !important;
    width: 100%;
    max-width: 500px !important; /* увеличено */
    min-width: 120px;
    height: auto;
    margin: 0 auto 18px auto;
  }
}