*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  font-family: Avenir, Montserrat, Corbel, "URW Gothic", source-sans-pro,
    sans-serif;
  font-weight: 400;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  line-height: 1;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentcolor;
}

.text-xs {
  font-size: 12px;
  line-height: 16px;
}

.text-sm {
  font-size: 14px;
  line-height: 20px;
}

.text-md {
  font-size: 16px;
  line-height: 24px;
}

.text-lg {
  font-size: 18px;
  line-height: 28px;
}

.text-xl {
  font-size: 20px;
  line-height: 28px;
}

.text-2xl {
  font-size: 24px;
  line-height: 32px;
}

.text-3xl {
  font-size: 30px;
  line-height: 36px;
}

.text-4xl {
  font-size: 36px;
  line-height: 40px;
}

.text-5xl {
  font-size: 48px;
  line-height: 1;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.mt-10 {
  margin-top: 40px;
}

.mb-10 {
  margin-bottom: 40px;
}

.section {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-top: 56px;
}

.section__body {
  max-width: 1140px;
  margin: 0 auto;
}

.video {
  position: relative;
}

.timer {
  display: flex;
  align-items: start;
  margin: 0;
}

.timer__part {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 72px;
}

.timer__separator {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
}

.timer dd,
.timer dt {
  padding: 0;
  margin: 0;
}

.timer dd {
  font-size: 30px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 40px;
}

.timer dt {
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

.free-shipping-banner {
  position: relative;
  max-width: 720px;
  padding: 16px 16px 16px 108px;
  color: #2f6235;
  border: 2px solid #2f6235;
  border-radius: 13px;
}

.free-shipping-banner::before {
  --s: 20px;

  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  width: calc(72px + var(--s));
  height: 100%;
  padding-right: 20px;
  content: "";
  background-color: currentcolor;
  background-image: url("./images/free-shipping-icon.png");
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 56px auto;
  border-radius: 11px 0 0 11px;
  clip-path: polygon(
    0% 0%,
    calc(100% - var(--s)) 0,
    100% 50%,
    calc(100% - var(--s)) 100%,
    0 100%
  );
}

.free-shipping-banner__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.free-shipping-banner__message {
  margin-top: 8px;
  font-size: 14px;
  line-height: 16px;
}

.hero {
  margin-top: 28px;
}

.hero__title {
  margin: 0;
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  text-wrap: balance;
}

.hero__subtitle {
  padding: 0 var(--content-padding-x);
  margin-bottom: 16px;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  line-height: 28px;
  text-align: center;
}

.hero__video {
  margin-right: -16px;
  margin-left: -16px;
}

.offer__pre-title {
  margin-bottom: 16px;
  text-align: center;
}

.offer__title {
  margin: 0;
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  text-wrap: balance;
}

.offer__name {
  color: #2f6235;
}

.offer__checklist {
  display: inline-grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  text-align: left;
  list-style: none;
}

.offer__checklist > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.offer__cta {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  background: #2f6235;
  border-radius: 999px;
}

.offer__body {
  display: grid;
  gap: 16px;
  justify-items: center;
  margin-top: 32px;
}

.offer__photos {
  margin-right: -16px;
  margin-left: -16px;
  overflow: hidden;
}

.offer__photos-grid {
  display: grid;
  grid-template-rows: 150px 240px 300px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 16px;
  place-items: start stretch;
  width: 200%;
  margin-top: -136px;
  margin-right: -50%;
  margin-left: -50%;
}

.offer__photos-grid > img {
  align-self: stretch;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.offer__photos-grid > img:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
}

.offer__photos-grid > img:nth-child(2) {
  grid-area: 2 / 2 / 3 / 3;
}

.offer__photos-grid > img:nth-child(3) {
  grid-area: 2 / 3 / 4 / 4;
  max-height: 424px;
}

.offer__photos-grid > img:nth-child(4) {
  grid-area: 2 / 4 / 4 / 5;
  height: 550px;
}

.offer__photos-grid > img:nth-child(5) {
  grid-area: 1 / 5 / 3 / 6;
}

.offer__photos-grid > img:nth-child(6) {
  grid-area: 3 / 1 / 4 / 3;
}

.offer__photos-grid > img:nth-child(7) {
  grid-area: 3 / 5 / 4 / 6;
  max-height: 200px;
}

@media screen and (min-width: 768px) {
  .offer__photos {
    margin-right: 0;
    margin-left: 0;
    overflow: initial;
  }

  .offer__photos-grid {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

.guarantee {
  padding-top: 28px;
}

.guarantee__body {
  background: #fffbeb;
  border: 2px solid rgb(202 138 4 / 35%);
  border-radius: 10px;
}

.guarantee__badge {
  display: block;
  width: 120px;
  height: 120px;
  margin: -28px auto 0;
}

.guarantee__content {
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.guarantee__content > h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.guarantee__content > p {
  margin-top: 12px;
}

.faq {
  border-radius: 10px;
}

.faq__title {
  padding: 16px;
  font-size: 16px;
  color: white;
  text-align: center;
  background: #2b2b2d;
  border-radius: 10px 10px 0 0;
}

.faq__body {
  background: #f4f4f4;
  border: 1px solid #c6c6c6;
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.faq__body > *:not(:last-child) {
  border-bottom: 1px dashed #c6c6c6;
}

.faq-item summary {
  position: relative;
  padding: 16px 40px 16px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  appearance: none;
  cursor: pointer;
  list-style-type: none;
}

.faq-item summary::marker {
  content: none;
}

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 2px;
  content: "";
  background: currentcolor;
  transform: translateY(-50%);
}

.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item__content {
  padding: 0 12px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.faq-item__content p + p {
  margin-top: 8px;
}

.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-family: system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: black;
  background: lightgray;
}

.monogram.indigo {
  color: white;
  background: #652293;
}

.monogram.gray {
  color: white;
  background: #728490;
}

.monogram.green {
  color: #1a1a1a;
  background: #ddfedd;
}

.monogram.yellow {
  color: #1a1a1a;
  background: #fdf6c1;
}

.monogram.orange {
  color: #1a1a1a;
  background: #f9deb5;
}

.monogram.pink {
  color: #1a1a1a;
  background: #f8dae4;
}

.author {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.author__picture {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.author__info {
  padding-left: 8px;
}

.author__name {
  font-weight: 600;
  color: #2d2f29;
}

.author__location {
  font-size: 14px;
  color: #605e56;
}

.review {
  display: block;
}

.review__header {
  display: flex;
  justify-content: space-between;
}

.review__verified-mark {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #059669;
}

.review__rating {
  margin-top: 16px;
}

.review__title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.review__message {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.reviews__title {
  margin-bottom: 28px;
}

.reviews__list {
  display: grid;
  gap: 56px;
}

.references__title {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}

.references__image {
  margin: 20px 0 0;
}

.references__image img {
  display: block;
  width: 100%;
  max-width: 512px;
  height: auto;
  margin: 0 auto;
}

.references__image figcaption {
  margin-top: 4px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  opacity: 0.5;
}

.references__links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 20px;
  list-style-position: inside;
}

.footer {
  padding-top: 32px;
  padding-bottom: 32px;
  color: white;
  background: #121212;
}

.footer__nav {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 20px;
}

.footer__nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer__nav li {
  padding: 8px 0;
  border-bottom: 1px solid #737373;
}

.footer__nav a {
  text-decoration: none;
}

.footer__content {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #a3a3a3;
}

.footer__content p + p {
  margin-top: 1em;
}
