.hero-section {
  background: linear-gradient(88deg, #F4FEF7 37.2%, #C7F5E1 65.48%, #A0EBD5 93.6%);
  min-height: 950px;
  padding: 109px 0;
  margin-top: 120px;
}

.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-section .hero-left {
  flex: 1;
  max-width: 677px;
}

.hero-section .hero-left .partnership-label {
  display: inline-block;
  color: #2BA275;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}

.hero-section .hero-left .hero-heading {
  color: #111;
  font-size: 56px;
  font-weight: 600;
  line-height: 80px;
  margin-bottom: 14px;
}

.hero-section .hero-left .hero-description {
  color: #666666;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 100px;
}

.hero-section .hero-left .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #FFFFFF;
  border: none;
  padding: 10px 52px;
  border-radius: 25px;
  border: 1px solid #000;
  background: #000;
  backdrop-filter: blur(5px);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.hero-section .hero-left .cta-button:hover {
  opacity: 0.85;
}

.hero-section .hero-left .cta-button .arrow-icon {
  font-size: 20px;
}

.hero-section .hero-right {
  flex: 1;
  max-width: 760px;
  position: relative;
  min-height: 720px;
  transition: transform 0.3s ease;
}

.hero-section .hero-right:hover {
  transform: translateY(-4px);
}

.hero-section .hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .hero-section .container {
    flex-direction: column;
    gap: 40px;
  }
  .hero-section .hero-left {
    max-width: 100%;
  }
  .hero-section .hero-left .hero-heading {
    font-size: 36px;
  }
  .hero-section .hero-right .screens-collage {
    height: 320px;
  }
  .hero-section .hero-right .screens-collage .screen-1 {
    width: 280px;
    height: 175px;
    left: 20px;
  }
  .hero-section .hero-right .screens-collage .screen-2 {
    width: 240px;
    height: 150px;
    right: 40px;
  }
  .hero-section .hero-right .screens-collage .screen-3 {
    width: 200px;
    height: 125px;
    left: 80px;
  }
  .hero-section .hero-right .screens-collage .screen-4 {
    width: 220px;
    height: 138px;
    right: 60px;
  }
  .hero-section .hero-right .screens-collage .monthly-badge {
    right: 100px;
    width: 80px;
    height: 80px;
  }
  .hero-section .hero-right .info-card {
    left: 20px;
    width: 300px;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 48px 0;
    min-height: auto;
  }
  .hero-section .container {
    padding: 0 20px;
  }
  .hero-section .hero-left .hero-heading {
    font-size: 28px;
  }
  .hero-section .hero-left .hero-description {
    font-size: 16px;
  }
  .hero-section .hero-right .screens-collage {
    height: 240px;
  }
  .hero-section .hero-right .screens-collage .screen-1,
  .hero-section .hero-right .screens-collage .screen-2,
  .hero-section .hero-right .screens-collage .screen-3,
  .hero-section .hero-right .screens-collage .screen-4 {
    width: 180px;
    height: 112px;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) rotate(0) !important;
  }
  .hero-section .hero-right .screens-collage .screen-1 {
    top: 0;
  }
  .hero-section .hero-right .screens-collage .screen-2 {
    top: 60px;
    margin-left: 60px;
  }
  .hero-section .hero-right .screens-collage .screen-3 {
    top: 120px;
    margin-left: -60px;
  }
  .hero-section .hero-right .screens-collage .screen-4 {
    bottom: 0;
    margin-left: 0;
  }
  .hero-section .hero-right .screens-collage .monthly-badge {
    display: none;
  }
  .hero-section .hero-right .info-card {
    position: relative;
    left: 0;
    width: 100%;
    margin-top: 24px;
  }
}

.features-section {
  background: url(../img/solutions/poss_item5.webp) no-repeat;
  background-size: cover;
  backdrop-filter: blur(3px);
  min-height: 840px;
  padding: 114px 0 145px;
}

.features-section .container .features-header {
  margin-bottom: 60px;
}

.features-section .container .features-header .features-subtitle {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}

.features-section .container .features-header .features-title {
  color: #FFFFFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.features-section .container .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.features-section .container .features-grid .feature-card {
  display: flex;
  flex-direction: column;
}

.features-section .container .features-grid .feature-card .feature-image {
  width: 100%;
  border-radius: 10px;
  height: 320px;
  overflow: hidden;
  margin-bottom: 28px;
}

.features-section .container .features-grid .feature-card .feature-image:hover img {
  transform: scale(1.05);
}

.features-section .container .features-grid .feature-card .feature-image img {
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.features-section .container .features-grid .feature-card .feature-card-title {
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.features-section .container .features-grid .feature-card .feature-card-desc {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
}

@media (max-width: 1024px) {
  .features-section .container .features-header .features-title {
    font-size: 36px;
  }
  .features-section .container .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 0 80px;
  }
  .features-section .container {
    padding: 0 20px;
  }
  .features-section .container .features-header {
    margin-bottom: 48px;
  }
  .features-section .container .features-header .features-title {
    font-size: 28px;
  }
  .features-section .container .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.services-section {
  background-color: #F8F8F8;
  padding: 120px 0 70px;
}

.services-section .container .services-header {
  margin-bottom: 70px;
}

.services-section .container .services-header .services-subtitle {
  color: #656565;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 19px;
}

.services-section .container .services-header .services-title {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}

.services-section .container .services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 100px;
}

.services-section .container .services-cards .service-card {
  border-radius: 10px;
  border: 1px solid #DEDEDE;
  background: linear-gradient(180deg, #F0FDF7 0%, #FFF 100%);
  padding: 46px;
}

.services-section .container .services-cards .service-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: #2BA275;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 72px;
  color: #50BB8C;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.services-section .container .services-cards .service-card .card-title {
  color: #000000;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.services-section .container .services-cards .service-card .card-desc {
  color: #656565;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.services-section .container .plus-section {
  display: flex;
  align-items: center;
  gap: 140px;
}

.services-section .container .plus-section .plus-image-wrap {
  flex: 0 0 830px;
}

.services-section .container .plus-section .plus-image-wrap .plus-screenshot {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.services-section .container .plus-section .plus-text {
  flex: 1;
}

.services-section .container .plus-section .plus-text .plus-subtitle {
  display: block;
  color: #656565;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}

.services-section .container .plus-section .plus-text .plus-title {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.services-section .container .plus-section .plus-text .plus-features {
  list-style: none;
  margin-top: 30px;
}

.services-section .container .plus-section .plus-text .plus-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #111;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 16px;
}

.services-section .container .plus-section .plus-text .plus-features li .check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #F0FDF7;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .services-section .container .services-cards {
    grid-template-columns: 1fr;
  }
  .services-section .container .plus-section {
    flex-direction: column;
    gap: 40px;
  }
  .services-section .container .plus-section .plus-image-wrap {
    flex: none;
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 48px 0 80px;
  }
  .services-section .container {
    padding: 0 20px;
  }
  .services-section .container .services-header .services-title {
    font-size: 28px;
  }
  .services-section .container .services-cards {
    margin-bottom: 60px;
    gap: 24px;
  }
  .services-section .container .plus-section .plus-text .plus-title {
    font-size: 28px;
  }
}

.metrics-section {
  background-color: #F8F8F8;
  padding: 70px 0;
}

.metrics-section .container .metrics-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: url(../img/solutions/poss_item6.webp) no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 72px 100px;
  min-height: 284px;
}

.metrics-section .container .metrics-container .metric-item {
  flex: 1;
  text-align: center;
}

.metrics-section .container .metrics-container .metric-item .metric-number {
  color: #FFFFFF;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}

.metrics-section .container .metrics-container .metric-item .metric-description {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  margin-top: 15px;
}

@media (max-width: 1024px) {
  .metrics-section .container .metrics-container {
    padding: 40px 40px;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }
  .metrics-section .container .metrics-container .metric-separator {
    display: none;
  }
  .metrics-section .container .metrics-container .metric-item {
    flex: 0 0 33%;
  }
  .metrics-section .container .metrics-container .metric-item .metric-number {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .metrics-section {
    padding: 48px 0;
  }
  .metrics-section .container {
    padding: 0 20px;
  }
  .metrics-section .container .metrics-container {
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
  }
  .metrics-section .container .metrics-container .metric-separator {
    display: block;
    width: 60px;
    height: 1px;
  }
  .metrics-section .container .metrics-container .metric-item .metric-number {
    font-size: 40px;
  }
  .metrics-section .container .metrics-container .metric-item .metric-description {
    font-size: 16px;
  }
}

.advantages-section {
  background: #F9FFFC;
  backdrop-filter: blur(3px);
  padding: 70px 0 150px;
}

.advantages-section .advantages-header {
  margin-bottom: 87px;
}

.advantages-section .advantages-header .advantages-label {
  display: block;
  color: #656565;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 19px;
}

.advantages-section .advantages-header .advantages-title {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.advantages-section .advantages-content {
  display: flex;
  align-items: flex-start;
  gap: 125px;
}

.advantages-section .advantages-content .advantages-left {
  flex: 1;
  max-width: 645px;
}

.advantages-section .advantages-content .advantages-left .feature-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.advantages-section .advantages-content .advantages-left .feature-list .feature-item {
  border: 1px solid #CFCFCF;
  border-radius: 10px;
  padding: 27px 47px;
  cursor: pointer;
}

.advantages-section .advantages-content .advantages-left .feature-list .feature-item.feature-item-active {
  background-color: #36B37E;
  cursor: default;
}

.advantages-section .advantages-content .advantages-left .feature-list .feature-item.feature-item-active .feature-title {
  color: #FFFFFF;
}

.advantages-section .advantages-content .advantages-left .feature-list .feature-item.feature-item-active .feature-desc {
  display: block;
}

.advantages-section .advantages-content .advantages-left .feature-list .feature-item .feature-title {
  color: #111;
  font-size: 24px;
  font-weight: 700;
}

.advantages-section .advantages-content .advantages-left .feature-list .feature-item .feature-desc {
  margin-top: 19px;
  display: none;
}

.advantages-section .advantages-content .advantages-left .feature-list .feature-item .feature-desc p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 12px;
}

.advantages-section .advantages-content .advantages-left .feature-list .feature-item .feature-desc p:last-child {
  margin-bottom: 0;
}

.advantages-section .advantages-content .advantages-right {
  flex: 1;
  max-width: 830px;
  height: 580px;
  overflow: hidden;
  border-radius: 10px;
}

.advantages-section .advantages-content .advantages-right:hover .advantages-image {
  transform: scale(1.05);
}

.advantages-section .advantages-content .advantages-right .advantages-image {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .advantages-section .container {
    flex-direction: column;
    gap: 40px;
  }
  .advantages-section .container .advantages-left,
  .advantages-section .container .advantages-right {
    max-width: 100%;
  }
  .advantages-section .container .advantages-left .advantages-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .advantages-section {
    padding: 60px 0;
  }
  .advantages-section .container {
    padding: 0 20px;
  }
  .advantages-section .container .advantages-left .advantages-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

.cta-banner-section {
  background-color: #fff;
}

.cta-banner-section .container {
  width: 100%;
  height: 478px;
  background: url(../img/solutions/poss_item8.webp) no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 77px;
  background-color: #FFFFFF;
  padding: 48px 178px;
}

.cta-banner-section .container .cta-banner-text {
  flex: 1;
  width: 1027px;
  position: relative;
}

.cta-banner-section .container .cta-banner-text::after {
  content: "";
  position: absolute;
  left: 0;
  width: 170px;
  bottom: 75px;
  z-index: 0;
  border-radius: 20px;
  height: 12px;
  background-color: #00efa9;
  transform: rotate(-6deg);
}

.cta-banner-section .container .cta-banner-text .cta-heading {
  position: relative;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.7;
  z-index: 1;
}

.cta-banner-section .container .cta-banner-text .cta-heading .highlight-text {
  position: relative;
  display: inline;
}

.cta-banner-section .container .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #FFFFFF;
  border: none;
  padding: 10px 23px;
  border-radius: 25px;
  background: #000;
  backdrop-filter: blur(5px);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  cursor: pointer;
  flex-shrink: 0;
}

.cta-banner-section .container .cta-button .cta-arrow {
  font-size: 18px;
}

@media (max-width: 768px) {
  .cta-banner-section {
    padding: 40px 20px;
  }
  .cta-banner-section .container {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    text-align: center;
  }
  .cta-banner-section .container .cta-banner-text .cta-heading {
    font-size: 22px;
  }
  .cta-banner-section .container .cta-banner-text .cta-subheading {
    font-size: 16px;
  }
}

.case-section {
  padding: 25px 0 70px;
}

.case-section .container .case-item {
  display: flex;
  gap: 209px;
}

.case-section .container .case-item .case-left {
  flex: 1;
  max-width: 650px;
}

.case-section .container .case-item .case-left .case-label {
  padding-top: 50px;
  display: block;
  color: #656565;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.case-section .container .case-item .case-left .case-title {
  color: #111;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 33px;
}

.case-section .container .case-item .case-left .case-description {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 60px;
}

.case-section .container .case-item .case-left .case-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #FFFFFF;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  background: #000;
  backdrop-filter: blur(5px);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  cursor: pointer;
}

.case-section .container .case-item .case-right {
  flex: 1;
  max-width: 740px;
  position: relative;
  min-height: 700px;
}

.case-section .container .case-item .case-right .mockup-wrap {
  position: relative;
  width: 100%;
  height: 700px;
}

.case-section .container .case-item .case-right .mockup-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.case-section .container .swiper-button-prev {
  width: 44px;
  height: 44px;
  position: absolute;
  left: 0;
  top: unset;
  bottom: 20px;
}

.case-section .container .swiper-button-prev::after {
  content: '';
}

.case-section .container .swiper-button-prev img {
  width: 100%;
  height: 100%;
}

.case-section .container .swiper-button-next {
  width: 44px;
  height: 44px;
  position: absolute;
  left: 64px;
  top: unset;
  right: unset;
  bottom: 20px;
}

.case-section .container .swiper-button-next::after {
  content: '';
}

.case-section .container .swiper-button-next img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .case-section .container {
    flex-direction: column;
    gap: 40px;
  }
  .case-section .container .case-left,
  .case-section .container .case-right {
    max-width: 100%;
  }
  .case-section .container .case-left .case-title {
    font-size: 28px;
  }
  .case-section .container .case-right .mockup-wrap {
    height: 320px;
  }
  .case-section .container .case-right .mockup-wrap .mockup-hero {
    width: 350px;
    height: 224px;
    right: 20px;
  }
  .case-section .container .case-right .mockup-wrap .mockup-product {
    width: 280px;
    height: 206px;
    left: 0;
  }
  .case-section .container .case-right .mockup-wrap .mockup-grid {
    width: 300px;
    height: 195px;
  }
}

@media (max-width: 768px) {
  .case-section {
    padding: 60px 0;
  }
  .case-section .container {
    padding: 0 20px;
  }
  .case-section .container .case-left .case-title {
    font-size: 24px;
  }
  .case-section .container .case-right {
    min-height: 300px;
  }
  .case-section .container .case-right .mockup-wrap {
    height: 240px;
  }
  .case-section .container .case-right .mockup-wrap .mockup-hero,
  .case-section .container .case-right .mockup-wrap .mockup-product,
  .case-section .container .case-right .mockup-wrap .mockup-grid {
    width: 200px;
    height: auto;
    min-height: 130px;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
  .case-section .container .case-right .mockup-wrap .mockup-hero {
    top: 0;
  }
  .case-section .container .case-right .mockup-wrap .mockup-product {
    top: 50px;
    margin-left: 40px;
  }
  .case-section .container .case-right .mockup-wrap .mockup-grid {
    bottom: 0;
    margin-left: -40px;
  }
}

.templates-section {
  padding: 100px 0 50px;
}

.templates-section .container .templates-header {
  text-align: center;
  margin-bottom: 76px;
}

.templates-section .container .templates-header .templates-label {
  display: block;
  color: #656565;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 19px;
}

.templates-section .container .templates-header .templates-title {
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}

.templates-section .templates-grid {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(1fr, 1fr);
  gap: 26px;
}

.templates-section .templates-grid .template-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background-color: #FFFFFF;
  transition: transform 0.2s, box-shadow 0.2s;
}

.templates-section .templates-grid .template-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.templates-section .templates-grid .template-card .card-image {
  width: 100%;
  aspect-ratio: 520 / 380;
  overflow: hidden;
}

.templates-section .templates-grid .template-card .card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .templates-section .container .templates-header .templates-title {
    font-size: 32px;
  }
  .templates-section .container .templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .templates-section {
    padding: 60px 0 80px;
  }
  .templates-section .container {
    padding: 0 20px;
  }
  .templates-section .container .templates-header .templates-title {
    font-size: 28px;
  }
  .templates-section .container .templates-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
