* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter Tight", sans-serif;
}

body {
  background: #F6F6F6;
}

h1, h2 {
  font-family: "Bricolage Grotesque", sans-serif;
}

span {
  font-family: "Caveat", cursive;
}

.header {
  background: url(../img/header-bg.jpg) center center/cover no-repeat;
  margin: 12px;
  padding: 16px;
  border-radius: 24px;
  overflow: hidden;
}
.header .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-top .logo img {
  width: 209px;
}
.header .header-top .nav-menu {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}
.header .header-top .nav-menu li {
  list-style-type: none;
}
.header .header-top .nav-menu li a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  opacity: 0.72;
  transition: 0.3s all;
  border: 1px solid rgba(255, 255, 255, 0);
}
.header .header-top .nav-menu li a:hover {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.header .header-top .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.header .header-top .mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header .header-top .mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .header-top .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header .header-top .mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.header .line img {
  width: 100%;
}
.header .header-content {
  width: 100%;
  max-width: 890px;
  margin: 0 auto;
  padding-top: 88px;
  padding-bottom: 130px;
  text-align: center;
}
.header .header-content h3 {
  color: #D8FF54;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.header .header-content h1 {
  font-weight: 600;
  font-size: 72px;
  color: #fff;
  margin-bottom: 0;
}
.header .header-content h2 {
  font-weight: 700;
  font-size: 72px;
  color: #D8FF54;
  margin-bottom: 40px;
}
.header .header-content p {
  color: #fff;
  opacity: 0.72;
  margin-bottom: 40px;
  font-size: 20px;
}
.header .header-content .a-header {
  background-color: #C0E14E;
  padding: 4px 32px;
  padding-right: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #0D1618;
}
.header .header-content .a-header img {
  width: 48px;
}

.a-header {
  padding: 10px 14px;
  background-color: #fff;
  border-radius: 999px;
  color: #0D1618;
  text-decoration: none;
  transition: 0.3s all;
  display: inline-block;
}
.a-header img {
  width: 14px;
  min-width: 14px;
  margin-left: 8px;
}
.a-header:hover {
  color: #0D1618;
  transform: scale(1.01);
}

.title h3 {
  color: #9CCA00;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 24px;
}
.title h2 {
  color: #0D1618;
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 24px;
}
.title p {
  color: #646868;
  font-size: 20px;
  margin-bottom: 0;
}

.poor {
  background-color: #F6F6F6;
  padding: 128px 0;
}
.poor .top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.poor .top .left {
  width: 100%;
  max-width: 761px;
}
.poor .top .left .logo-block {
  background-color: #fff;
  border-radius: 999px;
  max-width: 450px;
  width: 100%;
  display: inline-block;
  padding: 12px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.poor .top .left .logo-block img {
  width: 44px;
  margin-right: 16px;
}
.poor .top .left .logo-block h3 {
  margin-bottom: 0;
  font-size: 28px;
}
.poor .top .left .logo-block h3 span {
  color: #646868;
}
.poor .top .left .logo-block h3 span strong {
  font-family: "Caveat", cursive;
  color: #9CCA00;
}
.poor .top .a-header {
  background-color: #0D1618;
  padding: 4px 32px;
  padding-right: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 44px;
}
.poor .top .a-header img {
  width: 48px;
}
.poor .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.poor .items .item {
  border-radius: 32px;
  background: #0D1618;
  color: #fff;
  padding: 32px 24px;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.poor .items .item .top-i {
  display: flex;
  align-items: center;
}
.poor .items .item .top-i img {
  width: 48px;
  margin-right: 24px;
}
.poor .items .item .top-i h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}
.poor .items .item .line {
  margin: 16px 0;
}
.poor .items .item .line img {
  width: 100%;
}
.poor .items .item ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.poor .items .item ul li {
  list-style-type: none;
  display: flex;
  align-items: center;
  opacity: 0.72;
  font-size: 16px;
  font-weight: 600;
}
.poor .items .item ul li img {
  width: 24px;
  margin-right: 8px;
}
.poor .items .item-w {
  background-color: #fff;
  color: #0D1618;
}
.poor .items .item-w p {
  font-size: 16px;
  margin-top: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.wrn {
  background: rgba(216, 255, 84, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.94);
  padding: 16px 24px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.wrn img {
  width: 56px;
  margin-right: 24px;
}
.wrn p {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #0D1618;
}

.how {
  background-color: #fff;
  padding: 96px 0;
}
.how .title {
  text-align: center;
}
.how .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 56px;
}
.how .items .item {
  border-radius: 32px;
  background: #0D1618;
  color: #fff;
  padding: 32px 24px;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.how .items .item .top-i img {
  width: 72px;
  margin-bottom: 24px;
}
.how .items .item .top-i h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}
.how .items .item .line {
  margin: 16px 0;
}
.how .items .item .line img {
  width: 100%;
}
.how .items .item p {
  font-size: 16px;
  margin-top: 24px;
  color: #646868;
  font-weight: 600;
  margin-bottom: 0;
}
.how .items .item-w {
  background-color: #fff;
  color: #0D1618;
}

.steps {
  background-color: #F6F6F6;
  padding: 116px 0;
}
.steps .title {
  text-align: center;
}
.steps .items {
  display: flex;
  flex-direction: column;
  gap: 112px;
  margin-top: 56px;
  margin-bottom: 56px;
}
.steps .items .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.steps .items .item .text {
  padding: 0 48px;
  width: 100%;
  max-width: 450px;
}
.steps .items .item .text h4 {
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.05);
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background-color: #0D1618;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}
.steps .items .item .text h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #0D1618;
  margin-bottom: 24px;
}
.steps .items .item .text p {
  color: #646868;
  margin-bottom: 0;
}
.steps .items .item .img {
  width: 50%;
}
.steps .items .item .img img {
  width: 100%;
}
.steps .btn-steps {
  margin-top: 56px;
  text-align: center;
}
.steps .a-header {
  background-color: #0D1618;
  padding: 4px 32px;
  padding-right: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 44px;
}
.steps .a-header img {
  width: 48px;
}

.who-can {
  padding: 116px 0;
}
.who-can .title {
  text-align: center;
  margin-bottom: 56px;
}
.who-can .title h3 {
  color: #C0E14E;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.who-can .title h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #0D1618;
  margin-bottom: 0;
}
.who-can .who-can-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  background-color: #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
}
.who-can .who-can-grid .who-can-item {
  background-color: #F6F6F6;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.who-can .who-can-grid .who-can-item .who-can-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-can .who-can-grid .who-can-item .who-can-icon img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.who-can .who-can-grid .who-can-item .who-can-text {
  flex: 1;
}
.who-can .who-can-grid .who-can-item .who-can-text p {
  color: #0D1618;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.who-can .who-can-grid .who-can-item .who-can-text p strong {
  font-weight: 600;
}

.our-perf {
  padding: 116px 0;
  background: url(../img/bg-2.jpg) center center/cover no-repeat;
  margin: 12px;
  border-radius: 24px;
  overflow: hidden;
}
.our-perf .container {
  position: relative;
  z-index: 2;
}
.our-perf .title {
  margin-bottom: 56px;
}
.our-perf .title h3 {
  color: #C0E14E;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.our-perf .title h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.2;
}
.our-perf .metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.our-perf .metrics-grid .metric-item {
  background-color: #0D1618;
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 160px;
}
.our-perf .metrics-grid .metric-item.metric-highlight {
  background-color: #C0E14E;
}
.our-perf .metrics-grid .metric-item.metric-highlight .metric-value {
  color: #0D1618;
}
.our-perf .metrics-grid .metric-item.metric-highlight .metric-description {
  color: #0D1618;
}
.our-perf .metrics-grid .metric-item.metric-dark {
  background-color: #161F21;
}
.our-perf .metrics-grid .metric-item.metric-wide {
  grid-column: span 2;
}
.our-perf .metrics-grid .metric-item .metric-value {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1;
}
.our-perf .metrics-grid .metric-item .metric-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.4;
  max-width: 200px;
}

.why-dev {
  background-color: #FFFFFF;
  margin: 12px;
  padding: 90px 16px;
  border-radius: 24px;
  overflow: hidden;
}
.why-dev .top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 56px;
}
.why-dev .top .left {
  width: 100%;
  max-width: 600px;
}
.why-dev .top .a-header {
  background-color: #0D1618;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.why-dev .top .a-header img {
  width: 34px;
  margin-left: 12px;
}
.why-dev .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-dev .items .item {
  background-color: #F6F6F6;
  border-radius: 32px;
  padding: 24px;
  transition: all 0.3s ease;
}
.why-dev .items .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.why-dev .items .item.item-dark {
  background-color: #0D1618;
  color: #fff;
}
.why-dev .items .item.item-dark h3 {
  color: #fff;
}
.why-dev .items .item.item-dark p {
  color: rgba(255, 255, 255, 0.8);
}
.why-dev .items .item .item-icon {
  margin: 0 auto 28px;
}
.why-dev .items .item .item-icon img {
  width: 72px;
}
.why-dev .items .item h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0D1618;
  margin-bottom: 16px;
  line-height: 1.3;
}
.why-dev .items .item p {
  color: #646868;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.clients {
  padding: 128px 0;
}
.clients .title {
  text-align: center;
  margin-bottom: 56px;
}
.clients .title h3 {
  color: #C0E14E;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.clients .title h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #0D1618;
  margin-bottom: 0;
}
.clients .testimonials .main-testimonial {
  background: url(../img/bg-2.jpg) center center/cover no-repeat;
  border-radius: 24px;
  padding: 34px;
  margin-bottom: 48px;
}
.clients .testimonials .main-testimonial .testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.clients .testimonials .main-testimonial .testimonial-content .user-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}
.clients .testimonials .main-testimonial .testimonial-content .user-info .user-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.clients .testimonials .main-testimonial .testimonial-content .user-info .user-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.clients .testimonials .main-testimonial .testimonial-content .user-info .user-details h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.clients .testimonials .main-testimonial .testimonial-content .user-info .user-details p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin: 0;
}
.clients .testimonials .main-testimonial .testimonial-content .testimonial-text p {
  color: #fff;
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}
.clients .testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.clients .testimonials .testimonials-grid .testimonial-card {
  background-color: #fff;
  border-radius: 32px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.clients .testimonials .testimonials-grid .testimonial-card .stars {
  margin-bottom: 16px;
}
.clients .testimonials .testimonials-grid .testimonial-card .stars img {
  width: 120px;
  height: auto;
}
.clients .testimonials .testimonials-grid .testimonial-card h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0D1618;
  margin-bottom: 12px;
  font-style: italic;
}
.clients .testimonials .testimonials-grid .testimonial-card .line {
  margin-bottom: 28px;
}
.clients .testimonials .testimonials-grid .testimonial-card .line img {
  width: 100%;
}
.clients .testimonials .testimonials-grid .testimonial-card p {
  color: #646868;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.clients .testimonials .testimonials-grid .testimonial-card .card-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.clients .testimonials .testimonials-grid .testimonial-card .card-user .card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.clients .testimonials .testimonials-grid .testimonial-card .card-user .card-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.clients .testimonials .testimonials-grid .testimonial-card .card-user .card-user-info h5 {
  color: #0D1618;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.clients .testimonials .testimonials-grid .testimonial-card .card-user .card-user-info p {
  color: #646868;
  font-size: 14px;
  margin: 0;
}
.clients .industry-recognition {
  text-align: center;
  margin-top: 56px;
  margin-bottom: 56px;
}
.clients .industry-recognition .title {
  margin-bottom: 20px;
}
.clients .industry-recognition .title h3 span {
  color: #9CCA00;
}
.clients .industry-recognition .recognition-items {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.clients .industry-recognition .recognition-items .recognition-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.clients .industry-recognition .recognition-items .recognition-item .recognition-icon {
  width: 24px;
  flex-shrink: 0;
}
.clients .industry-recognition .recognition-items .recognition-item .recognition-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.clients .industry-recognition .recognition-items .recognition-item p {
  color: #0D1618;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  text-align: left;
}
.clients .industry-recognition .recognition-items .recognition-divider {
  width: 1px;
  height: 40px;
  background-color: #e0dfdf;
  margin: 0 auto;
}
.clients .btn-steps {
  margin-top: 56px;
  text-align: center;
}
.clients .a-header {
  background-color: #0D1618;
  padding: 4px 32px;
  padding-right: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 44px;
}
.clients .a-header img {
  width: 48px;
}

.faq {
  background-color: #FFFFFF;
  margin: 12px;
  padding: 90px 16px;
  border-radius: 24px;
  overflow: hidden;
}
.faq .title {
  text-align: center;
  margin-bottom: 56px;
}
.faq .title h3 {
  color: #C0E14E;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.faq .title h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #0D1618;
  margin-bottom: 0;
}
.faq .faq-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.faq .faq-content .faq-column h4 {
  color: #C0E14E;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
  font-family: "Caveat", cursive;
}
.faq .faq-content .faq-column .faq-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq .faq-content .faq-column .faq-items .faq-item {
  background-color: #fff;
  border-radius: 32px;
  padding: 30px 24px;
  cursor: pointer;
  border: 2px solid #F6F6F6;
  transition: all 0.3s ease;
}
.faq .faq-content .faq-column .faq-items .faq-item:hover {
  background-color: #F6F6F6;
}
.faq .faq-content .faq-column .faq-items .faq-item.active {
  background-color: #F6F6F6;
}
.faq .faq-content .faq-column .faq-items .faq-item.active .faq-toggle {
  background-color: #C0E14E;
  color: #0D1618;
}
.faq .faq-content .faq-column .faq-items .faq-item .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
.faq .faq-content .faq-column .faq-items .faq-item .faq-question h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0D1618;
  margin: 0;
  flex: 1;
  padding-right: 16px;
}
.faq .faq-content .faq-column .faq-items .faq-item .faq-question .faq-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F6F6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 27px;
  font-weight: 400;
  color: #000000;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.faq .faq-content .faq-column .faq-items .faq-item .faq-answer {
  display: none;
  margin-top: 12px;
}
.faq .faq-content .faq-column .faq-items .faq-item .faq-answer p {
  color: #646868;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding-left: 0;
  font-style: italic;
}
.faq .faq-content .faq-column .faq-items .faq-item.active .faq-answer {
  display: block;
}

.we-only-50 {
  padding: 116px 0;
  background: url(../img/bg-3.jpg) center center/cover no-repeat;
  margin: 12px;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
}
.we-only-50 .title-2 {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  margin-bottom: 56px;
}
.we-only-50 .title-2 h2 {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
}
.we-only-50 .title-2 h3 {
  font-size: 72px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #D8FF54;
  font-family: "Caveat", cursive;
}
.we-only-50 .title-2 .audit-line p {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.we-only-50 .value-stack h4 {
  color: #D8FF54;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  font-family: "Caveat", cursive;
}
.we-only-50 .value-stack .benefits-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.we-only-50 .value-stack .benefits-grid .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  width: 100%;
  max-width: 200px;
}
.we-only-50 .value-stack .benefits-grid .benefit-item .benefit-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.we-only-50 .value-stack .benefits-grid .benefit-item .benefit-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.we-only-50 .value-stack .benefits-grid .benefit-item p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.we-only-50 .value-stack .benefits-grid .benefit-divider {
  width: 1px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.05);
  margin: 0 auto;
  margin-top: 15px;
}
.we-only-50 .value-stack .value-summary {
  margin-bottom: 40px;
}
.we-only-50 .value-stack .value-summary .total-value {
  margin-bottom: 8px;
}
.we-only-50 .value-stack .value-summary .total-value h5 {
  color: #D8FF54;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.we-only-50 .value-stack .value-summary .your-investment p {
  color: #fff;
  font-size: 16px;
  margin: 0;
}
.we-only-50 .value-stack .cta-buttons {
  margin-bottom: 40px;
}
.we-only-50 .value-stack .cta-buttons .urgency-button {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 24px;
  border-radius: 32px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 600;
}
.we-only-50 .value-stack .cta-buttons .urgency-button span {
  font-family: "Inter Tight", sans-serif;
}
.we-only-50 .value-stack .cta-buttons .urgency-button img {
  width: 48px;
}
.we-only-50 .value-stack .cta-buttons .main-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.we-only-50 .value-stack .cta-buttons .main-buttons .a-header {
  background-color: #C0E14E;
  padding: 4px 32px;
  padding-right: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #0D1618;
}
.we-only-50 .value-stack .cta-buttons .main-buttons .a-header img {
  width: 48px;
}
.we-only-50 .value-stack .cta-buttons .main-buttons .a-header_w {
  background-color: #fff;
}
.we-only-50 .value-stack .final-promise p {
  font-size: 16px;
  margin: 0;
  color: #fff;
}
.we-only-50 .value-stack .final-promise p span {
  color: #D8FF54;
  font-family: "Inter Tight", sans-serif;
}

.contact-form {
  padding: 116px 0;
  background: url(../img/bg-4.jpg) center center/cover no-repeat;
  margin: 12px;
  border-radius: 24px;
  overflow: hidden;
}
.contact-form .title {
  text-align: center;
  margin-bottom: 56px;
}
.contact-form .title h3 {
  color: #C0E14E;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.contact-form .title h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.contact-form .title p {
  color: #646868;
  font-size: 18px;
  margin: 0;
}
.contact-form .contact-form-content {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form .contact-form-content .form-group {
  margin-bottom: 32px;
}
.contact-form .contact-form-content .form-group label {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.contact-form .contact-form-content .form-group .form-description {
  color: #646868;
  font-size: 14px;
  margin-bottom: 16px;
}
.contact-form .contact-form-content .form-group .input-wrapper {
  position: relative;
  margin-bottom: 16px;
}
.contact-form .contact-form-content .form-group .input-wrapper img {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 2;
}
.contact-form .contact-form-content .form-group .input-wrapper input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border: none;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 16px;
  color: #fff;
}
.contact-form .contact-form-content .form-group .input-wrapper input::-moz-placeholder {
  color: #646868;
}
.contact-form .contact-form-content .form-group .input-wrapper input::placeholder {
  color: #646868;
}
.contact-form .contact-form-content .form-group .input-wrapper input:focus {
  outline: none;
}
.contact-form .contact-form-content .form-group .messenger-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}
.contact-form .contact-form-content .form-group .messenger-note {
  color: #646868;
  font-size: 14px;
  margin: 0;
}
.contact-form .contact-form-content .form-group .checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-form .contact-form-content .form-group .checkbox-wrapper input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-form .contact-form-content .form-group .checkbox-wrapper label {
  color: #646868;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
.contact-form .contact-form-content .form-group .checkbox-wrapper label a {
  color: #C0E14E;
  text-decoration: none;
}
.contact-form .contact-form-content .form-group .checkbox-wrapper label a:hover {
  text-decoration: underline;
}
.contact-form .contact-form-content .a-header {
  background-color: #C0E14E;
  padding: 4px 32px;
  padding-right: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #0D1618;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
}
.contact-form .contact-form-content .a-header img {
  width: 48px;
}

.footer {
  padding-top: 28px;
  padding-bottom: 40px;
}
.footer .logo {
  display: flex;
  justify-content: center;
}
.footer .logo img {
  width: 209px;
}
.footer .line {
  margin: 40px 0;
}
.footer .line img {
  width: 100%;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin: 40px 0;
}
.footer .footer-content .footer-column h4 {
  color: #0D1618;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}
.footer .footer-content .footer-column .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer .footer-content .footer-column .contact-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.footer .footer-content .footer-column .contact-item a {
  text-decoration: none;
}
.footer .footer-content .footer-column .contact-item span {
  color: #646868;
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter Tight", sans-serif;
}
.footer .footer-content .footer-column .contact-item span strong {
  color: #161F21;
}
.footer .footer-content .footer-column .resource-item {
  margin-bottom: 16px;
}
.footer .footer-content .footer-column .resource-item a {
  text-decoration: none;
}
.footer .footer-content .footer-column .resource-item span {
  color: #646868;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Inter Tight", sans-serif;
}
.footer .footer-content .footer-column .legal-item {
  margin-bottom: 16px;
}
.footer .footer-content .footer-column .legal-item a {
  text-decoration: none;
}
.footer .footer-content .footer-column .legal-item span {
  color: #646868;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: "Inter Tight", sans-serif;
}
.footer .footer-content .footer-column .legal-item span:hover {
  color: #C0E14E;
}
.footer .text-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer .text-footer p {
  color: #646868;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.footer .text-footer .fg {
  background-color: #C7C8C8;
  width: 2px;
  height: 2px;
  border-radius: 999px;
}
.footer .footer-bottom {
  text-align: center;
}
.footer .footer-bottom p {
  color: #646868;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}

.terms-policy {
  margin: 50px 0;
}
.terms-policy span {
  font-family: "Inter Tight", sans-serif;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}
.modal .modal-content {
  background: linear-gradient(135deg, #0D1618 0%, #1A2A2E 100%);
  border-radius: 24px;
  padding: 48px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
  border: 1px solid rgba(192, 225, 78, 0.2);
}
.modal .modal-content .close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #646868;
  cursor: pointer;
  transition: color 0.3s ease;
}
.modal .modal-content .close-modal:hover {
  color: #C0E14E;
}
.modal .modal-content .modal-body .success-icon {
  margin-bottom: 24px;
}
.modal .modal-content .modal-body .success-icon img {
  width: 64px;
  height: 64px;
  filter: brightness(0) invert(1);
}
.modal .modal-content .modal-body h3 {
  color: #C0E14E;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}
.modal .modal-content .modal-body p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.modal .modal-content .modal-body .modal-btn {
  background-color: #C0E14E;
  color: #0D1618;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal .modal-content .modal-body .modal-btn:hover {
  background-color: #B0D140;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .container {
    padding: 0 8px;
  }
  .header .header-top ul {
    gap: 20px;
  }
  .header .header-top ul li a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .header .header-top {
    position: relative;
  }
  .header .header-top .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(13, 22, 24, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: left 0.3s ease;
    z-index: 1000;
  }
  .header .header-top .nav-menu.active {
    left: 0;
  }
  .header .header-top .nav-menu li a {
    font-size: 24px;
    padding: 15px 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .header-top .nav-menu li a:hover {
    background: rgba(192, 225, 78, 0.1);
    border-color: #C0E14E;
    color: #C0E14E;
  }
  .header .header-top .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }
  .header .header-top .a-header {
    display: none;
  }
  .header .hero {
    padding: 40px 20px;
    text-align: center;
  }
  .header .hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }
  .header .hero h2 {
    font-size: 28px;
  }
  .header .hero p {
    font-size: 16px;
  }
  .hero-2 {
    padding: 40px 20px;
  }
  .hero-2 .hero-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .hero-2 .hero-content .left {
    width: 100%;
    max-width: none;
  }
  .hero-2 .hero-content .right {
    width: 100%;
  }
  .steps {
    padding: 40px 20px;
  }
  .steps .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .who-can {
    padding: 40px 20px;
  }
  .who-can .who-can-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .our-perf {
    padding: 40px 20px;
  }
  .our-perf .metrics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .our-perf .metrics-grid .metric-item.metric-wide {
    grid-column: span 1;
  }
  .why-dev {
    padding: 40px 20px;
  }
  .why-dev .top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .why-dev .top .left {
    width: 100%;
    max-width: none;
  }
  .why-dev .items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .clients {
    padding: 40px 20px;
  }
  .clients .testimonials .main-testimonial {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .clients .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .clients .industry-recognition .recognition-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .clients .industry-recognition .recognition-items .recognition-divider {
    display: none;
  }
  .faq {
    padding: 40px 20px;
  }
  .faq .faq-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .we-only-50 {
    padding: 40px 20px;
  }
  .we-only-50 .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .we-only-50 .benefits-grid .benefit-divider {
    display: none;
  }
  .we-only-50 .cta-buttons .main-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .contact-form {
    padding: 40px 20px;
  }
  .contact-form .contact-form-content .form-group .messenger-inputs {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .footer {
    padding: 40px 20px;
  }
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer .text-footer {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .header .hero h1 {
    font-size: 28px;
  }
  .header .hero h2 {
    font-size: 24px;
  }
  .hero-2 .hero-content .left h2 {
    font-size: 32px;
  }
  .hero-2 .hero-content .left h3 {
    font-size: 28px;
  }
  .steps .title h2 {
    font-size: 32px;
  }
  .who-can .title h2 {
    font-size: 32px;
  }
  .our-perf .title h2 {
    font-size: 32px;
  }
  .why-dev .top .left h2 {
    font-size: 32px;
  }
  .clients .title h2 {
    font-size: 32px;
  }
  .faq .title h2 {
    font-size: 32px;
  }
  .we-only-50 .title-2 h2 {
    font-size: 32px;
  }
  .we-only-50 .title-2 h3 {
    font-size: 28px;
  }
  .contact-form .title h2 {
    font-size: 32px;
  }
}
@media (max-width: 990px) {
  .title h2 {
    font-size: 32px;
  }
  .header .header-content {
    padding: 40px 0;
  }
  .header .header-content h3 {
    font-size: 16px;
  }
  .header .header-content h1 {
    font-size: 40px;
  }
  .header .header-content h2 {
    font-size: 40px;
  }
  .header .header-content p {
    font-size: 16px;
  }
  .header .header-content .a-header {
    font-size: 15px;
  }
  .a-header {
    white-space: nowrap;
    width: 100%;
  }
  .poor, .how {
    padding: 40px 0;
  }
  .poor .top {
    flex-direction: column;
  }
  .poor .top .left .logo-block h3 {
    font-size: 18px;
  }
  .poor .top .left .logo-block {
    padding: 8px;
  }
  .poor .top .left .logo-block img {
    width: 30px;
  }
  .poor .items, .how .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .poor .top .a-header {
    font-size: 15px;
  }
  .title p {
    font-size: 16px;
  }
  .steps .items .item .text {
    padding: 0;
    text-align: center;
  }
  .steps .items {
    gap: 30px;
  }
  .steps .items .item {
    flex-direction: column;
    gap: 30px;
  }
  .steps .items .item .img {
    width: 100%;
  }
  .steps .items .item-b {
    flex-direction: column-reverse;
  }
  .steps .items .item .text h5 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .steps .items .item .text h4 {
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.05);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background-color: #0D1618;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
  }
  .wrn {
    flex-direction: column;
  }
  .wrn img {
    width: 50px;
    margin-bottom: 20px;
    align-items: start;
    justify-content: start;
    text-align: left;
  }
  .who-can .who-can-grid {
    gap: 1px;
  }
  .steps, .who-can, .why-dev, .faq {
    padding: 40px 0px;
  }
  .our-perf {
    padding: 32px 8px;
    margin: 8px;
  }
  .why-dev, .faq, .header {
    margin: 8px;
  }
  .our-perf .metrics-grid {
    gap: 1px;
  }
  .our-perf .metrics-grid .metric-item .metric-value {
    font-size: 32px;
  }
  .our-perf .metrics-grid .metric-item .metric-description {
    font-size: 15px;
  }
  .why-dev .top .a-header {
    font-size: 15px;
  }
  .user-details {
    text-align: left;
  }
  .clients .testimonials .main-testimonial .testimonial-content .testimonial-text p {
    font-size: 18px;
  }
  .clients .testimonials .main-testimonial .testimonial-content .user-info .user-details h4 {
    font-size: 18px;
  }
  .clients .testimonials .main-testimonial .testimonial-content .user-info .user-details p {
    font-size: 14px;
  }
  .clients .industry-recognition {
    margin-bottom: 0px;
  }
  .clients .a-header {
    display: none;
  }
  .faq .faq-content .faq-column .faq-items .faq-item {
    padding: 20px;
  }
  .faq .faq-content .faq-column .faq-items .faq-item .faq-question .faq-toggle {
    width: 35px;
    height: 35px;
    font-size: 22px;
  }
  .faq .faq-content .faq-column .faq-items .faq-item .faq-question h5 {
    font-size: 16px;
  }
  .faq .faq-content .faq-column .faq-items .faq-item .faq-answer p {
    font-size: 14px;
  }
  .we-only-50 .title-2 h3 {
    margin-bottom: 15px;
  }
  .we-only-50 .title-2 .audit-line p {
    font-size: 16px;
  }
  .we-only-50 .title-2 {
    margin-bottom: 30px;
  }
  .we-only-50 .value-stack .benefits-grid {
    flex-direction: column;
  }
  .we-only-50 .value-stack .benefits-grid .benefit-item {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    text-align: left;
  }
  .we-only-50 .value-stack .cta-buttons .main-buttons .a-header {
    padding: 4px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    padding-right: 4px;
  }
  .we-only-50 .value-stack .cta-buttons .main-buttons .a-header_w {
    padding: 4px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    padding-right: 4px;
  }
  .footer .text-footer {
    text-align: center;
  }
  .footer .line {
    margin: 20px 0;
  }
  .contact-form .contact-form-content .a-header {
    padding: 4px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    padding-right: 4px;
  }
  .contact-form .contact-form-content .form-group .messenger-inputs {
    gap: 0;
  }
  .header .header-top .nav-menu {
    gap: 15px;
  }
  .header .header-top .nav-menu li {
    width: 90%;
    text-align: center;
  }
  .header .header-top .nav-menu li a {
    width: 100%;
    display: block;
    font-size: 18px;
  }
  .footer .footer-content {
    margin-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */