/* =========================================================
   MARKETPLACE
   MATCH EXISTING RARIFY MODULE STYLE
========================================================= */

.restaurant-growth-page .marketplace-section {
  width: 100%;
  background: #ffffff;
  padding: 120px 0 60px;
}

.restaurant-growth-page .marketplace-container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}


/* HEADER */

.restaurant-growth-page .marketplace-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}

.restaurant-growth-page .marketplace-number {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 17px;

  background: #f4511e;
  color: #ffffff;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
}

.restaurant-growth-page .marketplace-heading h2 {
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 37px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -1.4px;

  color: #090909;
}

.restaurant-growth-page .marketplace-heading h2 span {
  display: block;
  color: #f4511e;
}


/* INTRO COPY */

.restaurant-growth-page .marketplace-intro-copy {
  max-width: 760px;
  margin: 0 auto -20px;

  text-align: center;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.42;

  color: #242424;
}

/* =========================================================
   MAIN VISUAL
========================================================= */

.restaurant-growth-page .marketplace-visual-row {
  display: grid;

  grid-template-columns:
    300px
    34px
    205px
    minmax(0, 1fr);

  gap: 24px;
  align-items: center;

  max-width: 1320px;
  margin: 0 auto;
}


/* =========================================================
   NETWORK
========================================================= */

.restaurant-growth-page .marketplace-network {
  text-align: center;
}

.restaurant-growth-page .marketplace-network > img {
  width: 270px;
  height: 270px;

  object-fit: contain;

  display: block;
  margin: 0 auto;
}

.restaurant-growth-page .marketplace-network h3 {
  margin: 8px 0 5px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .8px;

  color: #111;
}

.restaurant-growth-page .marketplace-network p {
  max-width: 180px;
  margin: 0 auto;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  line-height: 1.35;

  color: #505050;
}


/* =========================================================
   ARROW
========================================================= */

.restaurant-growth-page .marketplace-arrow {
  text-align: center;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;

  color: #777;
}



/* =========================================================
   MATCHES — LARGE PORTRAIT PILLS
========================================================= */

.restaurant-growth-page .marketplace-matches {
  display: flex;
  flex-direction: column;
  gap: 10px;

  width: 190px;
}

.restaurant-growth-page .marketplace-match {
  position: relative;

  width: 190px;
  height: 58px;

  display: flex;
  align-items: center;

  padding: 0 18px 0 0;

  border: 1px solid #dedede;
  border-radius: 29px;

  background: #ffffff;

  overflow: visible;
}


/* LARGE PORTRAIT */

.restaurant-growth-page .marketplace-match img {
  width: 58px;
  height: 58px;

  flex: 0 0 58px;

  margin-left: -1px;
  margin-right: 14px;

  border-radius: 22px;

  object-fit: cover;
  object-position: center;

  display: block;
}


/* MATCH PERCENTAGE */

.restaurant-growth-page .marketplace-match span {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 12px;
  font-weight: 600;

  line-height: 1;

  white-space: nowrap;

  color: #111111;
}


/* HEADING BELOW */

.restaurant-growth-page .marketplace-matches h3 {
  margin: 22px 0 8px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;

  letter-spacing: 1.4px;

  color: #111111;
}



/* DESCRIPTION BELOW */

.restaurant-growth-page .marketplace-matches > p {
  width: 190px;

  margin: 0;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 11px;
  line-height: 1.4;

  color: #505050;
}





/* =========================================================
   MARKETPLACE PRODUCT IMAGE
========================================================= */

.restaurant-growth-page .marketplace-dashboard-wrap {
  width: 100%;
  max-width: none !important;

  justify-self: stretch !important;

  overflow: visible !important;

}


.restaurant-growth-page .marketplace-dashboard-wrap img {
  display: block;

  width: 100%;
  height: auto;

  background: transparent;
}



/* DISCOVERY ITEMS */

.restaurant-growth-page .marketplace-discovery-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);

  gap: 10px;
}

.restaurant-growth-page .marketplace-discovery-grid > div {
  text-align: center;
}

.restaurant-growth-page .marketplace-discovery-grid span {
  width: 34px;
  height: 34px;

  margin: 0 auto 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d4d4d4;
  border-radius: 50%;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;

  color: #333;
}

.restaurant-growth-page .marketplace-discovery-grid p {
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  line-height: 1.25;

  color: #333;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .restaurant-growth-page .marketplace-visual-row {
    grid-template-columns:
      190px
      24px
      140px;

    justify-content: center;
  }

  .restaurant-growth-page .marketplace-dashboard-wrap {
    grid-column: 1 / -1;
    max-width: 620px;
    margin: 18px auto 0;
    justify-self: center;
  }


  .restaurant-growth-page .marketplace-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .restaurant-growth-page .marketplace-discovery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .restaurant-growth-page .marketplace-section {
    padding: 45px 0 50px;
  }

  .restaurant-growth-page .marketplace-header {
    gap: 14px;
    align-items: flex-start;
  }

  .restaurant-growth-page .marketplace-number {
    width: 54px;
    height: 54px;
    flex-basis: 54px;

    font-size: 24px;
  }

  .restaurant-growth-page .marketplace-heading h2 {
    font-size: 29px;
  }

  .restaurant-growth-page .marketplace-intro-copy {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .restaurant-growth-page .marketplace-visual-row {
    display: flex;
    flex-direction: column;

    gap: 14px;
  }

  .restaurant-growth-page .marketplace-arrow {
    transform: rotate(90deg);
  }

  .restaurant-growth-page .marketplace-dashboard-wrap {
    max-width: 100%;
    margin-top: 10px;
  }

  .restaurant-growth-page .marketplace-bottom {
    margin-top: 25px;
  }

  .restaurant-growth-page .marketplace-discovery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
  }

@media (max-width: 650px) {

  .restaurant-growth-page .marketplace-heading h2 span {
    display: inline !important;
    white-space: normal !important;
  }

}

}







/* =========================================================
   DISCOVERY MODULE
   MATCH EXISTING RARIFY MODULE STYLE
========================================================= */

.restaurant-growth-page .discovery-module {
  position: relative;
  width: 100%;

  padding: 78px 0 55px;

  overflow: hidden;

  background: #ffffff;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.restaurant-growth-page .discovery-inner {
  width: min(1420px, calc(100% - 80px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.82fr 1.18fr;

  align-items: center;
  gap: 55px;
}


/* =========================================================
   LEFT COPY
========================================================= */

.restaurant-growth-page .discovery-copy {
  position: relative;

  z-index: 5;
}


/* NUMBER + LABEL */

.restaurant-growth-page .discovery-kicker {
  display: flex;

  align-items: center;

  gap: 24px;

  margin-bottom: 24px;
}


.restaurant-growth-page .discovery-number {
  width: 66px;
  height: 66px;

  flex: 0 0 66px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 17px;

  background: #f4511e;

  color: #ffffff;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 29px;

  font-weight: 700;

  line-height: 1;
}


.restaurant-growth-page .discovery-label {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 14px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.18em;

  color: #666666;
}


/* =========================================================
   HEADLINE
========================================================= */

.restaurant-growth-page .discovery-title {
  max-width: 560px;

  margin: 0 0 24px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 37px;

  font-weight: 700;

  line-height: 0.98;

  letter-spacing: -1.4px;

  color: #090909;
}


.restaurant-growth-page .discovery-title span {
  color: #f4511e;
}


/* =========================================================
   BODY COPY
========================================================= */

.restaurant-growth-page .discovery-body {
  max-width: 475px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 17px;

  font-weight: 400;

  line-height: 1.42;

  color: #242424;
}


.restaurant-growth-page .discovery-body p {
  margin: 0 0 18px;
}


/* =========================================================
   PAYOFF
========================================================= */

.restaurant-growth-page .discovery-payoff {
  margin-top: 22px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 14px;

  font-weight: 700;

  line-height: 1.35;

  letter-spacing: 0.12em;

  color: #f4511e;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.restaurant-growth-page .discovery-visual {
  position: relative;

  width: 700px;
  max-width: 100%;
  
  min-height: 555px;
}


/* =========================================================
   SEARCH BAR
========================================================= */

.restaurant-growth-page .discovery-search {
  position: absolute;

  top: 34px;
  left: 165px;

  width: 405px;
  min-height: 78px;

  padding: 15px 50px 15px 54px;

  display: flex;

  align-items: center;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.97);

  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.08),
    0 2px 7px rgba(0, 0, 0, 0.04);

  z-index: 6;
}


.restaurant-growth-page .search-spark {
  position: absolute;

  left: 18px;
  top: 50%;

  transform: translateY(-50%);

  color: #f4511e;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 27px;
}


.restaurant-growth-page .search-copy {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.28;

  color: #151515;
}


.restaurant-growth-page .search-icon {
  position: absolute;

  right: 22px;
  top: 50%;

  width: 18px;
  height: 18px;

  transform: translateY(-50%);

  border: 2px solid #111111;

  border-radius: 50%;
}


.restaurant-growth-page .search-icon::after {
  content: "";

  position: absolute;

  right: -6px;
  bottom: -5px;

  width: 8px;
  height: 2px;

  background: #111111;

  transform: rotate(45deg);
}


/* =========================================================
   SEARCH RESULT
========================================================= */

.restaurant-growth-page .discovery-result {
  position: absolute;

  top: 130px;
  left: 170px;

  width: 365px;

  padding: 22px 22px 21px;

  border-radius: 23px;

  background: #ffffff;

  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.11),
    0 0 0 6px rgba(245, 245, 245, 0.9);

  z-index: 5;
}


/* TABS */

.restaurant-growth-page .result-tabs {
  display: flex;

  gap: 18px;

  margin-bottom: 18px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 10px;

  color: #9a9a9a;
}


.restaurant-growth-page .result-tabs span {
  white-space: nowrap;
}


.restaurant-growth-page .result-tabs .active {
  position: relative;

  color: #111111;

  font-weight: 700;
}


.restaurant-growth-page .result-tabs .active::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: -7px;

  height: 2px;

  background: #111111;
}


/* RARIFY RECOMMENDS */

.restaurant-growth-page .result-brand {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 7px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 10px;

  color: #777777;
}


.restaurant-growth-page .result-brand-icon {
  width: 20px;
  height: 20px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f4511e;

  color: #ffffff;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 10px;

  font-weight: 700;
}


/* RESULT TITLE */

.restaurant-growth-page .result-title {
  margin-bottom: 4px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 22px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: -0.6px;

  color: #111111;
}


.restaurant-growth-page .result-meta {
  margin-bottom: 14px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 10px;

  color: #7d7d7d;
}


.restaurant-growth-page .result-meta span {
  color: #f3a327;
}


/* IMAGES */

.restaurant-growth-page .result-images {
  display: grid;

  grid-template-columns: 1.25fr 1.05fr 0.45fr;

  height: 118px;

  gap: 4px;

  margin-bottom: 14px;

  overflow: hidden;

  border-radius: 10px;
}


.restaurant-growth-page .result-images img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* DESCRIPTION */

.restaurant-growth-page .result-description {
  margin: 0 0 14px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 11px;

  font-weight: 400;

  line-height: 1.4;

  color: #444444;
}


/* TAGS */

.restaurant-growth-page .result-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 6px;
}


.restaurant-growth-page .result-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  background: #f2f2f2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.15;
  color: #444444;
}


/* =========================================================
   QUERY AVATARS
========================================================= */

.restaurant-growth-page .query-card {
  position: absolute;

  z-index: 7;
}


.restaurant-growth-page .query-avatar {
  width: 135px;
  height: 135px;

  overflow: hidden;

  border-radius: 50%;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08);
}


.restaurant-growth-page .query-avatar img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


.restaurant-growth-page .query-bubble {
  position: absolute;

  min-width: 145px;

  padding: 8px 12px;

  border-radius: 16px;

  background: rgba(245, 245, 245, 0.97);

  font-family: Arial, Helvetica, sans-serif;

  font-size: 10px;

  font-weight: 400;

  line-height: 1.2;

  color: #252525;
}


/* QUERY 1 */

.restaurant-growth-page .query-card--1 {
  top: 25px;
  left: -10px;
}


.restaurant-growth-page .query-card--1 .query-bubble {
  left: -28px;
  bottom: -31px;
}


/* QUERY 2 */

.restaurant-growth-page .query-card--2 {
  top: 220px;
  left: -6px;
}


.restaurant-growth-page .query-card--2 .query-bubble {
  left: -30px;
  bottom: -30px;
}


/* QUERY 3 */

.restaurant-growth-page .query-card--3 {
  top: 410px;
  left: -2px;
}


.restaurant-growth-page .query-card--3 .query-bubble {
  left: -28px;
  bottom: -30px;
}


/* =========================================================
   RESTAURANT HERO IMAGE
========================================================= */

.restaurant-growth-page .restaurant-circle {
  position: absolute;

  right: 0px;
  top: 40px;

  width: 450px;
  height: 450px;

  overflow: hidden;

  border-radius: 52% 48% 50% 50% / 50%;

  z-index: 1;
}


.restaurant-growth-page .restaurant-circle img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

    /* Adjust this if you want more wine glass / table visible */

  object-position: 50% 50%;
}


/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.restaurant-growth-page .discovery-orbit {
  position: absolute;

  border-radius: 50%;

  background: #f1eeea;

  z-index: 0;
}


.restaurant-growth-page .discovery-orbit--large {
  width: 205px;
  height: 205px;

  right: -2px;
  top: 0;
}


.restaurant-growth-page .discovery-orbit--small {
  width: 98px;
  height: 98px;

  left: 72px;
  top: 62px;

  opacity: 0.55;
}


.restaurant-growth-page .discovery-dot {
  position: absolute;

  border-radius: 50%;

  background: #f4511e;

  z-index: 3;
}


.restaurant-growth-page .discovery-dot--1 {
  width: 45px;
  height: 45px;

  right: 15px;
  top: 38px;
}


.restaurant-growth-page .discovery-dot--2 {
  width: 13px;
  height: 13px;

  left: 162px;
  top: 202px;
}

/* =========================================================
   REMOVE STRAY ORANGE DOT
========================================================= */

.restaurant-growth-page .discovery-dot--2 {
  display: none;
}


/* Hide the abbreviated Discovery copy on desktop. */

.restaurant-growth-page .discovery-copy-mobile {

  display: none;

}


/* =========================================================
   MEDIUM DESKTOP
========================================================= */

@media (max-width: 1200px) {

  .restaurant-growth-page .discovery-inner {
    width: min(1180px, calc(100% - 60px));

    grid-template-columns: 0.8fr 1.2fr;

    gap: 25px;
  }


  .restaurant-growth-page .discovery-visual {
    width: 111%;

    transform: scale(0.9);

    transform-origin: center left;

    margin-bottom: -45px;
  }


/* =========================================================
   MEDIUM DESKTOP
========================================================= */

@media (max-width: 1200px) {

  .restaurant-growth-page .discovery-inner {
    width: min(1180px, calc(100% - 60px));

    grid-template-columns: 0.8fr 1.2fr;

    gap: 25px;
  }


  .restaurant-growth-page .discovery-visual {
    width: 111%;

    transform: scale(0.9);

    transform-origin: center left;

    margin-bottom: -45px;
  }

}

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

  .restaurant-growth-page .discovery-module {
    padding: 70px 0 40px;
  }


  .restaurant-growth-page .discovery-inner {
    display: block;

    width: min(720px, calc(100% - 40px));
  }


  .restaurant-growth-page .discovery-copy {
    max-width: 560px;

    margin-bottom: 40px;
  }


  .restaurant-growth-page .discovery-visual {
    width: 720px;

    min-height: 555px;

    transform: scale(0.88);

    transform-origin: top left;

    margin-bottom: -60px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .restaurant-growth-page .discovery-module {
    padding: 50px 0 35px;
  }


  .restaurant-growth-page .discovery-inner {
    width: calc(100% - 34px);
  }


  .restaurant-growth-page .discovery-kicker {
    gap: 14px;

    margin-bottom: 22px;
  }


  .restaurant-growth-page .discovery-number {
    width: 54px;
    height: 54px;

    flex-basis: 54px;

    border-radius: 17px;

    font-size: 24px;
  }


  .restaurant-growth-page .discovery-label {
    font-size: 12px;
  }


  .restaurant-growth-page .discovery-title {
    max-width: 100%;

    margin-bottom: 22px;

    font-size: 29px;

    line-height: 1;
  }


  .restaurant-growth-page .discovery-body {
    max-width: 100%;

    font-size: 16px;
  }


  .restaurant-growth-page .discovery-payoff {
    font-size: 12px;
  }


  .restaurant-growth-page .discovery-visual {
    width: 720px;

    margin-top: 20px;

    transform: scale(0.48);

    transform-origin: top left;

    margin-bottom: -275px;
  }

@media (max-width: 650px) {

  /* Replace the full desktop copy with shorter mobile copy. */

  .restaurant-growth-page .discovery-copy-desktop {
    display: none !important;
  }

  .restaurant-growth-page .discovery-copy-mobile {
    display: block !important;

    margin: 32px 0 0 !important;
    padding: 0 !important;

    font-family: Gotham, Montserrat, Arial, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.42 !important;
    font-weight: 400 !important;

    color: #2d2d2d !important;
  }

  /* Remove the two orange payoff statements on mobile. */

  .restaurant-growth-page .discovery-payoff {
    display: none !important;
  }
}


}





/* =========================================================
   03 — CONVERSION
   MATCH EXISTING RARIFY MODULE STYLE
========================================================= */

.restaurant-growth-page .conversion-module {
  position: relative;
  width: 100%;
  min-height: 100vh;

  padding: 225px 0 24px;

  overflow: hidden;

  background: #ffffff;

  box-sizing: border-box;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.restaurant-growth-page .conversion-inner {
  width: min(1480px, calc(100% - 84px));
  margin: 0 auto;

  display: grid;

  grid-template-columns: 1.18fr 0.82fr;
  gap: 56px;

  align-items: center;
}


/* VISUAL ON LEFT */

.restaurant-growth-page .conversion-visual {
  grid-column: 1;
  grid-row: 1;
}

/* COPY ON RIGHT */

.restaurant-growth-page .conversion-copy {
  grid-column: 2;
  grid-row: 1;

  position: relative;
  z-index: 10;

  padding-left: 20px;
  padding-top: 0;

  align-self: center;
}



/* NUMBER + LABEL */

.restaurant-growth-page .conversion-kicker {
  display: flex;

  align-items: center;

  gap: 24px;

  margin-bottom: 24px;
}


.restaurant-growth-page .conversion-number {
  width: 66px;
  height: 66px;

  flex: 0 0 66px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 17px;

  background: #f4511e;

  color: #ffffff;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 29px;

  font-weight: 700;

  line-height: 1;
}


.restaurant-growth-page .conversion-label {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 14px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.18em;

  color: #666666;
}


/* =========================================================
   HEADLINE
========================================================= */

.restaurant-growth-page .conversion-title {
  max-width: 520px;

  margin: 0 0 24px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 37px;

  font-weight: 700;

  line-height: 0.98;

  letter-spacing: -1.4px;

  color: #090909;
}


.restaurant-growth-page .conversion-title span {
  color: #f4511e;
}


/* =========================================================
   BODY COPY
========================================================= */

.restaurant-growth-page .conversion-body {
  max-width: 510px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 17px;

  font-weight: 400;

  line-height: 1.42;

  color: #242424;
}


.restaurant-growth-page .conversion-body p {
  margin: 0 0 18px;
}


/* =========================================================
   PAYOFF
========================================================= */

.restaurant-growth-page .conversion-payoff {
  margin-top: 22px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 14px;

  font-weight: 700;

  line-height: 1.35;

  letter-spacing: 0.12em;

  color: #f4511e;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.restaurant-growth-page .conversion-visual {
  position: relative;

  width: 100%;
  min-width: 0;

  grid-column: 1;
  grid-row: 1;
}


/* =========================================================
   CONVERSION — EXPERIENCE STAT CARD
========================================================= */

.restaurant-growth-page .conversion-experience-card {
  position: relative;

  width: 100%;
  min-height: 560px;

  overflow: hidden;

  border-radius: 22px;

  background-image: url("https://marketing-rarify.b-cdn.net/man_enjoying_dinner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  font-family: Arial, Helvetica, sans-serif;
}


/* FORCE ALL INFOGRAPHIC TYPE TO SANS-SERIF */

.restaurant-growth-page .conversion-experience-card,
.restaurant-growth-page .conversion-experience-card * {
  font-family: Arial, Helvetica, sans-serif !important;
}


.restaurant-growth-page .conversion-experience-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.79) 0%,
      rgba(0, 0, 0, 0.67) 40%,
      rgba(0, 0, 0, 0.36) 70%,
      rgba(0, 0, 0, 0.12) 100%
    );
}


.restaurant-growth-page .conversion-experience-stat {
  position: relative;
  left: 45px;
}


.restaurant-growth-page .conversion-experience-insight {
  position: relative;
  left: -50px;
}

.restaurant-growth-page .conversion-experience-content {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 26px;
  align-items: center;

  min-height: 560px;

  padding: 48px 42px;
}


/* =========================================================
   80% SIDE
========================================================= */

.restaurant-growth-page .conversion-experience-stat {
  min-width: 0;
}


.restaurant-growth-page .conversion-experience-number {
  color: #ffffff;

  font-size: clamp(165px, 13vw, 225px);
  font-weight: 700;

  line-height: 0.72;
  letter-spacing: -0.085em;

  white-space: nowrap;
}


.restaurant-growth-page .conversion-experience-number span {
  display: inline-block;

  margin-left: 3px;

  font-size: 0.45em;
  font-weight: 700;

  vertical-align: top;

  transform: translateY(10px);
}


.restaurant-growth-page .conversion-experience-label {
  margin-top: 30px;

  color: #ffffff;

  font-size: 16px;
  font-weight: 700;

  line-height: 1;
  letter-spacing: 0.19em;
}


.restaurant-growth-page .conversion-experience-rule {
  width: 50px;
  height: 3px;

  margin-top: 24px;

  background: #f4511e;
}


.restaurant-growth-page .conversion-experience-copy {
  max-width: 245px;

  margin: 20px 0 0;

  color: rgba(255,255,255,0.96);

  font-size: 15px;
  font-weight: 400;

  line-height: 1.45;
}


/* =========================================================
   RARIFY INSIGHT SIDE
========================================================= */

.restaurant-growth-page .conversion-experience-insight {
  position: relative;

  padding-left: 32px;

  border-left: 1px solid rgba(255,255,255,0.55);
}


.restaurant-growth-page .conversion-experience-kicker {
  margin-bottom: 16px;

  color: #f4511e;

  font-size: 13px;
  font-weight: 700;

  line-height: 1;
  letter-spacing: 0.16em;
}


.restaurant-growth-page .conversion-experience-title {
  max-width: 240px;

  color: #ffffff;

  font-size: clamp(34px, 3vw, 46px);
  font-weight: 700;

  line-height: 0.97;
  letter-spacing: -0.04em;
}


.restaurant-growth-page .conversion-experience-small {
  margin-top: 24px;

  color: #ffffff;

  font-size: 12px;
  font-weight: 700;

  line-height: 1.45;
  letter-spacing: 0.17em;
}








/* =========================================================
   BACKGROUND GRAPHICS
========================================================= */

.restaurant-growth-page .conversion-bg-circle {
  position: absolute;

  top: -62px;
  right: 35px;

  width: 245px;
  height: 245px;

  border-radius: 50%;
  background: rgba(255, 84, 40, 0.07);

  z-index: 0;
}


.restaurant-growth-page .conversion-dot {
  position: absolute;

  top: -10px;
  right: 20px;

  width: 24px;
  height: 24px;

  border-radius: 50%;

  background: #f4511e;

  z-index: 3;
}


.restaurant-growth-page .conversion-dot-line {
  position: absolute;

  top: -6px;
  right: -35px;

  width: 80px;
  height: 110px;

  border-top: 3px dotted #ff5428;
  border-right: 3px dotted #ff5428;

  border-radius: 0 80px 0 0;
  transform: rotate(13deg);

  z-index: 2;
}


/* =========================================================
   STEP 1 — SEARCH RESULT CARD
========================================================= */

.restaurant-growth-page .conversion-discovery-card {
position: absolute;

  left: 0;

  top: 165px;
  width: 172px;

  padding: 15px 12px 12px;
  border-radius: 16px;

  background: #fff;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.09);

  z-index: 9;
}


.restaurant-growth-page .mini-search-row {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 10px;
}


.restaurant-growth-page .mini-search-icon {
  position: relative;

  flex: 0 0 auto;

  width: 14px;
  height: 14px;

  border: 1.4px solid #111111;

  border-radius: 50%;
}


.restaurant-growth-page .mini-search-icon::after {
  content: "";

  position: absolute;

  right: -5px;
  bottom: -3px;

  width: 6px;
  height: 1.4px;

  background: #111111;

  transform: rotate(45deg);
}


.restaurant-growth-page .mini-search-copy {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 8px;

  font-weight: 400;

  line-height: 1.25;

  color: #171717;
}


.restaurant-growth-page .mini-result-image {
  display: block;

  width: 100%;
  height: 64px;

  margin-bottom: 8px;

  object-fit: cover;

  border-radius: 5px;
}


.restaurant-growth-page .mini-result-name {
  margin-bottom: 3px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 12px;

  font-weight: 700;

  line-height: 1.1;

  color: #111111;
}


.restaurant-growth-page .mini-result-meta {
  margin-bottom: 3px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 7px;

  color: #777777;
}


.restaurant-growth-page .mini-result-meta span {
  color: #e7a126;
}


.restaurant-growth-page .mini-result-category {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 7px;

  color: #666666;
}


.restaurant-growth-page .mini-result-arrow {
  position: absolute;

  right: 10px;
  bottom: 14px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 14px;

  color: #222222;
}


/* =========================================================
   STEP 2 — TABLET
========================================================= */

.restaurant-growth-page .conversion-tablet {
position: absolute;

  left: 140px;
  top: 4px;

  width: 425px;
  height: 535px;

  padding: 9px;
  border-radius: 27px;

  background: #151515;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.13);

  z-index: 5;
}


.restaurant-growth-page .tablet-camera {
  position: absolute;

  left: 50%;
  top: 4px;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #333333;

  transform: translateX(-50%);
}


.restaurant-growth-page .tablet-screen {
  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 18px;

  background: #ffffff;
}


/* =========================================================
   TABLET HERO
========================================================= */

.restaurant-growth-page .tablet-hero {
  position: relative;

  height: 238px;

  overflow: hidden;
}


.restaurant-growth-page .tablet-hero > img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


.restaurant-growth-page .tablet-hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.52),
      rgba(0, 0, 0, 0.05) 62%,
      rgba(0, 0, 0, 0.15)
    );
}


/* =========================================================
   TABLET BRAND
========================================================= */

.restaurant-growth-page .tablet-brand {
  position: absolute;

  top: 22px;
  left: 24px;

  color: #ffffff;
}


.restaurant-growth-page .tablet-brand-name {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 27px;

  font-weight: 700;

  line-height: 0.9;

  letter-spacing: -1px;
}


.restaurant-growth-page .tablet-brand-sub {
  margin-top: 10px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 6px;

  font-weight: 600;

  letter-spacing: 0.12em;
}


.restaurant-growth-page .tablet-brand-message {
  position: absolute;

  top: 28px;
  right: 22px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 6px;

  font-weight: 600;

  line-height: 1.4;

  letter-spacing: 0.14em;

  color: #ffffff;
}


/* =========================================================
   TABLET RESERVE BUTTON
========================================================= */

.restaurant-growth-page .tablet-reserve-btn {
  position: absolute;

  left: 50%;
  bottom: 13px;

  transform: translateX(-50%);

  min-width: 125px;

  padding: 8px 12px;

  border: 0;

  border-radius: 999px;

  background: #ffffff;

  color: #111111;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 8px;

  font-weight: 600;

  cursor: pointer;
}


.restaurant-growth-page .tablet-reserve-btn span {
  padding-left: 9px;
}


/* =========================================================
   TABLET NAV
========================================================= */

.restaurant-growth-page .tablet-nav {
  height: 35px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 19px;

  padding: 0 9px;

  border-bottom: 1px solid #e4e4e4;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 7px;

  font-weight: 500;

  white-space: nowrap;
}


/* =========================================================
   TABLET LOWER CONTENT
========================================================= */

.restaurant-growth-page .tablet-content {
  display: grid;

  grid-template-columns: 0.9fr 1fr 1fr;

  gap: 6px;

  padding: 12px;
}


.restaurant-growth-page .tablet-story {
  padding: 3px;
}


.restaurant-growth-page .tablet-story h3 {
  margin: 0 0 12px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 14px;

  font-weight: 700;

  line-height: 1.02;

  letter-spacing: -0.4px;

  color: #111111;
}


.restaurant-growth-page .tablet-story p {
  margin: 0 0 10px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 6.5px;

  font-weight: 400;

  line-height: 1.38;

  color: #222222;
}


.restaurant-growth-page .tablet-story a {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 5.5px;

  font-weight: 700;

  letter-spacing: 0.1em;

  color: #111111;

  text-decoration: none;
}


.restaurant-growth-page .tablet-story-image {
  height: 126px;

  overflow: hidden;
}


.restaurant-growth-page .tablet-story-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* =========================================================
   STEP 3 — PHONE
========================================================= */

.restaurant-growth-page .conversion-phone {
  position: absolute;

  top: 51px;
  left: 535px;

  right: auto;
  width: 218px;

  height: 488px;
  padding: 7px;

  border-radius: 32px;
  background: #171717;

  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.14);

  z-index: 10;
}


.restaurant-growth-page .phone-speaker {
  position: absolute;

  left: 50%;
  top: 6px;

  width: 62px;
  height: 15px;

  border-radius: 0 0 10px 10px;

  background: #171717;

  transform: translateX(-50%);

  z-index: 12;
}


.restaurant-growth-page .phone-screen {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  padding: 24px 11px 12px;

  border-radius: 25px;

  background: #ffffff;
}


/* =========================================================
   PHONE HEADER
========================================================= */

.restaurant-growth-page .phone-topbar {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding-bottom: 11px;

  border-bottom: 1px solid #dddddd;
}


.restaurant-growth-page .phone-brand {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 9px;

  font-weight: 600;

  color: #111111;
}


.restaurant-growth-page .phone-menu {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 12px;

  color: #111111;
}


/* =========================================================
   PHONE WELCOME
========================================================= */

.restaurant-growth-page .phone-welcome {
  padding: 10px 0 7px;
}


.restaurant-growth-page .phone-welcome h3 {
  margin: 0 0 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #111111;
}


.restaurant-growth-page .phone-welcome p {
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 7px;

  font-weight: 400;

  line-height: 1.3;

  color: #222222;
}


/* =========================================================
   PERSONALIZED MENU ITEMS
========================================================= */

.restaurant-growth-page .taste-item {
  display: grid;

  grid-template-columns: 61px 1fr;

  gap: 8px;

  margin: 6px 0;
}


.restaurant-growth-page .taste-item img {
  display: block;

  width: 61px;
  height: 61px;

  object-fit: cover;

  border-radius: 4px;
}


.restaurant-growth-page .taste-info {
  min-width: 0;
}


.restaurant-growth-page .taste-score {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 16px;

  font-weight: 700;

  line-height: 1;

  color: #f4511e;
}


.restaurant-growth-page .taste-label {
  margin-top: 2px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 4.5px;

  font-weight: 700;

  letter-spacing: 0.1em;

  color: #111111;
}


.restaurant-growth-page .taste-name {
  margin-top: 3px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 7px;

  font-weight: 700;

  line-height: 1.1;

  color: #111111;
}


.restaurant-growth-page .taste-description {
  margin-top: 2px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 5px;

  font-weight: 400;

  line-height: 1.25;

  color: #555555;
}


/* =========================================================
   PHONE RESERVE BUTTON
========================================================= */

.restaurant-growth-page .phone-reserve-btn {
  position: absolute;

  left: 11px;
  right: 11px;
  bottom: 11px;

  padding: 8px 9px;

  border: 0;

  border-radius: 999px;

  background: #111111;

  color: #ffffff;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 7px;

  font-weight: 600;

  cursor: pointer;
}


.restaurant-growth-page .phone-reserve-btn span {
  float: right;
}


/* =========================================================
   STEP LABELS
========================================================= */

.restaurant-growth-page .conversion-step {
  position: absolute;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 8px;

  font-weight: 400;

  line-height: 1.3;

  color: #222222;

  z-index: 15;
}


.restaurant-growth-page .step-title {
  margin-bottom: 3px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 8px;

  font-weight: 700;

  line-height: 1.2;

  letter-spacing: 0.08em;

  color: #111111;
}


.restaurant-growth-page .step-copy {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 8px;

  font-weight: 400;

  line-height: 1.3;

  color: #505050;
}


.restaurant-growth-page .conversion-step--one {
  left: 4px;
  top: 447px;
}


.restaurant-growth-page .conversion-step--two {
  left: 170px;
  top: 546px;
}


.restaurant-growth-page .conversion-step--three {
  left: 555px;
  right: auto;
  top: 546px;
}


/* =========================================================
   BUSINESS OUTCOMES
========================================================= */

.restaurant-growth-page .conversion-results {
  width: min(1480px, calc(100% - 84px));

  margin: 34px auto 0;

  padding: 20px 0 5px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid #e3e3e3;
}


.restaurant-growth-page .conversion-result {
  min-height: 64px;

  display: flex;
  align-items: center;

  gap: 16px;

  padding: 0 34px;

  border-right: 1px solid #e3e3e3;
}


.restaurant-growth-page .conversion-result:first-child {
  padding-left: 0;
}


.restaurant-growth-page .conversion-result:last-child {
  border-right: 0;
}


.restaurant-growth-page .conversion-result-icon {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f4511e;
}


.restaurant-growth-page .conversion-result-icon svg {
  width: 24px;
  height: 24px;

  fill: none;

  stroke: #ffffff;

  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}


.restaurant-growth-page .conversion-result-title {
  margin-bottom: 3px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 10px;

  font-weight: 700;

  line-height: 1.18;

  letter-spacing: 0.08em;

  color: #111111;
}


.restaurant-growth-page .conversion-result-copy {
  font-family: Arial, Helvetica, sans-serif;

  font-size: 10px;

  font-weight: 400;

  line-height: 1.28;

  color: #626262;
}


/* =========================================================
   MEDIUM DESKTOP
========================================================= */

@media (max-width: 1200px) {

  .restaurant-growth-page .conversion-inner {
    width: min(1180px, calc(100% - 60px));

    grid-template-columns: 0.8fr 1.2fr;

    gap: 25px;
  }

  .restaurant-growth-page .conversion-results {
    width: min(1180px, calc(100% - 60px));
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

  .restaurant-growth-page .conversion-module {
    min-height: auto;
    padding: 70px 0 35px;
  }

  .restaurant-growth-page .conversion-inner {
    display: flex;
    flex-direction: column;

    width: min(720px, calc(100% - 40px));
  }

  .restaurant-growth-page .conversion-copy {
    order: 1;

    max-width: 560px;

    margin-bottom: 35px;
    padding-left: 0;
  }

  .restaurant-growth-page .conversion-visual {
    order: 2;

    width: 100%;

    transform: none;
    margin: 0;
  }

  .restaurant-growth-page .conversion-results {
    width: min(720px, calc(100% - 40px));

    grid-template-columns: 1fr;
  }

  .restaurant-growth-page .conversion-result {
    padding: 18px 0;

    border-right: 0;
    border-bottom: 1px solid #e3e3e3;
  }

  .restaurant-growth-page .conversion-result:last-child {
    border-bottom: 0;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .restaurant-growth-page .conversion-module {
    padding: 50px 0 30px;
  }


  .restaurant-growth-page .conversion-inner,
  .restaurant-growth-page .conversion-results {
    width: calc(100% - 34px);
  }


  .restaurant-growth-page .conversion-kicker {
    gap: 14px;

    margin-bottom: 22px;
  }


  .restaurant-growth-page .conversion-number {
    width: 54px;
    height: 54px;

    flex-basis: 54px;

    font-size: 24px;
  }


  .restaurant-growth-page .conversion-label {
    font-size: 12px;
  }


  .restaurant-growth-page .conversion-title {
    max-width: 100%;

    margin-bottom: 22px;

    font-size: 29px;

    line-height: 1;
  }


  .restaurant-growth-page .conversion-body {
    max-width: 100%;

    font-size: 16px;
  }


  .restaurant-growth-page .conversion-payoff {
    font-size: 12px;
  }


.restaurant-growth-page .conversion-visual {
  width: 100%;
  margin-top: 20px;
  transform: none;
}


@media (max-width: 650px) {

  .restaurant-growth-page .conversion-experience-card {
    min-height: 700px;

    border-radius: 18px;

    background-position: 62% center;
  }

  .restaurant-growth-page .conversion-experience-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.18) 0%,
        rgba(0,0,0,0.45) 32%,
        rgba(0,0,0,0.79) 64%,
        rgba(0,0,0,0.92) 100%
      );
  }

  .restaurant-growth-page .conversion-experience-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    min-height: 700px;

    padding: 34px 26px 38px;
  }

  .restaurant-growth-page .conversion-experience-number {
    font-size: clamp(125px, 43vw, 175px);
  }

  .restaurant-growth-page .conversion-experience-label {
    margin-top: 25px;

    font-size: 14px;
  }

  .restaurant-growth-page .conversion-experience-copy {
    max-width: 270px;

    font-size: 14px;
  }

  .restaurant-growth-page .conversion-experience-insight {
    margin-top: 30px;

    padding: 28px 0 0;

    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.5);
  }

  .restaurant-growth-page .conversion-experience-title {
    max-width: 280px;

    font-size: 42px;
  }
}



  .restaurant-growth-page .conversion-result {
    gap: 14px;

    padding: 16px 0;
  }


  .restaurant-growth-page .conversion-result-icon {
    width: 42px;
    height: 42px;

    flex-basis: 42px;
  }

  /* CONVERSION — HIDE BUSINESS OUTCOMES ON MOBILE */

.restaurant-growth-page .conversion-results {
  display: none !important;

}
}






/* =========================================================
   04 — REVENUE MODULE
========================================================= */

.revenue-module {
  position: relative;
  width: 100%;
  padding: 175px 0 190px;
  background: #fff;
  overflow: hidden;
}

.revenue-inner {
  width: min(1500px, calc(100% - 100px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  gap: 75px;
}


/* =========================================================
   REVENUE — LEFT
========================================================= */

.revenue-copy {
  position: relative;
  z-index: 3;
}

.revenue-kicker {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
}

.revenue-number {
  width: 74px;
  height: 74px;
  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  background: #ff5428;

  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.revenue-kicker-text {
  color: #7d7d7d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.15em;
}

.revenue-title {
  margin: 0 0 28px;

  max-width: 650px;

  color: #171717;
  font-size: clamp(42px, 4vw, 63px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.revenue-title span {
  color: #ff5428;
}

.revenue-body {
  max-width: 610px;
  margin: 0 0 18px;

  color: #555;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
}

.revenue-body--strong {
  color: #222;
  font-weight: 500;
}


/* =========================================================
   REVENUE — RIGHT VISUAL
========================================================= */

.revenue-visual {
  position: relative;
  min-width: 0;
}

.revenue-menu-card {
  position: relative;

  width: min(100%, 780px);
  margin-left: auto;

  padding: 18px;

  border: 1px solid #e9e9e9;
  border-radius: 30px;

  background: #fafafa;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.08),
    0 4px 16px rgba(0,0,0,0.04);
}

.revenue-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 4px 8px 15px;
}

.revenue-menu-label,
.revenue-menu-match {
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.revenue-menu-label {
  color: #777;
}

.revenue-menu-match {
  color: #ff5428;
}

.revenue-menu-image {
  position: relative;
  width: 100%;
  overflow: hidden;

  border-radius: 20px;
  background: #eee;
}

.revenue-menu-image img {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================================================
   REVENUE FLOW
========================================================= */

.revenue-flow {
  position: relative;
  width: min(100%, 780px);
  margin: 18px 0 0 auto;
  padding-top: 20px;

  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 18px;
}

.revenue-step {
  min-width: 0;
}

.revenue-step-number {
  margin-bottom: 9px;

  color: #ff5428;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.revenue-step-title {
  margin-bottom: 8px;

  color: #191919;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.revenue-step-copy {
  color: #777;
  font-size: 13px;
  line-height: 1.5;
}

.revenue-step--final .revenue-step-title {
  color: #ff5428;
}

.revenue-arrow {
  color: #c4c4c4;
  font-size: 24px;
  font-weight: 300;
}




/* =========================================================
   FINAL MENU CTA
========================================================= */

.menu-cta-module {
  position: relative;
  width: 100%;

  padding: 105px 0 110px;

  overflow: hidden;

  background: #ff5428;
}

.menu-cta-inner {
  position: relative;
  z-index: 3;

  width: min(1180px, calc(100% - 100px));
  margin: 0 auto;

  text-align: center;
}


/* =========================================================
   DECORATIVE ORBITS
========================================================= */

.menu-cta-orbit {
  position: absolute;

  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;

  pointer-events: none;
}

.menu-cta-orbit--one {
  width: 760px;
  height: 760px;

  top: -500px;
  left: -170px;
}

.menu-cta-orbit--two {
  width: 620px;
  height: 620px;

  right: -230px;
  bottom: -390px;
}


/* =========================================================
   CTA MARK
========================================================= */

.menu-cta-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 17px;

  background: #fff;
}

.menu-cta-r {
  position: relative;
  top: -1px;

  color: #ff5428;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
}


/* =========================================================
   CTA COPY
========================================================= */

.menu-cta-eyebrow {
  margin: 0 0 17px;

  color: rgba(255,255,255,0.74);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.menu-cta-title {
  margin: 0 auto 22px;
  max-width: 900px;

  color: #fff;
  font-size: clamp(48px, 5vw, 74px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.menu-cta-title span {
  display: inline;
}

.menu-cta-body {
  max-width: 710px;
  margin: 0 auto;

  color: rgba(255,255,255,0.88);
  font-size: 18px;
  line-height: 1.6;
}


/* =========================================================
   CTA VALUE PATH
========================================================= */

.menu-cta-path {
  max-width: 900px;
  margin: 54px auto 48px;

  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.menu-cta-stage {
  min-width: 0;
}

.menu-cta-stage-label {
  margin-bottom: 5px;

  color: rgba(255,255,255,0.6);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.menu-cta-stage-title {
  margin-bottom: 10px;

  color: #fff;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.menu-cta-stage-copy {
  max-width: 190px;
  margin: 0 auto;

  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.45;
}

.menu-cta-path-arrow {
  color: rgba(255,255,255,0.45);
  font-size: 27px;
  line-height: 1;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.menu-cta-button {
  min-width: 275px;
  min-height: 62px;

  padding: 0 29px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  border-radius: 999px;

  background: #fff;

  color: #ff5428;
  text-decoration: none;

  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.menu-cta-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 14px 35px rgba(0,0,0,0.14);
}

.menu-cta-button-arrow {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

.menu-cta-note {
  margin-top: 18px;

  color: rgba(255,255,255,0.62);
  font-size: 12px;
  line-height: 1.4;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

  .revenue-module {
    padding: 135px 0 155px;
  }

  .revenue-inner {
    width: min(100% - 60px, 900px);

    grid-template-columns: 1fr;
    gap: 55px;
  }

  .revenue-copy {
    max-width: 720px;
  }

  .revenue-menu-card {
    margin: 0 auto;
  }



  .menu-cta-inner {
    width: min(100% - 60px, 1000px);
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 720px) {

  .revenue-module {
    padding: 75px 0 85px;
  }

  .revenue-inner {
    width: calc(100% - 36px);
    gap: 42px;
  }

  .revenue-kicker {
    gap: 16px;
    margin-bottom: 26px;
  }

  .revenue-number {
    width: 60px;
    height: 60px;

    border-radius: 18px;

    font-size: 25px;
  }

  .revenue-kicker-text {
    font-size: 10px;
  }

  .revenue-title {
    font-size: 42px;
  }

  .revenue-body {
    font-size: 16px;
  }

  .revenue-menu-card {
    padding: 12px;
    border-radius: 22px;
  }

  .revenue-menu-image {
    border-radius: 15px;
  }

  .revenue-flow {
    width: 100%;

    grid-template-columns: 1fr;
    gap: 22px;
  }

  .revenue-arrow {
    display: none;
  }

  .revenue-step {
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
  }

  .revenue-step:last-child {
    border-bottom: 0;
  }




  .menu-cta-module {
    padding: 80px 0 82px;
  }

  .menu-cta-inner {
    width: calc(100% - 36px);
  }

  .menu-cta-title {
    font-size: 48px;
  }

  .menu-cta-body {
    font-size: 16px;
  }

  .menu-cta-path {
    margin: 43px auto 40px;

    grid-template-columns: 1fr;
    gap: 25px;
  }

  .menu-cta-path-arrow {
    transform: rotate(90deg);
  }

  .menu-cta-button {
    width: 100%;
    min-width: 0;
  }

  /* HIDE REVENUE STEPS ON MOBILE */

@media (max-width: 650px) {
  .restaurant-growth-page .revenue-flow {
    display: none !important;
  }

}

}



/* =========================================================
   05 — RESERVATION EXPERIENCE
========================================================= */

.reservation-bridge-module {
  position: relative;
  width: 100%;
  padding: 115px 0 125px;
  overflow: hidden;
  background: #f8f8f7;
}

.reservation-bridge-inner {
  width: min(1500px, calc(100% - 100px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 78px;
}


/* =========================================================
   LEFT COPY
========================================================= */

.reservation-bridge-copy {
  position: relative;
  z-index: 4;
}

.reservation-bridge-kicker {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
}

.reservation-bridge-number {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 22px;
  background: #ff5428;

  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.reservation-bridge-kicker-text {
  color: #7d7d7d;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.reservation-bridge-title {
  max-width: 650px;
  margin: 0 0 28px;

  color: #171717;
  font-size: clamp(42px, 4vw, 63px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.reservation-bridge-title span {
  color: #ff5428;
}

.reservation-bridge-lead {
  max-width: 610px;
  margin: 0 0 20px;

  color: #222;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
}

.reservation-bridge-body {
  max-width: 610px;
  margin: 0 0 30px;

  color: #646464;
  font-size: 17px;
  line-height: 1.65;
}

.reservation-bridge-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  color: #ff5428;
  text-decoration: none;

  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.reservation-bridge-link span {
  font-size: 20px;
  transition: transform 180ms ease;
}

.reservation-bridge-link:hover span {
  transform: translateX(4px);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.reservation-bridge-visual {
  position: relative;
  min-width: 0;
}

.reservation-bridge-screen {
  position: relative;
  width: min(100%, 790px);
  margin-left: auto;

  padding: 18px;

  border: 1px solid #e4e4e4;
  border-radius: 30px;
  background: #fff;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.08),
    0 5px 18px rgba(0,0,0,0.04);
}

.reservation-bridge-screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 4px 8px 15px;
}

.reservation-bridge-screen-label {
  color: #6f6f6f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.reservation-bridge-live {
  display: flex;
  align-items: center;
  gap: 7px;

  color: #ff5428;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.reservation-bridge-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5428;

  box-shadow: 0 0 0 4px rgba(255,84,40,0.12);
}

.reservation-bridge-image {
  width: 100%;
  overflow: hidden;

  border-radius: 20px;
  background: #ececec;
}

.reservation-bridge-image img {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.reservation-bridge-features {
  width: calc(100% - 20px);
  margin: 30px 0 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reservation-bridge-feature {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.reservation-bridge-feature-icon {
  flex: 0 0 auto;

  color: #ff5428;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.reservation-bridge-feature-title {
  margin-bottom: 7px;

  color: #1c1c1c;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.reservation-bridge-feature-copy {
  color: #777;
  font-size: 12.5px;
  line-height: 1.5;
}


/* =========================================================
   PROMISE LINE
========================================================= */

.reservation-bridge-promise {
  width: calc(100% - 20px);
  margin: 31px 0 0 auto;
  padding-top: 22px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;

  border-top: 1px solid #dedede;

  color: #777;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: 0.09em;
}

.reservation-bridge-promise strong {
  color: #ff5428;
  font-weight: 800;
}

.reservation-bridge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #bdbdbd;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .reservation-bridge-module {
    padding: 95px 0 105px;
  }

  .reservation-bridge-inner {
    width: min(100% - 60px, 900px);

    grid-template-columns: 1fr;
    gap: 55px;
  }

  .reservation-bridge-copy {
    max-width: 720px;
  }

  .reservation-bridge-screen {
    margin: 0 auto;
  }

  .reservation-bridge-features,
  .reservation-bridge-promise {
    width: min(100%, 790px);
    margin-left: auto;
    margin-right: auto;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

  .reservation-bridge-module {
    padding: 75px 0 85px;
  }

  .reservation-bridge-inner {
    width: calc(100% - 36px);
    gap: 42px;
  }

  .reservation-bridge-kicker {
    gap: 16px;
    margin-bottom: 26px;
  }

  .reservation-bridge-number {
    width: 60px;
    height: 60px;

    border-radius: 18px;

    font-size: 25px;
  }

  .reservation-bridge-kicker-text {
    font-size: 10px;
  }

  .reservation-bridge-title {
    font-size: 42px;
  }

  .reservation-bridge-lead {
    font-size: 17px;
  }

  .reservation-bridge-body {
    font-size: 15.5px;
  }

  .reservation-bridge-screen {
    padding: 12px;
    border-radius: 22px;
  }

  .reservation-bridge-image {
    border-radius: 15px;
  }

  .reservation-bridge-features {
    width: 100%;

    grid-template-columns: 1fr;
    gap: 21px;
  }

  .reservation-bridge-feature {
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e2e2;
  }

  .reservation-bridge-feature:last-child {
    border-bottom: 0;
  }

  .reservation-bridge-promise {
    width: 100%;
  }

/* REACH EVERYWHERE — HIDE THIRD COLUMN ON MOBILE */

.restaurant-growth-page .reach-message {
  display: none !important;
}


}


/* =========================================================
   AUTOMATION / NO EXTRA WORK
========================================================= */

.autopilot-module {
  position: relative;
  width: 100%;
  padding: 95px 0 100px;
  overflow: hidden;
  background: #f8f8f7;
}

.autopilot-inner {
  width: min(1500px, calc(100% - 100px));
  margin: 0 auto;
}


/* =========================================================
   COPY
========================================================= */

.autopilot-copy {
  max-width: 950px;
  margin: 0 auto 55px;
  text-align: center;
}

.autopilot-kicker {
  margin-bottom: 18px;

  color: #ff5428;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.autopilot-title {
  margin: 0;

  color: #171717;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.autopilot-title span {
  display: block;
  color: #ff5428;
}

.autopilot-body {
  max-width: 760px;
  margin: 24px auto 0;

  color: #666;
  font-size: 17px;
  line-height: 1.65;
}


/* =========================================================
   AUTOMATION FLOW
========================================================= */

.autopilot-flow {
  position: relative;

  width: 100%;
  max-width: 1380px;
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr auto
    1fr;

  align-items: center;
  gap: 20px;

  padding: 40px 42px;

  border: 1px solid #e5e5e5;
  border-radius: 28px;

  background: #fff;

  box-shadow:
    0 20px 55px rgba(0,0,0,0.045),
    0 3px 10px rgba(0,0,0,0.025);
}

.autopilot-item {
  min-width: 0;
  text-align: center;
}

.autopilot-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: #ff5428;

  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.autopilot-label {
  margin-bottom: 7px;

  color: #222;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.autopilot-value {
  color: #757575;
  font-size: 14px;
  line-height: 1.4;
}

.autopilot-line {
  width: 42px;
  height: 1px;
  background: #dadada;
}


/* =========================================================
   CLOSING STATEMENT
========================================================= */

.autopilot-close {
  margin-top: 48px;
  text-align: center;

  color: #222;
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.autopilot-close span {
  color: #777;
}

.autopilot-close strong {
  margin-left: 5px;
  color: #171717;
  font-weight: 650;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1150px) {

  .autopilot-module {
    padding: 85px 0 90px;
  }

  .autopilot-inner {
    width: min(100% - 60px, 940px);
  }

  .autopilot-flow {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;

    padding: 35px 28px;
  }

  .autopilot-line {
    display: none;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

  .autopilot-module {
    padding: 72px 0 76px;
  }

  .autopilot-inner {
    width: calc(100% - 36px);
  }

  .autopilot-copy {
    margin-bottom: 38px;
  }

  .autopilot-title {
    font-size: 42px;
  }

  .autopilot-body {
    font-size: 15.5px;
  }

  .autopilot-flow {
    grid-template-columns: 1fr;
    gap: 0;

    padding: 18px 24px;

    border-radius: 22px;
  }

  .autopilot-item {
    padding: 22px 0;
    border-bottom: 1px solid #ececec;
  }

  .autopilot-item:last-child {
    border-bottom: 0;
  }

  .autopilot-icon {
    margin-bottom: 12px;
  }

  .autopilot-close {
    margin-top: 36px;
    font-size: 27px;
  }

  .autopilot-close span,
  .autopilot-close strong {
    display: block;
    margin-left: 0;
  }

  .autopilot-close strong {
    margin-top: 4px;
  }

/* BUILT TO RUN WITHOUT YOU — HIDE BOTTOM STEPS ON MOBILE */
.restaurant-growth-page .autopilot-flow {
  display: none !important;
}

}





/* =========================================================
   HERO CTA — RESTAURANT GROWTH PAGE OVERRIDES
========================================================= */

.hero-cta-desktop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}



.hero-cta-desktop .demo-note {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 0;

  color: #fff;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
}

.hero-cta-desktop .demo-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}






/* =========================================================
   REACH EVERYWHERE
========================================================= */

.reach-module {
  position: relative;
  width: 100%;
  padding: 90px 0 95px;
  overflow: hidden;
  background: #f7f7f5;

  font-family: Arial, Helvetica, sans-serif;
}

.reach-inner {
  width: min(1500px, calc(100% - 100px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.35fr 0.8fr;
  align-items: center;
  gap: 55px;
}


/* LEFT */

.reach-copy {
  position: relative;
  z-index: 2;
}

.reach-kicker {
  margin-bottom: 22px;

  color: #f45129;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.reach-copy h2 {
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 3vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #111;
}

.reach-copy h2 span {
  display: block;
  color: #f45129;
}

.reach-copy p {
  max-width: 490px;
  margin: 27px 0 0;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #333;
}


/* CENTER IMAGE */

.reach-visual {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.reach-visual-img {
  display: block;

  width: 100%;
  max-width: 670px;
  height: auto;
}


/* RIGHT */

.reach-message {
  padding-left: 40px;

  border-left: 1px solid #d8d8d5;
}

.reach-message h3 {
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 2.1vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #111;
}

.reach-message h3 span {
  display: block;
  color: #f45129;
}

.reach-topics {
  margin-top: 30px;

  display: flex;
  flex-wrap: wrap;
  gap: 11px 18px;
}

.reach-topics span {
  position: relative;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #555;
}

.reach-topics span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -12px;
  color: #f45129;
}


/* =========================================================
   REACH EVERYWHERE — NUMBER / KICKER
========================================================= */

.reach-kicker {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
}

.reach-number {
  width: 74px;
  height: 74px;
  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  background: #ff5428;

  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.reach-kicker-text {
  color: #7d7d7d;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.15em;
}


/* TABLET */

@media (max-width: 1200px) {

  .reach-inner {
    width: min(1100px, calc(100% - 60px));
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
  }

  .reach-message {
    grid-column: 1 / -1;

    max-width: 850px;
    margin: 15px auto 0;
    padding: 34px 0 0;

    border-left: 0;
    border-top: 1px solid #ddd;

    text-align: center;
  }

  .reach-message h3 span {
    display: inline;
  }

  .reach-topics {
    justify-content: center;
  }
}


/* MOBILE */

@media (max-width: 800px) {

  .reach-module {
    padding: 70px 0 75px;
  }

  .reach-inner {
    width: calc(100% - 40px);
    display: block;
  }

  .reach-copy h2 {
    font-size: 39px;
  }

  .reach-copy p {
    font-size: 17px;
  }

  .reach-visual {
    margin-top: 42px;
  }

  .reach-visual-img {
    width: 108%;
    max-width: none;
    margin-left: -4%;
  }

  .reach-message {
    margin-top: 42px;
    padding: 36px 0 0;

    border-left: 0;
    border-top: 1px solid #ddd;

    text-align: left;
  }

  .reach-message h3 {
    font-size: 31px;
  }

  .reach-message h3 span {
    display: block;
  }

  .reach-topics {
    justify-content: flex-start;
  }
}




/* =========================================================
   GROWTH PAGE — WELCOME MODULE
   PHONE + HEADLINE/COPY COMPOSITION
========================================================= */

@media (min-width: 641px) {

  /* HEADLINE */

  .restaurant-growth-page .welcome-headline {
    left: calc(50% - 340px);
    top: 195px;

    width: 500px;
    max-width: 500px;

    transform: translateX(-50%);

    text-align: center;
  }

  .restaurant-growth-page .welcome-headline h2 {
    margin: 0;

    font-size: clamp(58px, 5.4vw, 84px);
    line-height: 0.94;
    letter-spacing: -0.045em;

    text-align: center;
  }


  /* COPY UNDER HEADLINE */

  .restaurant-growth-page .welcome-copy {
    left: calc(50% - 340px);
    top: 375px;

    width: 500px;
    max-width: 500px;

    transform: translateX(-50%);

    text-align: center;
  }

  .restaurant-growth-page .welcome-copy p {
    margin: 0 auto;

    width: 100%;
    max-width: 480px;

    font-size: clamp(21px, 1.65vw, 27px);
    line-height: 1.22;
    font-weight: 300;

    color: #fff;

    text-align: center;
  }


  /* TABLETS ARE NOT USED ON GROWTH PAGE */

  .restaurant-growth-page .welcome-tablet {
    display: none;
  }

}



/* =========================================================

   GROWTH PAGE — WIDER 02 HEADLINE

========================================================= */

@media (min-width: 901px) {

  .restaurant-growth-page .rarify-power-title {

    width: 620px;

  }

}




/* =========================================================
   MARKETPLACE — HARD RESET
   PASTE AT ABSOLUTE BOTTOM OF restaurant-growth.css
========================================================= */

@media (min-width: 1001px) {

  /* -------------------------------------------------------
     MAIN LAYOUT
  ------------------------------------------------------- */

  .restaurant-growth-page .marketplace-visual-row {
    display: grid !important;

    grid-template-columns:
      350px
      220px
      minmax(0, 1fr) !important;

    column-gap: 42px !important;

    align-items: start !important;

    width: 100% !important;
    max-width: 1320px !important;

    margin: 35px auto 0 !important;

    overflow: visible !important;
  }


  /* REMOVE OLD ARROW COMPLETELY */

  .restaurant-growth-page .marketplace-arrow {
    display: none !important;
  }


  /* -------------------------------------------------------
     FIRST TWO COLUMNS
  ------------------------------------------------------- */

  .restaurant-growth-page .marketplace-network,
  .restaurant-growth-page .marketplace-matches {
    position: relative !important;

    display: block !important;

    width: 100% !important;
    height: 430px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;

    text-align: center !important;

    transform: none !important;
  }


  /* -------------------------------------------------------
     IF THE NEW WRAPPER STRUCTURE EXISTS, RESET IT
  ------------------------------------------------------- */

  .restaurant-growth-page .marketplace-visual-top {
    position: static !important;

    display: block !important;

    width: 100% !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;
  }


  /* -------------------------------------------------------
     NETWORK IMAGE
     Handles BOTH markup versions
  ------------------------------------------------------- */

  .restaurant-growth-page .marketplace-network > img,
  .restaurant-growth-page .marketplace-network-image,
  .restaurant-growth-page .marketplace-visual-top .marketplace-network-image {
    position: absolute !important;

    top: 25px !important;
    left: 50% !important;

    width: 350px !important;
    height: 350px !important;

    min-width: 350px !important;
    max-width: 350px !important;

    min-height: 350px !important;
    max-height: 350px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateX(-50%) !important;

    object-fit: contain !important;

    display: block !important;
  }


  /* -------------------------------------------------------
     MATCH STACK
  ------------------------------------------------------- */

  .restaurant-growth-page .marketplace-match-stack {
    position: absolute !important;

    top: 55px !important;
    left: 50% !important;

    width: 220px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateX(-50%) !important;

    display: flex !important;
    flex-direction: column !important;

    gap: 10px !important;
  }


  /* MATCH PILLS */

  .restaurant-growth-page .marketplace-match {
    position: relative !important;

    box-sizing: border-box !important;

    display: flex !important;
    align-items: center !important;

    width: 220px !important;
    height: 62px !important;

    min-height: 62px !important;

    margin: 0 !important;
    padding: 0 18px 0 0 !important;

    border: 1px solid #dedede !important;
    border-radius: 31px !important;

    background: #ffffff !important;

    overflow: visible !important;

    transform: none !important;
  }


  /* PORTRAITS */

  .restaurant-growth-page .marketplace-match img {
    position: static !important;

    display: block !important;

    width: 62px !important;
    height: 62px !important;

    min-width: 62px !important;
    max-width: 62px !important;

    min-height: 62px !important;
    max-height: 62px !important;

    flex: 0 0 62px !important;

    margin: 0 14px 0 -1px !important;

    border-radius: 23px !important;

    object-fit: cover !important;

    transform: none !important;
  }


  /* MATCH TEXT */

  .restaurant-growth-page .marketplace-match span {
    font-family: Arial, Helvetica, sans-serif !important;

    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;

    white-space: nowrap !important;

    color: #111111 !important;
  }


  /* -------------------------------------------------------
     CAPTION WRAPPERS
     Handles newer HTML version
  ------------------------------------------------------- */

  .restaurant-growth-page .marketplace-caption {
    position: absolute !important;

    top: 385px !important;
    left: 0 !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;
  }


  /* -------------------------------------------------------
     DIRECT HEADLINES
     Handles original HTML version
  ------------------------------------------------------- */

  .restaurant-growth-page .marketplace-network > h3,
  .restaurant-growth-page .marketplace-matches > h3 {
    position: absolute !important;

    top: 385px !important;
    left: 0 !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
  }


  /* ALL CAPTION HEADLINES */

  .restaurant-growth-page .marketplace-network h3,
  .restaurant-growth-page .marketplace-matches h3,
  .restaurant-growth-page .marketplace-caption h3 {
    font-family: Arial, Helvetica, sans-serif !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    line-height: 1.15 !important;
    letter-spacing: 1px !important;

    text-align: center !important;

    color: #111111 !important;
  }


  /* -------------------------------------------------------
     DIRECT BODY COPY
     Handles original HTML version
  ------------------------------------------------------- */

  .restaurant-growth-page .marketplace-network > p,
  .restaurant-growth-page .marketplace-matches > p {
    position: absolute !important;

    top: 410px !important;
    left: 50% !important;

    width: 230px !important;
    max-width: 230px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateX(-50%) !important;
  }


  /* BODY COPY INSIDE CAPTION WRAPPER */

  .restaurant-growth-page .marketplace-caption p {
    width: 230px !important;
    max-width: 230px !important;

    margin: 8px auto 0 !important;
    padding: 0 !important;
  }


  /* ALL CAPTION BODY TYPE */

  .restaurant-growth-page .marketplace-network p,
  .restaurant-growth-page .marketplace-matches > p,
  .restaurant-growth-page .marketplace-caption p {
    font-family: Arial, Helvetica, sans-serif !important;

    font-size: 12px !important;
    font-weight: 400 !important;

    line-height: 1.4 !important;

    text-align: center !important;

    color: #505050 !important;
  }


  /* -------------------------------------------------------
     LARGE PRODUCT IMAGE
  ------------------------------------------------------- */

  .restaurant-growth-page .marketplace-dashboard-wrap {
    position: relative !important;

    display: block !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    align-self: center !important;
    justify-self: stretch !important;

    overflow: visible !important;

    transform: none !important;
  }


  .restaurant-growth-page .marketplace-dashboard-wrap img {
    position: static !important;

    display: block !important;

    width: 100% !important;
    max-width: none !important;

    height: auto !important;

    margin: 0 !important;

    object-fit: contain !important;

    transform: none !important;
  }

}


/* =========================================================
   FINAL CTA — RESTORE 3D ICON SIZE
========================================================= */

.restaurant-growth-page .menu-cta-mark {
  position: relative !important;

  width: 120px !important;
  height: 120px !important;

  margin: 0 auto 28px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;

  overflow: visible !important;
}


/* FORCE THE 3D BADGE BACK TO 120px */

.restaurant-growth-page .menu-cta-mark .menu-cta-logo {
  position: static !important;

  display: block !important;

  width: 120px !important;
  height: 120px !important;

  min-width: 120px !important;
  max-width: 120px !important;

  min-height: 120px !important;
  max-height: 120px !important;

  margin: 0 !important;

  object-fit: contain !important;

  transform: none !important;
}


/* MAKE SURE CTA CONTENT STACKS NORMALLY */

.restaurant-growth-page .menu-cta-inner {
  position: relative !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;

  z-index: 2 !important;
}


/* PREVENT THE BADGE FROM BECOMING A BACKGROUND-LIKE LAYER */

.restaurant-growth-page .menu-cta-logo {
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
}

/* =========================================================

   FINAL CTA — FORCE CORRECT TYPE

========================================================= */

.restaurant-growth-page .menu-cta-module,

.restaurant-growth-page .menu-cta-module * {

  font-family: Arial, Helvetica, sans-serif !important;

}




/* =========================================================
   RESTAURANT GROWTH — MOBILE CLEANUP
========================================================= */

@media (max-width: 650px) {


  /* =======================================================
     1. HERO CTA — STOP IT FROM COVERING THE COPY
  ======================================================= */

  /* Hide the duplicate CTA that sits inside headline-two */
  .restaurant-growth-page .headline-two .hero-cta-mobile {
    display: none !important;
  }


  /* Use the CTA that comes AFTER the hero in normal document flow */
  .restaurant-growth-page .rarify-scroll-scene + .hero-cta-mobile {
    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    transform: none !important;

    width: calc(100% - 40px) !important;
    max-width: 520px !important;

    margin: 24px auto 50px !important;
    padding: 0 !important;

    z-index: 10 !important;
  }


  .restaurant-growth-page
  .rarify-scroll-scene + .hero-cta-mobile
  .demo-button {

    width: 100% !important;

    box-sizing: border-box !important;

    margin: 0 !important;
  }


  /* You don't need the little note on mobile here */
  .restaurant-growth-page
  .rarify-scroll-scene + .hero-cta-mobile
  .demo-note {

    display: none !important;
  }



  /* =======================================================
     2. THE SHIFT — MOBILE COPY
  ======================================================= */

  .restaurant-growth-page .shift-intro-desktop {
    display: none !important;
  }

  .restaurant-growth-page .shift-intro-mobile {
    display: block !important;

    max-width: 520px;

    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 19px;
    line-height: 1.38;

    text-align: center;

    color: #242424;
  }


  .restaurant-growth-page .shift-intro-mobile strong {
    display: block;

    margin-top: 10px;

    font-weight: 700;

    color: #111111;
  }



  /* =======================================================
     3. WELCOME — PHONE ONLY ON MOBILE
  ======================================================= */

  .restaurant-growth-page .welcome-tablet,
  .restaurant-growth-page .welcome-tablet-left,
  .restaurant-growth-page .welcome-tablet-right {

    display: none !important;
  }


  /* Keep the phone centered */
  .restaurant-growth-page .welcome-stage {
    display: flex !important;

    justify-content: center !important;
    align-items: center !important;
  }


  .restaurant-growth-page .welcome-phone {
    margin-left: auto !important;
    margin-right: auto !important;
  }



  /* =======================================================
     4. MARKETPLACE NETWORK — STOP GIANT MOBILE IMAGE
  ======================================================= */

  .restaurant-growth-page .marketplace-network {
    width: 100% !important;

    position: relative !important;

    display: block !important;

    height: auto !important;

    margin: 0 auto !important;
    padding: 0 !important;

    text-align: center !important;
  }


  .restaurant-growth-page .marketplace-network > img,
  .restaurant-growth-page .marketplace-network-image {

    position: static !important;

    display: block !important;

    width: 280px !important;
    height: 280px !important;

    min-width: 0 !important;
    max-width: 82vw !important;

    min-height: 0 !important;
    max-height: none !important;

    margin: 25px auto 18px !important;

    object-fit: contain !important;

    transform: none !important;
  }


  /* Network caption */

  .restaurant-growth-page .marketplace-network h3 {
    position: static !important;

    width: auto !important;

    margin: 0 0 7px !important;

    font-size: 12px !important;

    text-align: center !important;
  }


  .restaurant-growth-page .marketplace-network p {
    position: static !important;

    width: 240px !important;
    max-width: 85vw !important;

    margin: 0 auto !important;

    transform: none !important;

    font-size: 12px !important;
    line-height: 1.4 !important;

    text-align: center !important;
  }


  /* MARKETPLACE — HIDE PEOPLE + MATCHES ON MOBILE */

.restaurant-growth-page .marketplace-network,

.restaurant-growth-page .marketplace-matches {

  display: none !important;

}

}

/* =========================================================
   MOBILE HERO CTA
========================================================= */

@media (max-width: 650px) {

  /* Desktop CTA off */
  .restaurant-growth-page .hero-cta-desktop {
    display: none !important;
  }

  /* Mobile CTA inside headline-two */
  .restaurant-growth-page .headline-two .hero-cta-mobile {
    display: block !important;

    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    transform: none !important;

    width: calc(100% - 40px) !important;
    max-width: 340px !important;

    margin: 30px auto 0 !important;

    z-index: 50 !important;
  }

  .restaurant-growth-page
  .headline-two
  .hero-cta-mobile
  .demo-button {
    display: flex !important;
    width: 100% !important;

    justify-content: center !important;
    align-items: center !important;

    box-sizing: border-box !important;

    margin: 0 !important;
  }

  .restaurant-growth-page
  .headline-two
  .hero-cta-mobile
  .demo-note {
    display: none !important;
  }
  
}



/* =========================================================
   SHIFT — DEFAULT DESKTOP STATE
========================================================= */

.restaurant-growth-page .shift-intro-mobile {
  display: none;
}

/* =========================================================
   RESTAURANT GROWTH — MOBILE CLEANUP
========================================================= */

@media (max-width: 650px) {

   /* all of the mobile CSS I gave you goes here */

}



@media (max-width: 650px) {

  .restaurant-growth-page .rarify-scroll-scene .hero-cta {

    display: none !important;

  }

}



/* =========================================================
   DISCOVERY — MOBILE VISUAL
========================================================= */

@media (max-width: 650px) {

  .restaurant-growth-page .discovery-module {
    overflow: hidden !important;
  }

  .restaurant-growth-page .discovery-visual {
    position: relative !important;

    width: 125% !important;
    max-width: none !important;

    left: 50% !important;

    margin-top: 30px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;

    transform:
      translateX(-50%)
      scale(.60) !important;

    transform-origin: top center !important;
    
  }

  /* DISCOVERY — REMOVE LARGE BACKGROUND CIRCLE ON MOBILE */
.restaurant-growth-page .restaurant-circle {
  display: none !important;
}

}

/* =========================================================
   SHOW MODULE — SIMPLIFIED MOBILE FEATURES
   ========================================================= */

/* Hide the short statements on desktop. */

.rarify-video-module .video-mobile-statements {
  display: none;
}


@media (max-width: 900px) {

  /* Hide the original detailed blocks on mobile. */

  .rarify-video-module .video-features {
    display: none !important;
  }


  /*
    Show the simplified statements beneath the body copy.
    Keep them aligned with the original body copy.
  */

  .rarify-video-module .video-copy .video-mobile-statements {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;

    position: static !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;

    width: auto !important;
    max-width: none !important;

    margin: 28px 0 0 !important;
    padding: 0 !important;
    gap: 11px !important;

    text-align: left !important;
  }


  /*
    Keep each statement on one line and remove any
    positioning inherited from the regular body paragraph.
  */

  .rarify-video-module
  .video-copy
  .video-mobile-statements
  > p {
    display: block !important;

    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    font-family: Gotham, Montserrat, Avenir Next, Helvetica Neue, Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;

    color: #111111 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }
}


/* =========================================================
   MOBILE HERO — ALLOW ROOM FOR COMPLETE BODY COPY
========================================================= */

@media (max-width: 650px) {

  .restaurant-growth-page .rarify-scroll-scene {
    height: 980px !important;
    min-height: 980px !important;
  }

}








/* =========================================================
   MARKETPLACE — COMPACT MOBILE MATCH PROFILES
========================================================= */

@media (max-width: 650px) {

  /*
    Stack the match profiles above the product visual.
  */

  .restaurant-growth-page .marketplace-visual-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    width: 100% !important;
    gap: 0 !important;
  }


  /*
    Continue hiding the larger network graphic.
  */

  .restaurant-growth-page .marketplace-network {
    display: none !important;
  }


  /*
    Restore the match profiles on mobile.
  */

  .restaurant-growth-page .marketplace-matches {
    display: block !important;
    order: 1 !important;

    position: static !important;

    width: calc(100% - 32px) !important;
    max-width: 340px !important;
    height: auto !important;

    margin: 30px auto 16px !important;
    padding: 0 !important;

    transform: none !important;
  }


  /*
    Turn the vertical desktop stack into one mobile row.
  */

.restaurant-growth-page .marketplace-match-stack {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  position: static !important;
  width: 100% !important;
  max-width: 340px !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  gap: 8px !important;
  transform: none !important;
}


  /*
    Format each person as a small match pill.
  */

.restaurant-growth-page .marketplace-match {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;

  position: static !important;

  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 44px !important;

  margin: 0 !important;
  padding: 4px 8px 4px 4px !important;

  box-sizing: border-box !important;

  border: 1px solid #dedede !important;
  border-radius: 999px !important;
  background: #ffffff !important;

  transform: none !important;
}


  /*
    Portrait size.
  */

  .restaurant-growth-page .marketplace-match img {
    position: static !important;

    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;

    margin: 0 5px 0 0 !important;

    border-radius: 50% !important;
    object-fit: cover !important;

    transform: none !important;
  }


  /*
    Match percentage.
  */

  .restaurant-growth-page .marketplace-match span {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    font-family: Gotham, Montserrat, Arial, sans-serif !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 700 !important;

    color: #111111 !important;
    white-space: nowrap !important;
  }


  /*
    Hide the desktop explanatory caption.
  */

  .restaurant-growth-page
  .marketplace-matches
  .marketplace-caption {
    display: none !important;
  }


  /*
    Keep the tablet and phone beneath the matches.
  */

  .restaurant-growth-page .marketplace-dashboard-wrap {
    order: 2 !important;
    margin-top: 0 !important;
  }
}


@media (max-width: 650px) {

  .restaurant-growth-page .conversion-module {
    margin-top: 80px !important;
  }

}






/* =========================================================
   CONVERSION — EXPERIENCE CARD
========================================================= */

.conversion-experience-card {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 580px;
  overflow: hidden;
  border-radius: 22px;

  background-image: url("YOUR-RESTAURANT-IMAGE.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  font-family: Arial, Helvetica, sans-serif;
}

.conversion-experience-card * {
  font-family: Arial, Helvetica, sans-serif !important;
}

.conversion-experience-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.62) 45%,
      rgba(0,0,0,.28) 76%,
      rgba(0,0,0,.12) 100%
    );
}

.conversion-experience-content {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 0.95fr 0.72fr;
  align-items: center;
  gap: 30px;

  min-height: 580px;
  padding: 46px 42px;
}


/* =========================================================
   LEFT — 80%
========================================================= */

.conversion-experience-stat {
  padding-right: 22px;
}

.conversion-experience-number {
  color: #fff;

  font-size: clamp(165px, 14vw, 235px);
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: -0.085em;

  white-space: nowrap;
}

.conversion-experience-number span {
  display: inline-block;
  margin-left: 3px;

  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: -0.04em;

  vertical-align: top;
  transform: translateY(10px);
}

.conversion-experience-label {
  margin-top: 30px;

  color: #fff;

  font-size: 17px;
  font-weight: 700;
  line-height: 1;

  letter-spacing: 0.20em;
}

.conversion-experience-rule {
  width: 48px;
  height: 3px;
  margin-top: 24px;

  background: #ff4b1f;
}

.conversion-experience-copy {
  max-width: 250px;
  margin: 20px 0 0;

  color: rgba(255,255,255,.95);

  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}


/* =========================================================
   RIGHT — RARIFY INSIGHT
========================================================= */

.conversion-experience-insight {
  position: relative;

  padding-left: 34px;

  border-left: 1px solid rgba(255,255,255,.55);
}

.conversion-experience-kicker {
  margin-bottom: 16px;

  color: #ff4b1f;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  letter-spacing: 0.16em;
}

.conversion-experience-title {
  max-width: 245px;

  color: #fff;

  font-size: clamp(34px, 3vw, 48px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.conversion-experience-small {
  margin-top: 24px;

  color: #fff;

  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;

  letter-spacing: 0.18em;
}



/* TEMPORARILY HIDE RESERVATION MODULE */

.restaurant-growth-page .reservation-bridge-module {

  display: none !important;

}


/* MORE SPACE BETWEEN MARKETPLACE + DISCOVERY — DESKTOP */

@media (min-width: 981px) {

  .restaurant-growth-page .discovery-module {

    margin-top: 100px !important;

  }

}




/* POWERS EVERYTHING — LARGER CENTERED MOBILE VIDEO */

@media (max-width: 640px) {

  .restaurant-growth-page .rarify-power-video-wrap {
    position: relative !important;
    left: auto !important;

    width: min(129vw, 600px) !important;
    max-width: none !important;

    margin-top: 12px !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    margin-left: calc(
      (100% - min(112vw, 520px)) / 2 +14px
    ) !important;

    transform: translateY(18px) !important;
  }

  .restaurant-growth-page .rarify-power-video-wrap.is-active {
    transform: translateY(0) !important;
  }

  .restaurant-growth-page .rarify-power-video {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
  }

}



/* MARKETPLACE MATCH PORTRAITS — FORCE TRUE CIRCLES */

@media (max-width: 640px) {

  .restaurant-growth-page .marketplace-match img {
    width: 36px !important;
    height: 36px !important;

    min-width: 36px !important;
    max-width: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;

    flex: 0 0 36px !important;
    aspect-ratio: 1 / 1 !important;

    border-radius: 50% !important;
    clip-path: circle(50% at 50% 50%);

    object-fit: cover !important;
    object-position: center !important;
  }

}
