/* ========================================
   CARDS CONTAINER
======================================== */
.cards-container {
  display: grid;
  grid-template-columns:
      repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}


/* ========================================
   SITE CARD
======================================== */
.site-card {
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 12px;
  background: white;
  box-shadow:
      0 2px 8px rgb(0 0 0 / 5%);
  transition:
      transform .2s ease,
      box-shadow .2s ease;
}
.site-card:hover {
  transform: translateY(-4px);
  box-shadow:
      0 12px 30px rgb(0 0 0 / 12%);
}
/* ========================================
 CARD IMAGE
======================================== */
.site-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e4de;
}
.site-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
      transform .4s ease;
}
.site-card:hover .site-card__image img {
  transform: scale(1.03);
}

/* ========================================
   SITE TYPES
======================================== */
.site-types {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
}
/* ========================================
 INTRO
======================================== */
.site-types__intro {
  /* max-width: 680px; */
  margin-bottom: 60px;
}
.site-types__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid rgb(185 95 69 / 25%);
  border-radius: 100px;
  color: #934936;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.site-types__intro h2 {
  margin: 0 0 22px;
  color: #33251f;
  font-family: Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -2px;
}
.site-types__intro p {
  /* max-width: 560px; */
  margin: 0;
  color: #806f63;
  font-size: 17px;
  line-height: 1.7;
}
/* ========================================
 GRID
======================================== */
.site-types__grid {
  display: grid;
  grid-template-columns:
      repeat(3, minmax(0, 1fr));
  gap: 20px;
}
/* ========================================
 CARD
======================================== */
.site-type {
  position: relative;

  display: grid;
  grid-template-rows:
  auto /* number */
  auto /* title */
  1fr /* description */
  auto /* image */
  1fr /* features */
  auto; /* preview */

  padding: 32px;

  border: 1px solid rgb(51 37 31 / 10%);
  border-radius: 24px;
  background: #faf6f0;

  transition:
      transform .25s ease,
      box-shadow .25s ease;

  cursor: pointer;
}
/* .site-type:hover {
  transform: translateY(-6px);
  box-shadow:
      0 20px 45px rgb(51 37 31 / 10%);
} */
/* ========================================
 NUMBER
======================================== */
.site-type__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 70px;
  border-radius: 50%;
  background: #ead9ca;
  color: #934936;
  font-size: 12px;
  font-weight: 600;
}
/* ========================================
 CARD TITLE
======================================== */
.site-type > img {
  display: block;

  width: 100%;
  height: 170px;

  margin: 28px 0 30px;

  object-fit: contain;
  object-position: center;

  border-radius: 16px;

  background:
      linear-gradient(
          135deg,
          #f1e8df 0%,
          #f8f3ed 50%,
          #eadbd0 100%
      );

  border: 1px solid rgb(51 37 31 / 8%);

  box-shadow:
      0 12px 30px rgb(51 37 31 / 7%);

  transition:
      transform .35s ease,
      box-shadow .35s ease;
}

.site-type:hover > img {
  transform: translateY(-3px) scale(1.015);

  box-shadow:
      0 18px 38px rgb(51 37 31 / 11%);
}

.site-type h3 {
  margin: 0 0 15px;
  color: #33251f;
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.1;
}
/* ========================================
 CARD DESCRIPTION
======================================== */
.site-type > p {
  margin: 0;
  color: #806f63;
  font-size: 14px;
  line-height: 1.65;
}
/* ========================================
 CARD LIST
======================================== */
.site-type ul {
  margin: 0;
  padding: 25px 0 0;

  list-style: none;

  border-top: 1px solid rgb(51 37 31 / 10%);
}
.site-type li {
  position: relative;
  padding-left: 18px;
  color: #594a41;
  font-size: 13px;
  line-height: 1.5;
}
.site-type li + li {
  margin-top: 9px;
}
.site-type li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b95f45;
}
/* ========================================
 FEATURED CARD
======================================== */
.site-type--featured {
  background: #b95f45;
  border-color: transparent;
  color: white;
  box-shadow:
      0 20px 50px rgb(185 95 69 / 20%);
}

.site-type--featured > img {
  background:
      linear-gradient(
          135deg,
          rgba(255,255,255,.16),
          rgba(255,255,255,.05)
      );

  border-color:
      rgba(255,255,255,.18);

  box-shadow:
      0 15px 35px rgba(0,0,0,.12);
}
/* .site-type--featured:hover {
  box-shadow:
      0 25px 60px rgb(185 95 69 / 28%);
} */
.site-type--featured .site-type__number {
  background: rgb(255 255 255 / 18%);
  color: white;
}
.site-type--featured h3 {
  color: white;
}
.site-type--featured > p {
  color: rgb(255 255 255 / 78%);
}
.site-type--featured ul {
  border-color: rgb(255 255 255 / 20%);
}
.site-type--featured li {
  color: rgb(255 255 255 / 88%);
}
.site-type--featured li::before {
  background: #f8d8c7;
}

/* ========================================
 RESPONSIVE
======================================== */
@media (max-width: 850px) {
  .site-types {
    padding: 90px 25px;
}

.site-types__grid {
    grid-template-columns: 1fr;
}

.site-type {
    grid-template-rows:
        auto
        auto
        auto
        190px
        auto
        auto;

    padding: 28px;
}
  /* .site-type__number {
      margin-bottom: 45px;
  }
  .site-type ul {
      margin-top: 35px;
      margin: auto 0 0;
  } */
}

/* ========================================
 CARD CONTENT
======================================== */
.site-card__content {
  padding: 20px;
}
.site-card__content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
}
.site-card__content p {
  margin: 0 0 18px;
  color: #68615a;
  font-size: 14px;
  line-height: 1.5;
}
.site-card__link {
  display: inline-block;
  color: #24201c;
  font-size: 14px;
  font-weight: 500;
}
/* ========================================
 MODAL OVERLAY
======================================== */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  backdrop-filter: blur(12px);
  background: rgb(0 0 0 / 30%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
      opacity .2s ease,
      visibility .2s ease;
}
/*
* JavaScript adds this class
* when the modal is open.
*/
.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* ========================================
 PREVIEW WINDOW
======================================== */
.preview {
  width: 90%;
  max-height: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: white;  
  box-shadow:
      0 30px 80px rgb(0 0 0 / 30%),
      0 10px 30px rgb(0 0 0 / 15%);
  transform: scale(.96);
  transition:
      transform .2s ease;
}
.overlay.active .preview {
  transform: scale(1);
}
/* ========================================
 BROWSER BAR
======================================== */
.browser-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  background: #f5f5f5;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}
/* ========================================
 TRAFFIC LIGHTS
======================================== */
.traffic-lights {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.light {
  width: 13px;
  height: 13px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 50%;
}
.light.red {
  background: #ff5f57;
  cursor: pointer;
}
.light.yellow {
  background: #febc2e;
}
.light.green {
  background: #28c840;
  cursor: pointer;
}
/* ========================================
 ADDRESS BAR
======================================== */
.address-bar {
  flex: 1;
  min-width: 0;
  height: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border-radius: 7px;
  background: white;
  color: #555;
  font-size: 12px;
}
.address-bar svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.address-bar span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* ========================================
 CLOSE BUTTON
======================================== */
.close {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #555;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition:
      background .15s ease;
}
.close:hover {
  background: rgb(0 0 0 / 8%);
}
/* ========================================
 IFRAME
======================================== */
.preview-frame {
  width: 100%;
  height: min(75vh, 750px);
  overflow: hidden;
  background: white;
}
.preview-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: white;
}

.site-type__preview {
  display: inline-flex;
    align-items: center;
    gap: 8px;

    justify-self: end;

    margin-top: 24px;
    padding: 7px 12px;

    border: 1px solid rgb(51 37 31 / 10%);
    border-radius: 100px;

    color: inherit;

    font-size: 12px;
    font-weight: 500;

    opacity: .75;

    transition:
        opacity .2s ease,
        transform .2s ease,
        background .2s ease;
}

.site-type:hover .site-type__preview {
  opacity: 1;
  transform: translateX(3px);
}

.site-type__preview span {
  font-size: 16px;
  line-height: 1;
}

.preview-banner__eyebrow {
  display: block;
  text-align: center;
  color: #121212;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background-color: #ffae00;
}

/* =====================================================
   MAINTENANCE / DURABILITÉ
===================================================== */

.maintenance {
  max-width: 1200px;

  margin: 0 auto;

  padding:
      140px 40px
      160px;

  border-top:
      1px solid rgba(29, 29, 31, .1);
}


/* Intro */

.maintenance__intro {
  max-width: 850px;

  margin-bottom: 90px;
}

.maintenance__eyebrow {
  display: block;

  margin-bottom: 22px;

  color: #777;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: .14em;

  text-transform: uppercase;
}

.maintenance__intro h2 {
  margin: 0;

  font-size:
      clamp(
          45px,
          7vw,
          85px
      );

  font-weight: 500;

  line-height: .95;

  letter-spacing: -.055em;
}

.maintenance__intro h2 em {
  display: block;

  color: #777;

  font-style: normal;
}


/* Main content */

.maintenance__content {
  display: grid;

  grid-template-columns:
      .7fr
      1.3fr;

  gap: 100px;
}


/* Statement */

.maintenance__statement {
  position: relative;

  padding-top: 5px;
}

.maintenance__number {
  display: block;

  margin-bottom: 30px;

  color: #aaa;

  font-size: 11px;

  letter-spacing: .12em;
}

.maintenance__statement p {
  max-width: 300px;

  margin: 0;

  font-size: 27px;

  font-weight: 500;

  line-height: 1.25;

  letter-spacing: -.025em;
}


/* Text */

.maintenance__text {
  max-width: 650px;
}

.maintenance__text > p {
  margin: 0 0 25px;

  color: #666;

  font-size: 16px;

  line-height: 1.8;
}


/* Principles */

.maintenance__principles {
  margin-top: 60px;

  display: grid;

  grid-template-columns:
      repeat(3, 1fr);

  gap: 20px;

  border-top:
      1px solid rgba(29, 29, 31, .12);
}

.maintenance__principle {
  padding-top: 20px;
}

.maintenance__principle strong {
  display: block;

  margin-bottom: 28px;

  color: #aaa;

  font-size: 10px;

  font-weight: 500;

  letter-spacing: .1em;
}

.maintenance__principle > span {
  display: block;

  margin-bottom: 10px;

  color: #1d1d1f;

  font-size: 14px;

  font-weight: 600;
}

.maintenance__principle p {
  margin: 0;

  color: #777;

  font-size: 12px;

  line-height: 1.7;
}


/* =====================================================
 MOBILE
===================================================== */

@media (max-width: 700px) {

  .maintenance {
      padding:
          90px 22px
          100px;
  }

  .maintenance__intro {
      margin-bottom: 60px;
  }

  .maintenance__intro h2 {
      font-size: 48px;
  }

  .maintenance__content {
      display: block;
  }

  .maintenance__statement {
      margin-bottom: 55px;
  }

  .maintenance__statement p {
      max-width: 340px;

      font-size: 24px;
  }

  .maintenance__text > p {
      font-size: 15px;

      line-height: 1.75;
  }

  .maintenance__principles {
      display: block;

      margin-top: 50px;
  }

  .maintenance__principle {
      padding:
          22px 0;

      border-bottom:
          1px solid rgba(29, 29, 31, .1);
  }

  .maintenance__principle strong {
      margin-bottom: 15px;
  }

}

/* =====================================================
   OFFER
   "Vous achetez votre site. Vous ne le louez pas."
===================================================== */

.offer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 150px;

  border-top: 1px solid rgba(29, 29, 31, .1);
}


/* -----------------------------------------------------
 INTRO
----------------------------------------------------- */

.offer__intro {
  max-width: 850px;
  margin-bottom: 85px;
}

.offer__eyebrow,
.included__eyebrow,
.process__eyebrow {
  display: block;

  margin-bottom: 22px;

  color: #777;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: .14em;
  text-transform: uppercase;
}

.offer__intro h2,
.included__intro h2,
.process__intro h2 {
  margin: 0;

  color: #1d1d1f;

  font-size: clamp(46px, 7vw, 82px);
  font-weight: 500;

  line-height: .95;
  letter-spacing: -.055em;
}

.offer__intro h2 em,
.included__intro h2 em,
.process__intro h2 em {
  display: block;

  color: #777;

  font-style: normal;
}

.offer__intro > p {
  max-width: 650px;

  margin: 35px 0 0;

  color: #666;

  font-size: 17px;
  line-height: 1.75;
}


/* -----------------------------------------------------
 OFFER GRID
----------------------------------------------------- */

.offer__grid {
  display: grid;

  grid-template-columns:
      1.15fr
      .85fr;

  gap: 20px;
}


/* -----------------------------------------------------
 BASE CARD
----------------------------------------------------- */

.offer-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 430px;

  padding: 38px;

  border: 1px solid rgba(29, 29, 31, .1);
  border-radius: 24px;

  background: #fafafa;
}


/* Main card takes two rows */

.offer-card--main {
  grid-row: span 2;

  background: #1d1d1f;
  border-color: #1d1d1f;

  color: white;
}


/* Soft card */

.offer-card--soft {
  background: #f3eee8;
}


/* -----------------------------------------------------
 CARD NUMBER
----------------------------------------------------- */

.offer-card__number {
  display: block;

  margin-bottom: 35px;

  color: #aaa;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: .12em;
}

.offer-card--main .offer-card__number {
  color: rgba(255,255,255,.45);
}


/* -----------------------------------------------------
 LABEL
----------------------------------------------------- */

.offer-card__label {
  display: inline-block;

  width: fit-content;

  margin-bottom: 18px;
  padding: 6px 10px;

  border: 1px solid rgba(29, 29, 31, .12);
  border-radius: 100px;

  color: #666;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: .1em;
  text-transform: uppercase;
}

.offer-card--main .offer-card__label {
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.7);
}


/* -----------------------------------------------------
 CARD TITLE
----------------------------------------------------- */

.offer-card h3 {
  max-width: 500px;

  margin: 0 0 20px;

  color: #1d1d1f;

  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;

  line-height: 1;
  letter-spacing: -.04em;
}

.offer-card--main h3 {
  color: white;
}


/* -----------------------------------------------------
 CARD TEXT
----------------------------------------------------- */

.offer-card > p {
  max-width: 540px;

  margin: 0;

  color: #666;

  font-size: 15px;
  line-height: 1.7;
}

.offer-card--main > p {
  color: rgba(255,255,255,.68);
}


/* -----------------------------------------------------
 INCLUDED LIST
----------------------------------------------------- */

.offer-card ul {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 13px 30px;

  margin: 40px 0 0;
  padding: 30px 0 0;

  list-style: none;

  border-top: 1px solid rgba(255,255,255,.14);
}

.offer-card li {
  position: relative;

  padding-left: 17px;

  color: rgba(255,255,255,.78);

  font-size: 13px;
  line-height: 1.5;
}

.offer-card li::before {
  content: "";

  position: absolute;

  left: 0;
  top: .55em;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: rgba(255,255,255,.65);
}


/* -----------------------------------------------------
 BOTTOM STATEMENT
----------------------------------------------------- */

.offer-card__bottom {
  display: block;

  margin-top: auto;
  padding-top: 35px;

  color: white;

  font-size: 14px;
  font-weight: 500;

  line-height: 1.5;
}


/* -----------------------------------------------------
 TWO-PAYMENT OPTION
----------------------------------------------------- */

.payment-steps {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px;

  margin-top: 35px;
  padding-top: 25px;

  border-top: 1px solid rgba(29,29,31,.1);
}

.payment-steps div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.payment-steps strong {
  color: #1d1d1f;

  font-size: 30px;
  font-weight: 500;

  letter-spacing: -.04em;
}

.payment-steps span {
  color: #777;

  font-size: 12px;
  line-height: 1.4;
}

.offer-card__note {
  margin-top: auto !important;
  padding-top: 30px;

  color: #888 !important;

  font-size: 12px !important;
}


/* -----------------------------------------------------
 5 € / MONTH
----------------------------------------------------- */

.offer-feature {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-top: 35px;
  padding-top: 30px;

  border-top: 1px solid rgba(29,29,31,.1);
}

.offer-feature > span {
  color: #1d1d1f;

  font-size: 42px;
  font-weight: 500;

  line-height: 1;
  letter-spacing: -.05em;
}

.offer-feature > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-feature strong {
  color: #1d1d1f;

  font-size: 14px;
}

.offer-feature small {
  color: #888;

  font-size: 11px;
}


/* -----------------------------------------------------
 OWNERSHIP STATEMENT
----------------------------------------------------- */

.offer__ownership {
  display: grid;

  grid-template-columns: 44px 1fr;

  gap: 22px;

  max-width: 800px;

  margin-top: 55px;
  padding-top: 35px;

  border-top: 1px solid rgba(29,29,31,.1);
}

.offer__ownership-mark {
  display: grid;
  place-items: center;

  width: 36px;
  height: 36px;

  border-radius: 50%;

  background: #1d1d1f;
  color: white;

  font-size: 14px;
}

.offer__ownership strong {
  display: block;

  margin-bottom: 8px;

  color: #1d1d1f;

  font-size: 15px;
}

.offer__ownership p {
  max-width: 680px;

  margin: 0;

  color: #777;

  font-size: 13px;
  line-height: 1.7;
}


/* =====================================================
 INCLUDED
===================================================== */

.included {
  max-width: 1200px;
  margin: 0 auto;

  padding: 140px 40px 150px;

  border-top: 1px solid rgba(29,29,31,.1);
}

.included__intro {
  max-width: 800px;

  margin-bottom: 90px;
}

.included__intro > p {
  max-width: 600px;

  margin: 35px 0 0;

  color: #666;

  font-size: 17px;
  line-height: 1.75;
}


/* -----------------------------------------------------
 INCLUDED GRID
----------------------------------------------------- */

.included__grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(29,29,31,.12);
  border-left: 1px solid rgba(29,29,31,.12);
}

.included__grid article {
  min-height: 260px;

  padding: 30px;

  border-right: 1px solid rgba(29,29,31,.12);
  border-bottom: 1px solid rgba(29,29,31,.12);
}

.included__grid article > span {
  display: block;

  margin-bottom: 55px;

  color: #aaa;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: .12em;
}

.included__grid h3 {
  margin: 0 0 12px;

  color: #1d1d1f;

  font-size: 20px;
  font-weight: 500;

  letter-spacing: -.025em;
}

.included__grid p {
  max-width: 300px;

  margin: 0;

  color: #777;

  font-size: 13px;

  line-height: 1.7;
}


/* =====================================================
 PROCESS
===================================================== */

.process {
  max-width: 1200px;
  margin: 0 auto;

  padding: 140px 40px 150px;

  border-top: 1px solid rgba(29,29,31,.1);
}

.process__intro {
  max-width: 800px;

  margin-bottom: 90px;
}


/* -----------------------------------------------------
 STEPS
----------------------------------------------------- */

.process__steps {
  border-top: 1px solid rgba(29,29,31,.12);
}

.process-step {
  display: grid;

  grid-template-columns: 100px 1fr;

  gap: 40px;

  padding: 35px 0;

  border-bottom: 1px solid rgba(29,29,31,.12);
}

.process-step__number {
  color: #aaa;

  font-size: 11px;

  letter-spacing: .12em;
}

.process-step h3 {
  margin: 0 0 10px;

  color: #1d1d1f;

  font-size: 22px;
  font-weight: 500;

  letter-spacing: -.025em;
}

.process-step p {
  max-width: 620px;

  margin: 0;

  color: #777;

  font-size: 14px;

  line-height: 1.7;
}


/* =====================================================
 MAINTENANCE — small adjustments to fit the new flow
===================================================== */

.maintenance {
  border-top: 1px solid rgba(29,29,31,.1);
}


/* =====================================================
 RESPONSIVE
===================================================== */

@media (max-width: 900px) {

  .offer,
  .included,
  .process {
      padding-left: 25px;
      padding-right: 25px;
  }

  .offer__grid {
      grid-template-columns: 1fr;
  }

  .offer-card--main {
      grid-row: auto;
  }

  .included__grid {
      grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 700px) {

  .offer,
  .included,
  .process {
      padding-top: 90px;
      padding-bottom: 100px;
  }

  .offer__intro,
  .included__intro,
  .process__intro {
      margin-bottom: 60px;
  }

  .offer__intro h2,
  .included__intro h2,
  .process__intro h2 {
      font-size: 48px;
  }

  .offer__intro > p,
  .included__intro > p {
      font-size: 15px;
  }


  /* Offer */

  .offer-card {
      min-height: auto;

      padding: 28px;
  }

  .offer-card--main {
      min-height: 500px;
  }

  .offer-card h3 {
      font-size: 32px;
  }

  .offer-card ul {
      grid-template-columns: 1fr;
  }

  .payment-steps {
      gap: 20px;
  }


  /* Included */

  .included__grid {
      grid-template-columns: 1fr;
  }

  .included__grid article {
      min-height: auto;

      padding: 25px;
  }

  .included__grid article > span {
      margin-bottom: 35px;
  }


  /* Process */

  .process-step {
      grid-template-columns: 45px 1fr;

      gap: 15px;

      padding: 28px 0;
  }

  .process-step h3 {
      font-size: 19px;
  }

  .process-step p {
      font-size: 13px;
  }


  /* Ownership */

  .offer__ownership {
      grid-template-columns: 36px 1fr;

      gap: 15px;
  }

}
.site-types__note {
  display: flex;
  align-items: baseline;
  gap: 12px;

  margin-top: 26px;

  color: #806f63;
  display: flex;
  align-items: center;
  gap: 18px;

  max-width: 720px;

  margin-top: 28px;
  padding: 16px 20px;

  border: 1px solid rgb(185 95 69 / 18%);
  border-radius: 14px;

  background: #f6e8df;
  font-size: 12px;
  line-height: 1.6;
}

.site-types__note-label {
  flex: 0 0 auto;

  color: #a55a43;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-types__note-text {
  max-width: 520px;
}
/* ========================================
   MOBILE
======================================== */
@media (max-width: 900px) {
}

@media (max-width: 700px) {
  .site-type > img {
    height: 190px;

    margin:
        24px 0
        28px;

    border-radius: 14px;
}
  .cards-container {
      grid-template-columns: 1fr;
  }
  .overlay {
      padding: 15px;
  }
  .preview {
      max-height: calc(100vh - 30px);
      border-radius: 10px;
  }
  .browser-bar {
      height: 42px;
      gap: 8px;
      padding: 0 9px;
  }
  .light {
      width: 11px;
      height: 11px;
  }
  .yellow {
      display: none;
  }
  .preview-frame {
      height: calc(100vh - 90px);
  }
}


/* ========================================
   VERY SMALL SCREENS
======================================== */
@media (max-width: 400px) {
  .site-card__content {
      padding: 16px;
  }
  .overlay {
      padding: 8px;
  }
  .preview {
      border-radius: 8px;
  }
}

