:root {
  --black: #000;
  --white: #fff;
  --black-70: #000000b2;
  --black-raisin: #242424;
  --blue-main: #00009c;
  --alice-blue: #f1f6fa;
  --gray-medium: #363636;
  --gray-light: #eaedf2;
  --gray-border: #0000001a;
  --gray-divider: #00000033;
  --gray-footer: #7c7c7c;
  --white-transparent: #ffffffcc;
  --red-main: #c40b0b;
  --red-secondary: #db3534;
  --red-bg: #fff4f3;
  --red-step-bg: #ffefee;
  --feature-yellow-border: #f4b84f;
  --feature-yellow-bg: #fffbee;
  --feature-green-border: #70b457;
  --feature-green-bg: #f9fff3;
  --review-border: #9ac7e1;
  --review-bg: #f2faff;
  --bottom-cta-bg: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.01em;
}

html,
body {
  overscroll-behavior-y: none;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: var(--alice-blue);
  color: var(--black);
  display: flex;
  justify-content: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  width: 100%;
  max-width: 1149px;
}

.header-logo {
  width: 82px;
  height: auto;
  padding: 5px 0 0 0;
}

.header-trending {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}

.header-trending img {
  width: 39px;
  height: auto;
}

.header-trending p {
  font-size: 16px !important;
  font-weight: 600 !important;
}

.header-trending p span {
  font-size: 16px !important;
  font-weight: 600 !important;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 38px 0 79px 0;
  margin: 0 auto;
  width: 100%;
}

.left-content {
  max-width: 762px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-title {
  font-size: 35px;
  line-height: 120%;
  margin-bottom: 1px;
  font-weight: 700;
}

.headline-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
}

.author-container {
  display: flex;
  gap: 12px;
  align-items: center;
}

.author-container img {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.author-container div p {
  font-size: 16px;
  color: var(--black-70);
  font-family: "Poppins", sans-serif;
}

.author-container div p:first-child {
  font-weight: 700;
}

.author-container div p:last-child {
  font-style: italic;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

br.mobile {
  display: none;
}

.secondary-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 120%;
  margin-bottom: 5px;
}

.secondary-title.mobile {
  display: none;
  font-size: 21px;
  font-weight: 700;
  line-height: 135%;
  margin-bottom: 5px;
}

.tertiary-title {
  font-size: 20px;
  font-weight: 600;
}

.quote-text {
  font-style: italic;
  font-weight: 600;
}

.feature-yellow {
  border: 1px solid var(--feature-yellow-border);
  background-color: var(--feature-yellow-bg);
  border-radius: 12px;
  padding: 16px;
}

.feature-yellow .feature-yellow-text {
  font-weight: 600;
}

.feature-yellow .feature-yellow-text.alt {
  font-weight: 700;
}

.no-more-title {
  font-weight: 600;
}

.no-more-container {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 18px;
}

.no-more-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.no-more-item div {
  color: var(--black-raisin);
}

.no-more-item div p:first-child {
  font-weight: 700;
  line-height: 26px;
}

.no-more-item div p:last-child {
  font-weight: 400;
  line-height: 26px;
}

.feature-green-container {
  border: 1px solid var(--feature-green-border);
  background-color: var(--feature-green-bg);
  border-radius: 12px;
  padding: 24px;
}

.feature-green-container .feature-green-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-green-container .feature-green-items {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 15px;
  align-items: center;
}

.feature-green-container .feature-green-items .feature-green-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.feature-green-container .feature-green-items .feature-green-item img {
  margin-top: 4px;
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  border-radius: 8px;
  overflow: hidden;
}

.steps-item {
  display: grid;
  grid-template-rows: auto 1fr;
}

.steps-item img {
  width: 100%;
  height: 271px;
  object-fit: cover;
  object-position: top;
}

.steps-item .steps-item-texts-title {
  text-align: center;
  background: var(--red-secondary);
  color: var(--white);
  font-weight: 700 !important;
  padding: 6px 0;
}

.steps-item .steps-item-texts-description {
  background: var(--red-step-bg);
  padding: 12px 16px;
}

strong {
  font-weight: 700 !important;
}

hr {
  border: none;
  height: 1px;
  background-color: var(--gray-divider);
}

.benefits-container {
  display: grid;
  gap: 24px;
}

.benefits-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}

.benefits-item img {
  width: 56px;
  height: auto;
}

.benefits-item .benefits-item-text {
  color: var(--black-raisin);
}

.benefits-item .benefits-item-text p {
  font-weight: 400;
}

.reviews {
  margin-top: 5px;
  display: grid;
  gap: 20px;
}

.reviews .reviews-item {
  display: grid;
  gap: 8px;
  border: 2px dashed var(--review-border);
  border-radius: 8px;
  background-color: var(--review-bg);
  padding: 20px;
}

.reviews .reviews-item img {
  width: auto;
  height: 21px;
}

.reviews .reviews-item p {
  font-style: italic;
}

.details {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
}

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

.details img {
  width: 50px;
  height: auto;
}

.details p {
  text-align: center;
  font-weight: 600;
}

.details-item:nth-child(3) p br {
  display: none;
}

.bottom-cta {
  border: 1px solid var(--gray-border);
  background-color: var(--bottom-cta-bg);
  border-radius: 10px;
  position: relative;
  padding: 30px 20px;
  display: grid;
  row-gap: 20px;
}

.bottom-cta-detail {
  border: 1px solid var(--red-main);
  background-color: var(--red-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.bottom-cta-detail .cta-texts {
  margin-left: 66px;
}

.cta-texts .cta-texts-first {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: normal;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -1px;
}

.cta-texts .cta-texts-second {
  font-size: 66px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--red-main);
  line-height: normal;
  letter-spacing: -3px;
}

.cta-texts .cta-texts-third {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1px;
}

.bottom-cta-detail img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.bottom-cta strong {
  font-weight: 600 !important;
}

.bottom-cta .quote-text {
  font-weight: 700 !important;
}

.bottom-cta-dotted {
  border: 2px dashed #ffbfba;
  background-color: var(--red-bg);
  padding: 20px 12px;
}

.bottom-cta-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bottom-cta-detail.mobile {
  display: none;
}

.right-sidebar {
  width: 327px;
}

.sticky-container {
  position: sticky;
  top: 0;
  background-color: var(--red-bg);
  border-radius: 16px;
  padding: 30px 20px;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-container .cta-texts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sticky-container .cta-texts .cta-texts-first {
  font-size: 19px;
}

.sticky-container .cta-texts .cta-texts-second {
  font-size: 44px;
}

.sticky-container .cta-texts .cta-texts-third {
  font-size: 20px;
}

.sticky-container .sticky-cta-img {
  width: 240px;
}

.sticky-container .sticky-cta-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sticky-container .sticky-cta-list .sticky-cta-list-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sticky-container .sticky-cta-list .sticky-cta-list-item p {
  font-size: 16px;
  font-weight: 600;
}

.sticky-container .sticky-cta-list .sticky-cta-list-item img {
  height: 18px;
  width: auto;
}

.cta-button {
  background-color: var(--red-secondary);
  width: 100%;
  color: var(--white);
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.cta-button-floating-container {
  max-width: 283px;
  width: 100%;
  margin-top: 14px;
}

.cta-button.cta-button-floating {
  padding: 19px 0;
  font-weight: 700;
}

.cta-button.cta-button-bottom {
  font-weight: 800;
  padding: 16px 0;
}

footer {
  background-color: var(--black);
  color: var(--white-transparent);
  padding: 26px 0;
  text-align: center;
  margin-top: auto;
}

footer a {
  color: var(--white-transparent);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
}

footer a:nth-child(2) {
  margin: 0 20px;
  padding: 0 20px;
  border-left: 1px solid var(--gray-footer);
  border-right: 1px solid var(--gray-footer);
}

footer p {
  font-weight: 400;
  font-size: 14px;
}

@media screen and (max-width: 1199px) {
  br.web {
    display: none;
  }
}

@media screen and (max-width: 1220px) {
  main {
    padding: 60px 16px;
  }

  header {
    padding: 0 17px;
  }
}

/* Mobile Sticky CTA - Hidden by default on desktop */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 991px) {
  .header-trending img {
    height: 21px;
  }

  main {
    padding: 30px 16px;
  }

  .bottom-cta-detail.mobile {
    display: flex;
  }

  .right-sidebar {
    display: none;
  }

  .left-content {
    width: 100%;
    max-width: none;
    gap: 20px;
  }

  /* Mobile Sticky CTA */
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 16px;
    background: var(--red-bg);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    will-change: transform;
  }

  .mobile-sticky-cta.visible {
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  * {
    font-size: 16px;
  }

  .header-container {
    padding: 12px 0;
  }

  .main-title {
    font-size: 26px;
  }

  .headline-text {
    font-size: 17px;
  }

  .author-container {
    gap: 12px;
  }

  .author-container img {
    width: 48px;
    height: 48px;
  }

  .author-container div p {
    font-size: 14px;
  }

  .secondary-title {
    font-size: 24px;
  }

  .secondary-title.web {
    display: none;
  }

  .secondary-title.mobile {
    display: block;
  }

  .tertiary-title {
    font-size: 16px;
  }

  .no-more-title {
    font-size: 16px;
  }

  .feature-green-container {
    padding: 24px 16px;
  }

  .feature-green-container .feature-green-title {
    font-size: 16px;
  }

  .benefits-container {
    gap: 15px;
  }

  .reviews {
    gap: 16px;
  }

  .reviews .reviews-item img {
    height: 18px;
  }

  .bottom-cta-detail {
    flex-direction: column;
    padding: 32px 0;
  }

  .bottom-cta-detail .cta-texts {
    text-align: center;
    margin-left: 0;
  }

  .cta-button.cta-button-bottom {
    font-size: 16px;
    padding: 15px 0;
  }

  .cta-button.cta-button-bottom svg {
    width: 16px;
    height: auto;
  }

  footer {
    padding: 30px 0;
  }

  footer a,
  footer p {
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {
  .feature-yellow-text br {
    display: none;
  }

  .steps-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    border-radius: 0;
    gap: 8px;
  }

  .steps-container .steps-item {
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
  }

  .steps-item img {
    height: 100%;
    max-width: 120px;
  }

  .steps-item .steps-item-texts-description {
    padding: 18px 16px;
    font-size: 14px;
  }
}

@media screen and (max-width: 481px) {
  * {
    font-size: 14px;
  }

  .header-trending p span {
    display: none;
  }

  main {
    padding: 28px 17px;
  }

  .description-mobile p {
    font-size: 16px;
  }

  .secondary-title.alt {
    font-size: 21px;
  }

  .feature-yellow .feature-yellow-text.alt {
    font-weight: 600;
  }

  .benefits-item {
    gap: 18px;
    padding: 0;
  }

  .benefits-item img {
    width: 48px;
  }

  .reviews .reviews-item {
    padding: 16px;
  }

  .details {
    grid-template-columns: repeat(2, auto);
    row-gap: 15px;
    justify-content: space-around;
  }

  .details p {
    font-size: 16px;
  }

  .details-item:nth-child(3) p br {
    display: block;
  }

  .bottom-cta {
    padding: 24px 16px;
    margin-top: 10px;
  }

  .cta-texts .cta-texts-first {
    font-size: 24px;
  }

  .cta-texts .cta-texts-second {
    font-size: 40px;
  }

  .cta-texts .cta-texts-third {
    font-size: 16px;
  }
}

@media screen and (max-width: 394px) {
  br.mobile {
    display: inline;
  }
}
