body {
  background-color: #ffffff;
}

/* Header — floating rounded pill on load, flush full-width once past the hero (desktop only) */

@media (min-width: 991px) {
  body {
    background-image: linear-gradient(#f4f8ff, #f4f8ff);
    background-repeat: no-repeat;
    background-size: 100% 90px;
  }

  header {
    top: 20px;
    margin: 0 auto;
    width: calc(100% - 32px);
    max-width: 1200px;
    border-radius: 18px;
    border-bottom-color: transparent;
    box-shadow: 0 10px 30px rgba(11, 11, 11, 0.08);
    transition: top 0.35s ease, width 0.35s ease, max-width 0.35s ease, border-radius 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  header::before {
    border-radius: inherit;
  }

  header .container {
    max-width: 100%;
  }

  body.header-past-hero header {
    top: 0;
    margin: 0 auto;
    width: 100%;
    max-width: none;
    border-radius: 0;
    border-bottom-color: #ececec;
    box-shadow: none;
  }
}

/* Hero */

.hero-main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f8ff 0%, #eef4fd 55%, #ffffff 100%);
}

.hero-main::before,
.hero-main::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-main::before {
  width: 420px;
  height: 420px;
  top: -20px;
  right: 4%;
  background: radial-gradient(circle, rgba(0, 84, 166, 0.16) 0%, rgba(0, 84, 166, 0) 70%);
}

.hero-main::after {
  width: 320px;
  height: 320px;
  bottom: -20px;
  left: 2%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.13) 0%, rgba(255, 106, 0, 0) 70%);
}

.hero-main .container {
  position: relative;
  z-index: 1;
}

/* Hero Content */

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto 40px;
  gap: 10px;
  padding-top: 30px;
}

.logo-box-mob {
  display: none;
}

.logo-container-mob {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  /* gap: 20%; */
  width: 80%;
  margin: 0 auto;
}

.hero-content .logo-box-mob img {
  max-width: 30%;
  width: 48px;
}

.logo-box-mob .bottom-one {
  margin-top: 70px;
}

.logo-box-mob .top-one {
  margin-bottom: 0px;
}

.logo-box-mob .bottom-two {
  margin-bottom: 50px;
}

.logo-box-mob .top-two {
  margin-bottom: 60px;
}

/* ******************* */
/* Content */

.hero-main .hero-content .hero-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content .hero-desc .text {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.hero-content .hero-desc .hero-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto 30px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--gray-400);
  box-shadow: 0 2px 6px rgba(11, 11, 11, 0.06);
  transition: border-color 200ms ease;
}

.hero-content .hero-desc .hero-proof-badge:hover {
  border-color: #1f7a52;
}

@media (min-width: 991px) {
  .hero-content .hero-desc .hero-proof-badge {
    margin-top: 20px;
  }
}

.hero-content .hero-desc .hero-proof-badge-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f7a52;
  flex-shrink: 0;
}

.hero-content .hero-desc .hero-proof-badge-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #1f7a52;
  animation: proof-badge-pulse 1.8s ease-out infinite;
}

@keyframes proof-badge-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

.hero-content .hero-desc .hero-proof-badge p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  color: var(--gray-650);
}

.hero-content .hero-desc .hero-proof-badge p strong {
  font-weight: 700;
  color: var(--black);
}

.hero-content .hero-desc .hero-proof-badge-text-mobile {
  display: none;
}

.hero-content .hero-desc h1 {
  font-size: 57px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin-bottom: 16px;
}

.hero-content .hero-desc p {
  font-size: 20px;
  font-weight: 300;
  color: rgb(11, 11, 11);
  text-align: center;
}

@media (min-width: 991px) {
  .hero-content .hero-desc .text {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
    padding-right: 100px;
  }

  .hero-content .hero-desc h1 {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content .hero-desc > .text > p.fade-in-bottom {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.hero-content .hero-desc .hero-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

.hero-content .hero-desc .hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 44px;
}

.hero-content .hero-desc .hero-benefits p {
  color: black;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  position: relative;
}

.hero-content .hero-desc .hero-benefits p::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -28px;
  height: 24px;
  width: 24px;
  background-repeat: no-repeat;
}

.hero-content .hero-desc .hero-benefits .check-trail::before {
  background-image: url(../images/icons/circle-check.svg);
}

.hero-content .hero-desc .hero-benefits .check-trail-dark::before {
  background-image: url(../images/icons/circle-check-black.svg);
}

.hero-content .hero-desc .hero-benefits .credit::before {
  background-image: url(../images/icons/credit-card.svg);
}

.hero-content .hero-desc .hero-benefits .cancel-anytime::before {
  background-image: url(../images/icons/cancel-anytime.svg);
}

.hero-content .hero-desc .hero-benefits .support-migration::before {
  background-image: url(../images/icons/support-migration.svg);
}

/* ****************************** */
/* ****** Banner Dashboard ****** */
/* ****************************** */

.banner-dashboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.banner-dashboard img {
  display: block;
  max-width: 100%;
  height: auto;
}

.banner-dashboard-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.banner-dashboard-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--gray-400);
  box-shadow: 0 2px 6px rgba(11, 11, 11, 0.06);
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  white-space: nowrap;
}

.banner-dashboard-tag img {
  width: 16px;
  height: 16px;
}

.banner-dashboard .main-banner-image {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 60px -20px rgba(11, 11, 11, 0.25);
}

.banner-dashboard .main-banner-image img {
  border-radius: inherit;
}

.banner-dashboard .main-banner-media {
  opacity: 1;
  transition: opacity 280ms ease;
}

.main-banner-window-bar + picture .main-banner-media {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.banner-dashboard .main-banner-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid var(--gray-400);
  pointer-events: none;
  z-index: 1;
}

.main-banner-window-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 16px;
  background: var(--blue-200);
  border-bottom: 1px solid var(--gray-400);
}

.main-banner-window-dots {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.main-banner-window-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.main-banner-window-dots .dot-red {
  background: #ff5f57;
}

.main-banner-window-dots .dot-yellow {
  background: #febc2e;
}

.main-banner-window-dots .dot-green {
  background: #28c840;
}

.main-banner-window-url {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.main-banner-window-url span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  padding: 4px 16px;
  border-radius: 7px;
  background: var(--white);
  border: 1px solid var(--gray-400);
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-banner-window-url svg {
  width: 13px;
  height: 13px;
  color: var(--gray-500);
  flex-shrink: 0;
}

/* LOOP */

.scroll-text {
  color: var(--white);
  white-space: nowrap;
  overflow-wrap: normal;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.loop-wrap {
  background-color: var(--new-blue);
  margin-bottom: 32px;
  padding: 32px 0;
  overflow: hidden;
}

.loop-wrap_content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 3vw;
  gap: 16px;
}

.loop-w {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 16px;
}

.icon-star {
  width: 28px;
}

/* COUNTER */

.counter-container {
  margin-bottom: 56px;
}

.counter-container.fade-in-bottom {
  opacity: 1;
}

.counter-container.fade-in-bottom.show {
  animation: none;
}

.counter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  width: 100%;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-item .counter-percentage {
  position: relative;
  font-weight: 500;
  font-size: 60px;
  color: var(--black);
  line-height: 1.2;
}

.counter-item .counter-percentage::before {
  position: absolute;
  content: "";
  background-image: url(../images/icons/arrow-up.svg);
  right: 55%;
  top: 8%;
  width: 80%;
  height: 80%;
  background-size: contain;
  background-repeat: no-repeat;
}

.counter-item .counter-text {
  text-align: center;
  margin-right: 24px;
  line-height: 1.4;
  font-size: 19px;
}

/* *********************** */
/* ******** BANNER ******* */
/* *********************** */

.banner {
  display: none;
  position: fixed;
  bottom: 0;
  background-color: white;
  width: 100vw;
  z-index: 5;
}

.banner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 16px;
}

.banner-item div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.banner-item p {
  position: relative;
  color: #3e3e59;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-left: 28px;
}

.banner-item p::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -28px;
  height: 24px;
  width: 24px;
  background-repeat: no-repeat;
}

.banner-item .check-trail::before {
  background-image: url(../images/icons/circle-check.svg);
}

.banner-item .check-trail-dark::before {
  background-image: url(../images/icons/circle-check-black.svg);
}

.banner-item .credit::before {
  background-image: url(../images/icons/credit-card.svg);
}

.banner-item .cancel-anytime::before {
  background-image: url(../images/icons/cancel-anytime.svg);
}

.banner-item .support-migration::before {
  background-image: url(../images/icons/support-migration.svg);
}

/* *********************** */
/* ****** FEATURE CARD ****** */
/* *********************** */

.feature-section .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 96px;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  margin: 0 auto;
  background-color: var(--blue-100);
  border: 1px #000;
  border-radius: 20px;
  /* align-items: stretch; */
  overflow: hidden;
  box-shadow: 2px 0 4px #066fd114, -2px -2px 4px #066fd114,
    2px 2px 4px #066fd114;
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 64px;
  gap: 28px;
}

.feature-content h2 {
  font-size: 46px;
}

.feature-content p {
  color: var(--gray-650);
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.4;
}

.feature-content a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--dark-blue);
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.feature-content a img {
  max-width: 100%;
  display: inline-block;
}

.feature-content a:hover {
  border-bottom: 1px solid var(--dark-blue);
}

/* .feature-card .feature-img {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0%;
}

.feature-card .feature-img img {
  vertical-align: middle;
  max-width: 100%;
  background-size: cover;
  display: inline-block;
} */

/* TEMP */

.feature-card .feature-img {
  display: flex;
  height: 100%;
  align-items: flex-end;
}

.feature-card .feature-img img {
  max-width: 100%;
}

/* TEMP */

.feature-card .feature-img .transparent {
  display: block;
}

.feature-card .feature-img .mob-feature-img {
  display: none;
}

/* *********************** */
/* ***** PROBLEM SECTION * */
/* *********************** */

.problem-section .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 96px;
}

.problem-section__intro {
  max-width: 960px;
}

.problem-section__eyebrow {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d92d3a !important;
  font-weight: 600;
  margin-bottom: 16px;
}

.problem-section__intro h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-bottom: 14px;
}

.problem-section__intro > p {
  color: var(--gray-650);
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.problem-card {
  border: 1px solid #d7dde5;
  border-radius: 8px;
  background: #fff;
  padding: 32px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.problem-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: #fdeff0;
  color: #d92d3a;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.problem-card__icon svg {
  width: 30px;
  height: 30px;
}

.problem-card__content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.problem-card__content p {
  margin-bottom: 0;
  color: var(--gray-650);
  font-size: 17px;
  line-height: 1.4;
}

/* *********************** */
/* ***** SOLUTION SECTION */
/* *********************** */

.solution-section .container {
  margin-bottom: 96px;
}

.solution-layout {
  background: #eef5f1;
  border: 1px solid #b8d8c9;
  border-radius: 8px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.solution-content h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  margin-bottom: 16px;
}

.solution-content > p {
  color: var(--gray-650);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.solution-section__eyebrow {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #16a34a !important;
  font-weight: 600;
  margin-bottom: 12px;
}

.solution-section__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: #03795a;
  border-radius: 6px;
  padding: 13px 24px;
  font-size: 20px;
  font-weight: 500;
  transition: background-color 0.25s ease;
}

.solution-section__button:hover {
  background: #024f3c;
}

.solution-section__button img {
  filter: brightness(0) invert(1);
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-list__item {
  background: #fff;
  border: 1px solid #d7dde5;
  border-radius: 6px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.solution-list__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #e5f3ec;
  color: #03795a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-list__icon svg {
  width: 24px;
  height: 24px;
}

.solution-list__item p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.4;
}

/* ******************************* */
/* ***** SYSTEM PROCESS SECTION *** */
/* ******************************* */

.system-process-section .container {
  margin-bottom: 96px;
}

.system-process__heading {
  max-width: 960px;
  margin: 0 auto 36px;
  text-align: center;
}

.system-process__heading h2 {
  text-align: center;
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 12px;
}

.system-process__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.system-process__heading p {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

.system-process__card {
  background: #f5f7fa;
  border: 1px solid #e3e8ee;
  border-radius: 8px;
  padding: 36px 30px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.system-process__card > * {
  position: relative;
  z-index: 1;
}

.system-process__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 16px;
  margin-bottom: 0;
  border-radius: 14px;
  background: var(--blue-200);
  border: 1px solid var(--gray-400);
  z-index: 0;
  pointer-events: none;
}

.system-process__icon img {
  width: 56%;
  height: 56%;
}

.system-process__card h3 {
  font-size: clamp(24px, 2vw, 34px);
  margin-bottom: 16px;
  max-width: 80%;
}

.system-process__card p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--gray-650);
}

.system-process__features {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.system-process__features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--gray-650);
}

.system-process__features li:last-child {
  margin-bottom: 0;
}

.system-process__features li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../images/icons/circle-check.svg) center/contain no-repeat;
}

.system-process__link {
  margin-top: auto;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--new-blue);
  font-weight: 700;
}

.system-process__link img {
  width: 18px;
  height: 18px;
}

@media (max-width: 991px) {
  .system-process__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .system-process__heading {
    margin-bottom: 24px;
  }

  .system-process__card {
    padding: 24px 18px;
    min-height: auto;
  }

  .system-process__icon {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
  }

  .system-process__card h3 {
    font-size: 22px;
  }

  .system-process__card p {
    font-size: 15px;
  }

  .system-process__heading p {
    font-size: 15px;
  }

  .system-process__link {
    font-size: 16px;
  }
}

/* *********************** */
/* ********* CTA ********* */
/* *********************** */
.cta {
  margin: 0 auto 96px;
  background-color: var(--blue-100);
  border: 1px #000;
  border-radius: 20px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 0 4px #066fd114, -2px -2px 4px #066fd114,
    2px 2px 4px #066fd114;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 28px;
  padding: 64px;
  z-index: 1;
  width: 50%;
  position: relative;
}

.cta-content h2 {
  font-size: 48px;
}

.cta-content p {
  font-size: 24px;
  color: var(--black);
}

.cta-img {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  position: absolute;
  inset: 0%;

  background-image: url("../images/laptop-bg.webp");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-img img {
  opacity: 0;
}

/* FAQ styles moved to main.css (shared: homepage, pricing) */

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

/* ******* LAPTOP ******* */

@media (max-width: 1440px) {
  /* HERO */

  .hero-content .hero-desc h1 {
    font-size: 48px;
    line-height: 1.15;
  }

  /* COUNTER */

  .counter-item .counter-percentage {
    font-size: 48px;
  }

  .counter-item .counter-text {
    font-size: 18px;
  }

  /* FEATURE */

  .feature-content h2 {
    font-size: 42px;
  }

  .feature-content p {
    font-size: 18px;
  }

  .problem-card__content h3 {
    font-size: 24px;
  }

  .solution-layout {
    padding: 44px;
  }

  .solution-section__button {
    font-size: 18px;
  }

  /* CTA */
  .cta-content h2 {
    font-size: 40px;
  }

  .cta-content p {
    font-size: 20px;
  }

}

/* ******* MINI_LAPTOP ******* */

@media (max-width: 1200px) {
  /* HERO */

  .hero-content .hero-desc .hero-proof-badge {
    margin-bottom: 24px;
  }

  .hero-content .hero-desc .hero-proof-badge p {
    font-size: 18px;
  }

  .hero-content .hero-desc p {
    font-size: 19px;
    padding: 0 10px;
  }

  .hero-content .hero-desc .text {
    margin-bottom: 30px;
  }

  /* FEATURE */

  .feature-content h2 {
    font-size: 35px;
  }

  .problem-card__content h3 {
    font-size: 22px;
  }

  .problem-card__content p {
    font-size: 16px;
  }

  .solution-layout {
    padding: 36px;
    gap: 28px;
  }

  .solution-list__item p {
    font-size: 16px;
  }

  /* CTA */

  .cta-content h2 {
    font-size: 35px;
  }

  .cta-content p {
    font-size: 18px;
  }

}

/* ******* LAPTOP_DESKTOP_VIEW ******* */

@media (max-width: 1024px) {
  /* Hero */



  .hero-content .hero-desc h1 {
    font-size: 48px;
  }

  /* CTA */

  .cta-content {
    padding: 48px;
    width: 60%;
  }
}

/* ******* TABLETS_LARGE ******* */

@media (max-width: 990px) {
  /* Hero */

  .hero-content {
    padding-top: 30px;
    grid-template-columns: 1fr;
    /* Temp */
    margin-bottom: 0;
  }

  .hero-content .hero-desc {
    margin-bottom: 30px;
  }

  .hero-content .hero-desc h1 {
    font-size: 40px;
  }

  .hero-content .hero-desc .text {
    margin-bottom: 30px;
  }

  .logo-box-mob {
    display: block;
  }

  /* COUNTER */

  .counter {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* FEATURE */

  .feature-card {
    grid-template-columns: 100%;
    justify-content: center;
  }

  .feature-content h2 {
    font-size: 32px;
  }

  .feature-card .feature-img {
    grid-row: 1;
  }

  .feature-card .feature-img .desk-feature-img {
    display: none;
  }

  .feature-card .feature-img .mob-feature-img {
    display: block;
    /* min-width: 100%; */
    width: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .solution-layout {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-content h2 {
    font-size: 32px;
  }

  /* ANIMATION */
  .scroll-primary {
    animation: primary 30s linear infinite;
  }
}

/* ******* TABLETS ******* */

@media (max-width: 768px) {
  /* HERO */

  .hero-content .hero-desc .hero-proof-badge p {
    font-size: 16px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content .hero-desc h1 {
    font-size: 38px;
  }

  .hero-content .hero-desc p {
    font-size: 18px;
    padding: 0 0;
  }

  .hero-content .hero-desc .hero-benefits p {
    font-size: 16px;
    line-height: 28px;
  }

  .logo-container-mob {
    width: 90%;
  }

  /* BANNER DASHBOARD */

  .banner-dashboard-tags {
    display: none;
  }

  .banner-dashboard-tag {
    padding: 6px 12px;
    font-size: 12px;
  }

  .main-banner-window-bar {
    gap: 12px;
    padding: 6px 12px;
  }

  .main-banner-window-url span {
    padding: 3px 12px;
    font-size: 11px;
  }

  /* SCROLL TEXT */

  .scroll-text {
    font-size: 19px;
  }

  .feature-content {
    padding: 40px;
    padding-top: 20px;
    gap: 20px;
  }

  .feature-content h2 {
    font-size: 32px;
  }

  .problem-section .container {
    gap: 30px;
  }

  .problem-card {
    padding: 24px 20px;
  }

  .problem-card__icon {
    width: 48px;
    height: 48px;
  }

  .problem-card__icon svg {
    width: 26px;
    height: 26px;
  }

  .problem-card__content h3 {
    font-size: 20px;
  }

  .problem-card__content p {
    font-size: 15px;
  }

  .solution-layout {
    padding: 26px;
  }

  .solution-content > p {
    font-size: 16px;
  }

  .solution-section__button {
    font-size: 16px;
    padding: 12px 18px;
  }

  .feature-content a {
    font-size: 16px;
  }

  .feature-card .feature-img {
    padding: 20px;
    display: flex;
    justify-content: center;
  }

  /* CTA */
  .cta-content {
    padding: 40px;
    width: 70%;
  }

}

/* ******* MOBILE ******* */

@media (max-width: 480px) {
  /* HERO */

  .hero-content .hero-desc .hero-proof-badge {
    margin-bottom: 20px;
  }

  .hero-content .hero-desc .hero-proof-badge p {
    font-size: 15px;
  }

  .hero-content .hero-desc .hero-proof-badge-text-desktop {
    display: none;
  }

  .hero-content .hero-desc .hero-proof-badge-text-mobile {
    display: block;
    white-space: nowrap;
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero-content .hero-desc h1 {
    font-size: 35px;
    line-height: 44px;
  }

  .hero-content .hero-desc .hero-benefits {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-content .hero-desc .hero-benefits p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 22px;
    text-align: left;
  }

  .hero-content .hero-desc .hero-benefits p::before {
    position: static;
    flex-shrink: 0;
    top: auto;
    left: auto;
    height: 22px;
    width: 22px;
  }

  /* BANNER */

  .banner {
    /* display: block; */
    display: none;
  }

  .banner.fade-in-bottom.show {
    animation: fade-in-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  }

  /* COUNTER */

  .counter-item .counter-percentage {
    font-size: 32px;
  }

  .counter-item .counter-text {
    font-size: 16px;
  }

  /* FEATURE */

  .feature-content {
    padding: 20px;
    padding-top: 20px;
  }

  .feature-card .feature-img {
    grid-row: 1;
    padding: 0px;
    display: flex;
    justify-content: center;
  }

  .feature-content p {
    font-size: 16px;
  }

  .problem-section__intro h2 {
    font-size: 28px;
  }

  .problem-section__intro > p {
    font-size: 15px;
  }

  .problem-card {
    padding: 20px 16px;
    gap: 14px;
  }

  .problem-card__content h3 {
    font-size: 18px;
  }

  .problem-card__content p {
    font-size: 14px;
  }

  .solution-layout {
    padding: 20px 16px;
  }

  .solution-content h2 {
    font-size: 27px;
  }

  .solution-content > p {
    font-size: 15px;
  }

  .solution-list__item {
    padding: 16px 14px;
  }

  .solution-list__icon {
    width: 34px;
    height: 34px;
  }

  .solution-list__icon svg {
    width: 20px;
    height: 20px;
  }

  .solution-list__item p {
    font-size: 14px;
  }

  /* CTA */
  .cta-content {
    padding: 28px;
    width: 100%;
  }

  .cta-content h2 {
    font-size: 28px;
    color: var(--white);
  }

  .cta-content p {
    color: var(--white);
    font-size: 16px;
  }

  .cta-img {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      url("../images/laptop-bg.webp");
    background-position: 0 0, 70%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    position: absolute;
  }

  /* ANIMATION */
  .scroll-primary {
    animation: primary 20s linear infinite;
  }
}
