/* CSS for section section:header */
.site-header {
  position: sticky;
  top: 0;
  padding: 1rem 0;
  /* top: 2.5rem; */
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  padding-inline: 4rem;

  background-color: #ffffff9b;
  backdrop-filter: blur(25px);
}

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

.header-left {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
}

.logo-text-highlight {
  color: var(--primary-color);
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  transition: color 0.3s;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-color);
}

.btn.btn-outline {
  border: 1.5px solid var(--primary-color);
  border-radius: 50px;
  padding: 11px 2.5rem;
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color);
  background-color: transparent;
  transition: all 0.3s;
}

.btn.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* CSS for section section:hero */
.hero-section {
  background-color: var(--white);
  /* Space for header */
  margin-top: -84px;
  min-height: 850px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-left: 4rem;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text-content {
  flex: 0 0 556px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-self: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 4.5rem;
  color: var(--text-dark);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  max-width: 380px;
}

.btn {
  display: flex;
  justify-content: center;
  width: 100%;
  /* display: inline-block; */
  text-align: left;
  border-radius: 1500px;
  padding: 1.5rem 3rem;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s;
  /* width: 380px; */
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.hero-image-content {
  flex: 1;
  background-color: var(--primary-bg);
  height: 850px;
  border-radius: 0 0 0 100px;
  position: relative;
  margin-right: calc((-100vw + 900px)/2);
  /* padding-right: calc((100vw - 1024px)/2); */
}

.alt-hero-image-content {
  display: none;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: clip;

  .hero-shape {
    position: absolute;
    min-width: 400px;
    max-width: 800px;
  }

  .shape-1 {
    transform: scale(1.2);
    top: -100px;
    left: -100px;
  }

  .shape-2 {
    transform: scale(1.6);
    bottom: -120px;
    right: -110px;
  }
}

.hero-image-composition {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  .phone-wrapper {
    position: absolute;
    min-width: 685px;
    height: 685px;
    left: 60px;
  }

}

@media (max-width:1600px) {
  .hero-image-composition {
    transform: scale(0.8);

    .phone-wrapper {
      left: 0;
    }

  }

  .cta-buttons {
    .btn {
      min-width: 300px;
    }
  }

}

@media (max-width:1280px) {
  .hero-image-composition {
    transform: scale(0.7) !important;

    .phone-wrapper {
      left: -60px;
    }
  }

  .step-item:not(.step-item-reverse) .step-image-wrapper {
    margin-left: calc((-100vw + 900px) / 2) !important;
  }

  div.step-item-reverse .step-image-wrapper {
    margin-right: 0;
  }

}

.hero-phone-mockup {
  position: absolute;
  top: 0;
  left: 124px;
  width: 385px;
  aspect-ratio: 385/724;
}

@keyframes gentleBounce {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.01);
  }
}

@keyframes lightBounce {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

.chip {
  position: absolute;
  background-color: var(--white);
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 12px 1rem;
  box-shadow: 0px 10px 2.5rem rgba(178, 133, 97, 0.315);
  transition: all 0.3s ease;
}

.chip-highlight {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 15px;
  padding: 7px 20px;
  font-size: 1.5rem;
  font-weight: 600;
}

.swing-animate-1 {
  animation: lightBounce 4s ease-in-out infinite;
}

.swing-animate-2 {
  animation: lightBounce 4.5s ease-in-out infinite;
}

.swing-animate-3 {
  animation: lightBounce 5s ease-in-out infinite;
}

.chip-trial {
  top: 82px;
  left: 12px;
  gap: 1rem;
  animation: gentleBounce 3s ease-in-out infinite;
}

.chip-trial span {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 500;
}

.chip-profit {
  top: 404px;
  left: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 1.5rem;

  animation: gentleBounce 3.2s ease-in-out infinite;
}

.chip-profit .sub {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 8px;
}

.chip-profit span.chip-main-text {
  color: var(--primary-color);
  font-size: 3rem;
  font-weight: 600;
}

.chip-install {
  top: 286px;
  left: 350px;
  gap: 1rem;
  animation: gentleBounce 2.7s ease-in-out infinite;
}

.chip-install span {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 500;
}



/* CSS for section section:features */
.features-section {
  padding: 100px 4rem;
}

.features-section .container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.features-grid {
  display: grid;
  align-items: start;
  grid-auto-flow: column;
  gap: 2.5rem;
}

.feature-card {
  display: grid;
  gap: 2.5rem;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.feature-icon-wrapper {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background-color: var(--primary-bg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon {
  width: 84px;
  height: 84px;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 36px;
}


/* CSS for section section:how-it-works */
.how-it-works-section {
  padding: 100px 0;
}

.how-it-works-section .container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 150px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 120px;
}

.step-item .step-text-wrapper {
  padding-right: 4rem;
}

.step-item.step-item-reverse .step-text-wrapper {
  padding-right: 0;
}

.step-item-reverse {
  flex-direction: row-reverse;
}

.step-image-wrapper,
.step-text-wrapper {
  flex: 1;
}

.step-item:not(.step-item-reverse) .step-image-wrapper {
  margin-left: calc((-100vw + 1240px) / 2);
}

.step-item-reverse .step-image-wrapper {
  margin-right: calc((-100vw + 1240px) / 2);
}

.step-image-bg {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: var(--primary-bg);
  overflow: clip;
  box-shadow: 0px 10px 20px rgba(198, 152, 114, 0.15);

  .hero-bg-shapes {
    .shape-1 {
      transform: scale(1);
      opacity: .6;
    }

    .shape-2 {
      transform: scale(1.3);
    }
  }
}

.step-item-reverse .step-image-wrapper {
  display: flex;
  justify-content: flex-end;
}

.step-item-reverse .step-text-wrapper {
  padding-left: 4rem;
}

.step-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 540px;
}

.step-number {
  max-width: 100px;
  max-height: 100px;
  width: 100%;
  border-radius: 50%;
  background-color: var(--primary-bg);
  color: var(--primary-color);
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

.step-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}



/* CSS for section section:cta */
.cta-section {
  padding: 100px 0;
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.cta-block {
  background-color: var(--primary-light);
  border-radius: 50px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;

  .shape-1 {
    top: 8%;
    left: -25%;
    width: 834px;
  }

  .shape-2 {
    top: -40%;
    left: 60%;
    width: 834px;
  }

  .shape-3 {
    width: 404px;
    left: -10%;
    top: -30%;
  }

  .shape-4 {
    bottom: -50%;
    right: -20%;
    width: 450px;
  }

}

.cta-shape {
  position: absolute;
  opacity: 0.7;

}



.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.cta-text-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 60px;
  color: var(--white);
  flex: 1;
}

.cta-bonus-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-bonus-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-bonus-highlight {
  background-color: var(--white);
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 600;
  padding: 4px 1.5rem;
  border-radius: 15px;
}

.cta-bonus-text {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
}

.cta-buttons {
  display: flex;
  gap: 67px;
}

.btn.cta-btn-light {
  background-color: var(--white);
  color: var(--primary-light);
  padding: 1.5rem 4.5rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.btn.cta-btn-dark {
  background-color: var(--primary-light);
  color: var(--white);
  border: 2px solid var(--white);
  padding: 1.5rem 4rem;
  font-size: 1.5rem;
}

.install-guide {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.install-qr {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.qr-code-img {
  max-width: 460px;
  max-height: 460px;
}

.install-icons {
  display: flex;
  gap: 44px;
  justify-content: center;
}

.install-icon-bg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary-bg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.install-steps {
  flex: 1;
  margin-top: 2.5rem;
  align-self: start;
}

.steps-list {
  list-style: decimal;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
}

.steps-list li span {
  color: var(--primary-color);
  font-weight: 700;
}




/* CSS for section section:reviews */
.reviews-section {
  padding: 100px 0;
  overflow: hidden;
}

.reviews-container {
  display: flex;
  align-items: center;
  gap: 120px;
  padding-inline: 4rem;
}



.review-image-wrapper {
  flex: 0 0 684px;
}

.review-image-bg {
  width: 700px;
  height: 658px;
  background-image: url('images/555_277.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

.review-image-merger {
  position: absolute;
  top: 21px;
  left: 0;
  width: 100%;
  height: 100%;
}

.review-image-merger img {
  position: absolute;
}

.t-img-1 {
  top: 0;
  left: 323px;
  width: 267px;
}

.t-img-2 {
  top: 197px;
  left: 474px;
  width: 209px;
  border-radius: 100px;
}

.t-img-3 {
  top: 102px;
  left: 275px;
  width: 104px;
  border-radius: 100px;
}

.t-img-4 {
  top: 213px;
  left: 104px;
  width: 131px;
  border-radius: 100px;
}

.t-img-5 {
  top: 359px;
  left: 275px;
  width: 157px;
  border-radius: 100px;
}

.review-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.quote-icon {
  width: 118px;
  height: 65px;
}

.review-cards {
  display: flex;
  gap: 2rem;
}

.review-card {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
}

.review-user {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
}

.user-photo {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.user-location {
  font-size: 14px;
  color: var(--text-light);
}

.review-text {
  max-width: 520px;
  font-size: clamp(0.75rem, 0.62rem + 0.61vw, 1rem);

  p {
    padding-bottom: 1rem;
    color: var(--text-light);
  }
}

.slider-controls {
  margin-top: 47px;
  display: flex;
  gap: 2rem;
  align-self: end;
}

.slider-arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.slider-arrow img {
  width: 4rem;
  height: 4rem;
}


.review-rating {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stars {
  color: #FFD700;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.review-date {
  color: var(--text-light);
  font-size: 0.875rem;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.user-name {
  font-size: 1.125rem;
  font-weight: 600;
}

.user-location {
  font-size: 0.875rem;
  color: var(--text-light);
}



/* CSS for section section:faq */
.faq-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.faq-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}

.accordion-container {
  width: 100%;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
}

.accordion-item[open] {
  padding-bottom: 2.5rem;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  list-style: none;
}

.accordion-header::-webkit-details-marker {
  display: none;
}

.chevron {
  width: 12px;
  transition: transform 0.3s ease;
}


.accordion-content {
  /* space for icon */
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 300;

  p {
    max-width: unset !important;
  }
}

/* CSS for section section:footer */
.site-footer {
  padding: 4rem 5rem;
  background-color: var(--white);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 62px;
}

.footer-info {
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  gap: 22px;
}

.footer-logo-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
}

.footer-logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--text-dark);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  gap: 62px;
  padding-top: 1.5rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
}

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

.footer-list a {
  font-size: 18px;
  line-height: 36px;
  color: var(--text-light);
}

.footer-list a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 2rem;


  a {
    width: 36px;
    height: 36px;
  }

}

.footer-contacts a {
  transition: color .3s;
}

.footer-contacts a:hover {
  color: var(--primary-color);
}


.social-icons svg,
.social-icons svg path {
  width: 36px;
  height: 36px;
  color: var(--primary-color);
  transition: color .3s, fill .3s;
}

.social-icons a:hover {
  color: var(--primary-light);

  svg,
  svg path {
    color: var(--primary-light);
    fill: var(--primary-light);
  }
}

.step-item:not(.step-item-reverse) .step-image-bg {
  border-radius: 0 5rem 5rem 0;
}

.step-item.step-item-reverse .step-image-bg {
  border-radius: 5rem 0 0 5rem;
}

.step-image-merger {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;

  .screen-1 {
    position: absolute;
    top: -50px;
    right: 300px;
    /* width: 350px; */
    height: 130%;
    transform: rotate(-15deg);
  }

  .screen-2 {
    position: absolute;
    top: -20px;
    right: 2.5rem;
    /* width: 350px; */
    height: 130%;
    transform: rotate(-15deg);
  }

  .screen-3 {
    position: absolute;
    top: -200px;
    left: 15%;
    width: 320px;
  }

  .screen-4 {
    position: absolute;
    top: 130px;
    right: 280px;
    height: 140%;
  }

  .screen-5 {
    position: absolute;
    top: 2.5rem;
    right: 50px;
    height: 140%;
  }

  .screen-6 {
    position: absolute;
    top: 5rem;
    left: 20px;
    height: 140%;
  }

  .screen-7 {
    position: absolute;
    top: 30px;
    left: 260px;
    height: 150%;
  }

  .screen-8 {
    position: absolute;
    top: -450px;
    right: 60px;
    height: 190%;
  }
}


.accordion-container {
  border-radius: 12px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  user-select: none;
  background-color: white;
  position: relative;
  z-index: 2;
}

.accordion-header:hover {
  background-color: #f8f9fa;
}


.accordion-item.active .accordion-header::after {
  width: 100%;
}

.chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  color: var(--primary-color);
}

.accordion-item.active .chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  background-color: white;
  position: relative;
  z-index: 1;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding: 0 0 1.5rem 2rem;
  color: #555;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.accordion-item.active .accordion-content p {
  opacity: 1;
  transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .accordion-header {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }

  .accordion-content p {
    padding: 0 1.5rem 1.2rem;
  }
}

/* Дополнительные стили для визуального улучшения */
.info-text {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-size: 0.9rem;
}


/* ======================== */
/* MEDIA QUERIES */


@media (max-width: 1200px) {
  .main-nav .hiddable {
    display: none;
  }

  .site-header {
    padding-inline: 0;
  }

  .hero-section {
    padding-left: 0;
  }

  .step-item {
    gap: 100px;
  }

  .step-image-bg {
    width: 100%;
    height: 500px;
  }

  .hero-text-content {
    flex-basis: 45%;
  }

  .hero-image-composition {
    .phone-wrapper {
      position: relative;
      min-width: 685px;
      height: 685px;
      left: -40px;
    }
  }

  .reviews-container {
    gap: 2.5rem;
  }

  .review-image-wrapper {
    flex-basis: 50%;
  }

  .review-image-bg {
    transform: scale(0.8);
    transform-origin: center left;
  }
}

@media (max-width: 1024px) {

  .hero-section {
    padding-top: 6rem;

    .hero-container {
      padding-inline: 2rem;
    }
  }

  .features-section {
    padding: 60px 0;
  }

  .features-section .container {
    gap: 2.5rem;
    align-items: center;
    padding-inline: 1rem;
  }

  .features-grid {
    grid-auto-flow: row;
    align-items: center;
    gap: 50px;
    max-width: 500px;
  }

  .feature-card {
    align-items: center;
    text-align: center;
    place-items: center;
  }

  .step-item .step-text-wrapper {
    flex-direction: row;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: clamp(0rem, -3.389rem + 15.06vw, 6.25rem);
  }

  .hero-text-content {
    gap: 2rem;
    align-items: center;
  }

  .hero-title {
    margin-top: 4rem;
    font-size: clamp(2rem, 1.503rem + 2.34vw, 3rem);
    line-height: 1.2;
  }

  .hero-image-content {
    height: 850px;
    width: 100%;
    border-radius: 50px;
    margin-right: 0;
    padding-right: 0;
    display: none;
  }

  .alt-hero-image-content {
    display: flex;
    justify-content: center;
    width: clamp(17.5rem, 13.942rem + 15.81vw, 24.063rem);
    height: clamp(31.25rem, 24.473rem + 30.12vw, 43.75rem);

    .phone-wrapper {
      position: relative;
      width: 100%;
      /* aspect-ratio: 385/724; */
      display: flex;
      justify-content: center;
      align-items: center;

      .hero-phone-mockup {
        position: relative;
        left: unset;
        width: clamp(12.5rem, 6.753rem + 27.05vw, 24.063rem);
        height: fit-content;
      }

      .chip {
        gap: clamp(0.5rem, 0.229rem + 1.2vw, 1rem);
        border-radius: clamp(0.938rem, 0.599rem + 1.51vw, 1.563rem);
        padding: clamp(0.5rem, 0.364rem + 0.6vw, 0.75rem) clamp(0.625rem, 0.422rem + 0.9vw, 1rem);
      }

      .chip-trial {
        left: clamp(-2.5rem, 0.211rem + -12.05vw, -7.5rem);
      }

      .chip-profit {
        left: clamp(-1.25rem, 0.105rem + -6.02vw, -3.75rem);
        top: clamp(15rem, 8.3rem + 24.1vw, 23.75rem);
      }

      .chip-install {
        top: clamp(12.5rem, 9.586rem + 12.95vw, 17.875rem);
        left: clamp(9rem, 5.611rem + 15.06vw, 15.25rem);
      }

      .chip-highlight,
      .chip-header .sub,
      .chip-trial span,
      .chip-install span {
        font-size: clamp(0.875rem, 0.536rem + 1.51vw, 1.5rem);
      }

      .chip-main-text {
        font-size: clamp(1.5rem, 0.687rem + 3.61vw, 3rem);
      }

    }
  }


  .main-nav {
    display: none;
    /* Hide nav for simplicity on smaller screens */
  }

  .header-left {
    gap: 20px;
  }


  .install-icons {
    display: flex;
    justify-content: space-around;
  }

  .cta-buttons {
    gap: 20px;
    width: 100%;
  }

  .install-guide {
    flex-direction: column;
    gap: 5rem;
  }

  .install-steps {
    text-align: left;
    max-width: 480px;
    align-self: center;
  }

  .steps-list {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 3rem;
    line-height: 1.2;
  }

  .cta-bonus-highlight,
  .cta-bonus-text {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .site-footer {
    padding: 4rem 0;
  }

  .footer-logo-text {
    font-size: 1.5rem;
  }

  .step-item:not(.step-item-reverse) .step-image-wrapper {
    margin-left: 0 !important;
  }

  .step-image-merger .screen-3 {
    position: absolute;
    top: -270px;
    left: 25%;
    width: 320px;
  }

  .step-image-bg {
    display: flex;
    justify-content: center;

    .step-image-merger {
      width: 620px;
    }
  }


  div.step-item:not(.step-item-reverse) .step-image-wrapper {

    margin-left: 0;

    .step-image-bg {
      border-radius: 0;
    }
  }

  div.step-item-reverse .step-image-wrapper {
    margin-right: 0;

    .step-image-bg {
      border-radius: 0;
    }
  }


  .steps-container {
    gap: 100px;
  }

  .step-item,
  .step-item-reverse {
    flex-direction: column;
    gap: 60px;
  }

  .step-text-wrapper {
    align-items: start;
    text-align: start;
    max-width: 600px;
  }

  .step-image-wrapper {
    width: 100%;
  }

  .step-image-bg {
    /* border-radius: 50px !important; */
    height: 400px;
  }

  .step-item-reverse .step-image-wrapper {
    justify-content: center;
  }

  .reviews-container {
    flex-direction: column;
    padding-inline: 64px;
  }

  .review-content-wrapper {
    align-items: start;
    text-align: left;
  }

  .review-image-bg {
    transform: scale(0.7);
    transform-origin: center;
  }

  .footer-container {
    flex-direction: row;
    align-items: start;
    text-align: left;
    padding-inline: 3rem;
  }

  .footer-info {
    align-items: start;
  }

  .footer-links {
    flex-direction: row;
    align-items: start;
  }

  .footer-column {
    align-items: start;
    min-width: 160px;
  }
}


@media (max-width: 768px) {
  .step-image-merger {
    .screen-3 {
      left: clamp(0.938rem, -6.262rem + 33.88vw, 10rem);
    }

    .screen-4 {
      left: clamp(-0.625rem, -2.114rem + 7.01vw, 1.25rem);
    }

    .screen-5 {
      left: clamp(6.25rem, -0.8rem + 33.18vw, 15.125rem);
    }

    .screen-6 {
      right: clamp(7.5rem, -0.444rem + 37.38vw, 17.5rem);
    }

    .screen-7 {
      right: clamp(0rem, -2.731rem + 12.85vw, 3.438rem);
    }

    .screen-8 {
      left: clamp(0rem, -5.958rem + 28.04vw, 7.5rem);
      top: -350px;
    }
  }

  .faq-section {
    padding: 60px 0;
  }

  .accordion-header {
    font-size: 18px;
  }

  .accordion-content {
    font-size: 1rem;
    padding-left: 10px;


  }

  .accordion-item {
    padding: 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
    margin-inline: auto;

    .footer-links {
      width: 100%;
      max-width: 440px;
    }
  }

  .review-image-wrapper {
    display: none;
  }


  .install-guide {
    display: none;
  }

  .cta-block {
    padding: 3rem 2rem;
  }

  .cta-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .cta-bonus-highlight,
  .cta-bonus-text {
    font-size: 1.5rem;
  }

  .qr-code-img {
    width: 80%;
    max-width: 300px;
    height: auto;
  }

  .install-icon-bg {
    width: 70px;
    height: 70px;
  }

  .install-icon-bg img {
    transform: scale(0.8);
  }

  .steps-list {
    font-size: 1.5rem;
  }




  .hero-section {
    padding-top: 100px;
    padding-bottom: 2.5rem;
    min-height: auto;
  }

  .btn {
    width: 100%;
    max-width: 380px;
  }

  .hero-image-content {
    display: none;
  }
}


@media (max-width:648px) {

  .cta-section {
    padding: 50px 0;
  }

  .btn.cta-btn-light,
  .btn.btn.cta-btn-dark {
    padding: 1rem 3rem;
  }

  .review-cards {
    flex-direction: column;
  }

  .review-content-wrapper.review-cards {
    flex-direction: column;
  }

  .step-image-bg {
    height: 350px;

    .step-image-merger {
      .screen-1 {
        right: 50%;
        transform: scale(.7);
      }

      .screen-2 {
        right: 10%;
        transform: scale(.7);
      }

      .screen-3 {
        top: -320px;
      }
    }
  }

  .step-item-reverse .step-image-bg {
    border-radius: 60px 0 0 60px;
  }

  .step-number {
    font-size: 2rem;
    max-width: 4rem;
    max-height: 4rem;
  }

  .step-title {
    font-size: 1.5rem;
  }

  .step-text-wrapper {
    gap: 2rem;
  }

  .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .header-right .btn.btn-outline {
    font-size: 14px;
    padding: 6px 1rem;
  }


  .container.reviews-container {
    padding-inline: 2rem;

    .section-title {
      text-align: left;
    }
  }

  .step-item .step-text-wrapper {
    flex-direction: column;
    padding-inline: 2rem;
  }


  .btn {
    padding: 1rem 1.5rem;
  }

  .cta-block {
    padding: 4rem;
  }

  .cta-buttons {
    flex-direction: column;

    .btn {
      max-width: 100%;
      min-width: 150px;
    }
  }

  .cta-text-grid {
    flex-direction: column;
  }

  .cta-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .cta-bonus-highlight,
  .cta-bonus-text {
    font-size: 1.5rem;
  }

  .cta-text-grid {
    gap: 0;
  }

  .footer-links {
    gap: 1rem;
  }

}


@media (max-width:480px) {




  [class$="-section"] {
    padding: 5rem 0;
  }



  .cta-block {
    padding: 2rem;
  }

  .cta-bonus-highlight {
    padding: 4px 1rem;
  }

  .cta-bonus-item {
    gap: 8px;
  }

  .cta-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .cta-bonus-highlight,
  .cta-bonus-text {
    font-size: 20px;
  }

  .cta-buttons {
    .btn {
      font-size: 20px;
      padding: 1rem 2rem;
    }
  }

  .hero-buttons {
    .btn {
      font-size: 1rem;
    }
  }

  .footer-logo-icon {
    width: 4rem;
    height: 4rem;
  }

  .footer-logo-text {
    font-size: 1.5rem;
  }

  .footer-container {
    gap: 2rem;
  }


}