* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  
}

/* Contact Bar */
.header-wrapper {
  position: fixed;
  width: 100%;
  z-index: 10;
}

.contact-bar {
  width: 100%;
  background-color: #161519;
  color: #FDFDFF;
  height: 38px;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}

.contact-container {
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.contact-content--mobile {
  display: none;
}

.contact-bar a {
  color: #8FAFF0;
  font-weight: 700;
  text-decoration: none;
  margin: 0 4px;
}

/* Header */
.navbar {
  width: 100%;
  background-color: #FDFDFF;
  height: 96px;
  border-bottom: 1px solid #E6EBF3;
  display: flex;
  align-items: center;
}

.navbar-container {
  max-width: 1304px;
  padding: 0 12px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  display: block;
  width: 222px;
  height: 52px;
}

.navbar-menu {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  flex: 1;
  gap: 48px;
  justify-content: center;
}

.navbar-menu a {
  text-decoration: none;
  color: #161519;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.navbar-menu a:hover {
  color: #457AE5;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.contact-button .btn-contact {
  margin-left: 40px;
  background-color: #457AE5;
  color: #FDFDFF;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 24px;
  padding: 10px 20px 10px 12px;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  transition: background-color .2s ease-in-out;
  text-decoration: none;
}

.contact-button .btn-contact:hover {
  background-color: #8FAFF0;
}

.contact-button .btn-contact img {
  width: 24px;
  height: 24px;
}

/* Бургер-кнопка */
.burger-menu {
  width: 20px;
  height: 16px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin-right: 16px;
}

.burger-menu span {
  height: 2px;
  width: 100%;
  background-color: #161519;
  display: block;
}

.bento-wrapper {
  padding: 138px 32px 0 32px;
  box-sizing: border-box;
  margin: 0 auto;
}

.hero-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 600px;
  padding-top: 110px;
  padding-bottom: 231px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.67);
  z-index: 1;
}

.hero-container {
  max-width: 1280px;
  padding: 0 28px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  /* border: 1px solid red; */
}

.hero-foreground {
  position: absolute;
  top: 183px;
  left: 0;
  right: 0;
  padding-bottom: 231px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.hero-content {
  position: relative;
  transform: none;
  top: clamp(-30px, -3vw, -10px);
  width: 100%;
  max-width: 800px;
  text-align: center;
  color: white;
  margin: 0 auto;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 58px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 28px;
  justify-content: center;
}

.hero-buttons {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-learn {
  display: flex;
  align-items: center; 
  gap: 2px;
  background-color: #457AE5;
  color: #FDFDFF;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  padding: 18px 24px 18px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .2s ease;
}

.btn-learn:hover {
  background-color: #8FAFF0;
}

.btn-secondary {
  background-color: #FDFDFF;
  color: #161519;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  padding: 18px 32px 18px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
}

.btn-secondary:hover {
  background-color: #457AE5;
  color: #FDFDFF;
}

.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  z-index: 2;
}

.stat-wrapper {
  position: relative;
  display: flex;
  padding: 0 8px;
}

.stat-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.4);
  align-self: center;
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  text-align: left;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 28px;
  margin-top: -4px;
  margin-bottom: 4px;
}

.stat-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  white-space: nowrap;
}

.first-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

.second-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.stat-with-divider {
  position: relative;
}

.stat-with-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
}

.video-toggle {
  position: absolute;
  bottom: 40px;
  right: 32px;
  width: 48px;
  height: 38px;
  background-color: #3C3A43;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  right: 24px;
  bottom: 24px;
  transition: background-color .2s ease;
}

.video-toggle:hover {
  background-color: #457AE5;
}

.video-toggle img {
  width: 24px;
  height: auto;
}

.help-section {
  display: flex;
  padding: 160px 0 180px;
  flex-direction: column;
  align-items: center;
  background-color: #FFFFFF;
  box-sizing: border-box;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 72px;
  /* border: 1px solid red; */
}

/* Small title */
.help-small-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.help-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.line {
  width: 16px;
  height: 3px;
  border-radius: 0px;
  background-color: #457AE5;
}

.label-text {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #457AE5;
}

/* h3 */
.help-title-h3 {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600 !important;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -0.01em;
  color: #161519;
  font-weight: normal;
  max-width: 1280px;
}

/* Help info list */
.help-info-list {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 64px;
}

.help-info-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex: 1;
  height: 164px;
  gap: 20px;
}

/* Icon block */
.help-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #457AE5;
}

.help-icon {
  color: #F5F5F5;
  width: 32px;
  height: 32px;
}

/* Text part */
.help-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.help-text h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0;
  color: #161519;
  margin: 0;
}

.help-text p {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #454545;
  margin: 0;
}

 /*About*/
.about {
  padding: 100px 0;
  background-color: #f5f5f5;
}


.about-wrapper {
  max-width: 1304px;
  margin: 0 auto;
  display: flex;
  position: relative;
  height: 600px;
  gap: 20px;
  padding: 0 12px;
}

.about-image {
  flex-shrink: 0;
  width: auto; 
  position: relative;
  margin-top: 20px;
  z-index: 2;
}

.about-image img {
  display: block;
  width: 470px;
  height: auto;
  object-fit: contain; /* если вдруг задашь height */
}

.about-box {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 74px 52px 48px 180px;
  position: relative;
  z-index: 1;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  margin-left: -100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.about-info-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-details-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-info h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: #161519;
}

.about-info p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  color: #454545;
  margin: 0;
}

.about-facts-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
  color: #161519;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}

.circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  background-color: #457AE5;
}

.circle.dott {
  background-color: #457AE5;
}

.about-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-buttons button,
.about-buttons .btn-linkedin,
.btn-message {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #161519;
  background-color: transparent;
  border: 1px solid #83888C;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}


.btn-message {
  padding: 16px 32px;
  gap: 4px;
  text-decoration: none;
  transition: background-color .2s ease-in-out, color .2s ease-in-out, stroke .2s ease-in-out;
}

.btn-message:hover {
  background-color: #457AE5;
}

.btn-message:hover span {
  color: #FDFDFF;
}

.btn-message:hover path {
  stroke: #FDFDFF;
}

.btn-linkedin {
  padding: 16px 22px 16px 24px;
  gap: 8px;
  text-decoration: none;
  transition: color .2s ease;
}

.btn-linkedin span strong {
  transition: color .2s ease;
}

.btn-linkedin-icon {
  /* background-color: #2866C1; */
  border-radius: 8px;
  display: flex; 
  align-items: center;
  justify-content: center;
  /* transition: background-color 0.2s ease; */
  position: relative;
}

.btn-linkedin span strong {
  color: #2866C1;
  font-weight: 700;
  text-decoration: underline;
}

/* Hover */
.btn-linkedin:hover {
  background-color: #457AE5;
  color: #ffffff;
  border-color: #457AE5;
}

.btn-linkedin rect,
.btn-linkedin path {
  transition: all .2s ease;
}

.btn-linkedin:hover rect {
  fill: #F2F3F7;
}

.btn-linkedin:hover path {
  fill: #2866C1;
}

.btn-linkedin:hover span strong {
  color: white;
}

/* Reviews */
.reviews-section {
  display: flex;
  padding: 160px 0 180px;
  flex-direction: column;
  align-items: center;
  background-color: #457AE5;
}

.reviews-container {
  max-width: 1304px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  text-align: center;
  /* border: 1px solid red; */
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.help-label2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.help-label2 .line2 {
  width: 16px;
  height: 3px;
  background-color: #ffffff;
}

.help-label2 .label-type2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.help-label2 .line3 {
  width: 16px;
  height: 3px;
  background-color: #ffffff;
}

.section-title {
  font-size: 48px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
}

.reviews-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 12px;
  /* border: 1px solid #b91218; */
}

.slider-wrapper {
  overflow: hidden;
  flex: 1;
  max-width: 1160px;
  margin: 0;
}


.nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid #8FAFF0;
  background-color: transparent;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: white;
  border: 1px solid white;
}

.nav-btn img {
  width: 24px;
  height: 24px;
}

.nav-btn:hover img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(74%) saturate(2605%) hue-rotate(179deg) brightness(98%) contrast(104%);
}

.review-cards { 
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 24px;
}

.review-card {
  display: flex;
  flex: 0 0 calc(100% / 3 - 16px);
  box-sizing: border-box;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 28px 28px 40px 28px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.review-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}


.quote-mark img {
  display: block;
  width: 40px;
  height: auto;
  margin-bottom: 28px;
  color: #457AE5;
}

.review-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  margin: 0;
  padding: 0;
  color: #333;
}

.reviewer-info {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 12px;
  padding-top: 32px;
}

.reviewer-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-details {
  font-family: Inter, sans-serif;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 1px;
  
}

.review-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  margin: 0;
  color: #1D1D1F;
}

.review-date {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
  color: #666;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color:rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #ffffff;
}


/* NewsLetter */
.newsletter-section {
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  margin: 40px auto;
}

/* .container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
} */

.newsletter-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 22px 28px 22px 18px;
  background-color: #457AE5;
  color: #FDFDFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 4px;
}

.newsletter-inner {
  background-color: #457AE5;
  background-image: url('../newsletter_image.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  border-radius: 20px;
  padding: 52px 40px 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #FDFDFF;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
  min-width: 300px;
  flex-wrap: wrap;
}

.newsletter-success {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #62B96C;
  border-radius: 8px;
  padding: 18px 28px 18px 18px;
}

.newsletter-success svg {
  height: 24px;
  width: 24px;
}

.newsletter-success span {
  font-family: "Inter", sans-serif;
  color: #FFF;
  font-size: 16px;
  line-height: 24px;
  margin-left: 4px;
  text-transform: capitalize;
}

.newsletter-input {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 8px;
  border: none;
  color: #83888C;
  width: 60%;
  max-width: 300px;
}

.newsletter-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 22px 28px 22px 18px; /* top right bottom left */
  background-color: #457AE5;
  color: #FDFDFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 4px;
}

.newsletter-button:hover {
  background-color: #8FAFF0;
  color: #fff;
}

.newsletter-icon {
  width: 24px;
  height: 24px;
}

/* Footer */
.site-footer {
  background-color: #FDFDFF;
  padding: 52px 0 25px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  /* gap: 48px; */
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 68px;
}

.footer-left {
  max-width: 441px;
}

.footer-logo {
  width: 256px;
  height: auto;
  margin-bottom: 28px;
}

.footer-description {
  font-size: 16px;
  line-height: 24px;
  color: #83888C;
  margin: 0;
}

.footer-right {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  /* border: 1px solid red; */
}

.footer-column {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 18px;
}

.footer-column ul a {
  color: inherit;
  text-decoration: none;
}

.footer-column ul a:hover {
  text-decoration: underline;
}

.contacts {
  width: 300px;
}

.contacts h4,
.social-icons h4 {
  font-size: 18px;
  font-weight: 600;
  color: #161519;
  margin-top: 0;
  /* border: 1px solid #ff0000; */
}

.contacts ul {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  color: #83888C;
}

.social-icons {
  width: 300px;
  /* border: 1px solid red; */
}

.icon-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.icon-box {
  width: 48px;
  height: 48px;
  border: 1px solid #83888C;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.icon-box img {
  width: 24px;
  height: 24px;
  transition: fill 0.3s ease;
}

.icon-box:hover {
  background-color: #457AE5;
  border: 1px solid #457AE5;
}


.icon-box:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(110%) contrast(100%);
}

.footer-divider {
  height: 1px;
  background-color: #E6EBF3;
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-size: 14px;
  color: #83888C;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-links a {
  color: #83888C;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #161519;
}

.copyright {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
}

/* Responsive */
@media (max-width: 1440px) {
  .hero-section {
    padding-top: 130px;
  }
}

@media (min-width: 1280px) {
  .hero-container {
    padding: 0;
  }
}

@media (max-width: 1279px) {
  .hero-stats {
    gap: 22px;
  }  

  .about-wrapper {
    padding: 0 12px;
  }

  .about-box {
    padding: 74px 40px 48px 110px;
  }

  .btn-message {
    padding: 16px 22px;
  }

  .newsletter-section {
    padding: 0;
  }

  .footer-top {
    flex-wrap: nowrap;
  }

  .footer-right {
    justify-content: flex-end;
  }
}

@media (max-width: 1024px) {
  .navbar-container {
    padding: 0 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar-menu {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }

  .contact-button {
    margin-top: 10px;
  }

  .newsletter-inner {
    flex-direction: column;
  }

  
}

@media (max-width: 1024px) {
  .container {
    max-width: 393px;
  }

  .line {
    width: 14px;
  }

  .label-text {
    line-height: 16px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .help-section {
    padding: 96px 0 72px 0;
  }

  .help-info-list {
    flex-direction: column;
    gap: 38px;
  }

  .help-label .label-text {
    font-size: 14px;
    line-height: 100%;
  }

  .help-title-h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .help-icon-wrapper {
    height: 42px;
    width: 42px;
  }

  .help-icon {
    height: 28px;
    width: 28px;
  }

  .help-text {
    gap: 4px;
  }

  .help-text h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .help-text p {
    font-size: 14px;
    line-height: 22px;
  }

  .about-details-group {
    gap: 20px;
  }

  .about {
    background-color: #FFF;
    padding: 15px 0 71px 0;
  }

  .about-wrapper {
    flex-direction: column;
    align-items: center;
    height: auto;
    max-width: 393px;
    gap: 58px;
    padding: 0 20px;
  }

  .about-image {
    max-width: 353px;
  }

  .about-image img {
    width: 100%;
  }

  .about-box {
    padding: 0;
    margin-left: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .about-info-container {
    gap: 28px;
  }

  .about-info {
    gap: 18px;
  }

  .about-info h2 {
    font-size: 32px;
  }

  .about-info p {
    font-size: 14px;
    line-height: 22px;
  }

  .about-list li {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
  }

  .about-buttons {
    justify-content: center;
  }

  .about-buttons button,
  .about-buttons .btn-linkedin {
    font-size: 14px;
    line-height: 24px;
    width: 317px;
  }

  .about-buttons button, .btn-message {
    font-size: 14px;
    line-height: 24px;
    width: 317px;
  }


  .btn-message {
    padding: 17px 90px;
  }

  .btn-linkedin {
    padding: 17px 68px;
  }

  .newsletter-inner {
    min-height: 342px;
    flex-direction: column;
    align-items: center;
    padding: 60px 16px 62px 16px;
    background-position: center top;
    background-size: cover;
    background-image: url("../new-cover-mobile.png");
    gap: 32px;
  }

  .newsletter-title {
    font-size: 32px;
    line-height: 32px;
    text-align: center;
  }

  .newsletter-form {
    justify-content: flex-start;
    width: 100%;
  }

  .newsletter-input {
    width: 100%;
    max-width: none;
    font-size: 14px;
    line-height: 18px;
    padding: 20px;
  }

  .newsletter-button {
    height: 58px;
    width: 100%;
    justify-content: center;
    font-size: 14px;
    line-height: 18px;
    padding: 20px 28px 20px 18px;
    gap: 2px;
  }

  .newsletter-icon {
    height: 18px;
    width: 18px;
  }

  .newsletter-success {
    width: 100%;
    height: max-content;
  }
}

@media (max-width: 991px) {
  .slider-dots {
    display: none;
  }
}

@media (max-width: 900px) {
  .burger-menu {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 123px;
    left: 0;
    width: 100%;
    background-color: #FDFDFF;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    display: none;
    z-index: 9;
    border-bottom: 1px solid #E6EBF3;
  }

  .navbar-menu.active {
    display: flex;
  }

  .contact-button {
    margin-left: auto;
  }
  
  .hero-section {
    padding-top: 186px;
    height: 652px;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 20px;
    max-width: 325px;
    margin-bottom: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-learn,
  .btn-secondary {
    width: 321px;
    justify-content: center;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Inter', sans-serif;
  }

  .video-toggle {
    display: none;
  }

  .hero-stats {
    bottom: 61px;
    gap: 18.5px;
  }

  .stat {
    flex-direction: column;
    justify-content: center;
  }

  .stat-text {
    align-items: center;
  }

  .stat-number {
    font-size: 24px;
  }

  .first-label {
    font-size: 12px;
    line-height: 14px;
  }

  .second-label {
    font-size: 10px;
    line-height: 16px;
  }

  .review-card {
    flex: 0 0 calc(100% / 2 - 13px);
  }
}

@media (max-width: 770px) {
  .review-card {
    flex: 0 0 calc(100% / 1 - 2px);
    padding: 24px 20px 56px 20px;
    height: 340px;
    width: 353px;
  }

  .slider-dots {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-content--mobile {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px ;
    margin: 0;
  }

  .contact-content--desktop {
    display: none;
  }

  .navbar {
    height: 80px;
  }

  .navbar-container {
    padding: 0 12px;
  }

  .burger-menu {
    margin-left: 12px;
  }

  .logo img {
    height: 32px;
    width: 136px;
  }

  .contact-button {
    margin-top: 0;
  }

  .contact-button .btn-contact {
    font-size: 14px;
    line-height: 20px;
    margin-left: 0;
    padding: 7px 14px 7px 8px;
  }

  .navbar-menu {
    top: 107px;
  }

  .hero-section {
    height: 622px;
    padding-top: 155px;
    padding-bottom: 0;
    border-radius: 24px
  }

  .bento-wrapper {
    padding: 120px 18px 0 18px;
  }

  .stat-wrapper {
    padding: 0;
  }

  .hero-stats {
    gap: 16.5px;
  }

  .stat-number {
    margin: 0;
  }

  .btn-learn,
  .btn-secondary {
    height: 50px;
  }

  .reviews-section {
    padding: 92px 0 160px 0;
  }

  .help-label2 .label-type2 {
    font-size: 14px;
    line-height: 100%;
  }

  .help-label2 .line2 {
    width: 14px;
  }

  .section-title {
    font-size: 28px;
    line-height: 100%;
  }

  .quote-mark img {
    width: 32px;
    margin-bottom: 40px;
  }

  .newsletter-section {
    margin: 72px auto 58px auto;
  }

  .reviews-container {
    padding: 0 12px;
  }

  .reviewer-info {
    gap: 16px;
    padding-top: 28px;
  }

  .nav-btn {
    position: absolute;
    top: 390px;
  }

  .nav-btn.prev {
    left: calc(50% - 54px);
  }

  .nav-btn.next {
    left: calc(50% - -8px);
  }

  .slider-dots {
    margin-top: 18px;
  }

  .site-footer {
    padding: 40px 0 32px;
  }

  .footer-logo {
    height: 52px;
    width: 222px;
  }

  .container {
    padding: 0 12px;
  }

  .footer-top {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 38px;
    margin-bottom: 10px;
  }

  .footer-right {
    justify-content: flex-start;
    flex-direction: column;
    gap: 38px;
  }

  .footer-left {
    max-width: 353px;
  }

  .footer-description {
    font-size: 14px;
    line-height: 20px;
  }

  .contacts h4, .social-icons h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .contacts ul {
    font-size: 14px;
    line-height: 20px;
  }

  .icon-box {
    height: 44px;
    width: 44px;
  }

  .footer-bottom {
    gap: 12px;
  }

  .copyright {
    width: 170.5px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .hero-container {
    padding: 0 18px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .btn-learn, .btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 321px;
  }

  .hero-stats {
    gap: 10.5px;
  }
}