:root {
  --cream: #f7f2ea;
  --ivory: #fcfaf7;
  --sand: #eadfce;
  --charcoal: #151311;
  --ink: #1d1a17;
  --muted: #6f665e;
  --gold: #b9985d;
  --gold2: #d0b57b;
  --line: #ddd2c4;
  --max: 1200px;
}


/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}


/* =========================
   GENERAL
========================= */

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
}

p {
  margin: 0 0 18px;
}

.kicker {
  margin-bottom: 17px;
  color: var(--gold2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* =========================
   TOP BAR
========================= */

.top {
  background: var(--charcoal);
  color: #fff;
  padding: 9px 15px;
  text-align: center;
  font-size: 11px;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}


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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 247, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.menu {
  display: none;
  padding: 4px;
  background: none;
  border: 0;
  color: var(--charcoal);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

nav a:hover,
nav a.active {
  color: var(--gold);
  border-color: var(--gold);
}

.navbtn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 13px 21px;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  color: #fff;
  font-size: 11px;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.navbtn:hover,
.btn:hover {
  transform: translateY(-1px);
}

.navbtn {
  flex-shrink: 0;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.btn.outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--charcoal);
}


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

.hero {
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
  min-height: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 82px 45px 82px 0;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(46px, 5.3vw, 74px);
  letter-spacing: -.02em;
}

.hero p {
  max-width: 590px;
  color: #ded7cf;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.hero-actions .outline {
  border-color: #a99e92;
  color: #fff;
}


/*
   HERO IMAGE

   The image itself controls its height.
   Nothing is cropped.
*/

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  background: var(--charcoal);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--cream);
}

.intro {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.intro h1,
.intro h2 {
  font-size: clamp(38px, 4.6vw, 58px);
}

.intro p {
  color: var(--muted);
  font-size: 17px;
}


/* =========================
   PRODUCTS
========================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
}

.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(39, 30, 22, .1);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
}

.product-body {
  padding: 14px 15px 17px;
}

.product-body h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}


/* =========================
   BENEFITS
========================= */

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.benefit:last-child {
  border-right: 0;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 19px;
}

.benefit strong {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.benefit span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}


/* =========================
   SERVICES
========================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 205px;
  padding: 31px 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.service-card::before {
  display: block;
  width: 38px;
  height: 2px;
  margin-bottom: 25px;
  background: var(--gold);
  content: "";
}

.service-card h3 {
  font-size: 27px;
}

.service-card p {
  max-width: 350px;
  color: var(--muted);
  font-size: 14px;
}

.service-card a {
  color: #8c6d36;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}


/* =========================
   FEATURE
========================= */

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
}

.feature > * {
  min-width: 0;
}

.feature h2 {
  font-size: clamp(38px, 4vw, 55px);
}

.feature p {
  max-width: 590px;
  color: var(--muted);
  font-size: 16px;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 28px;
}

.feature-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-list b {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 17px;
}

.feature-list span {
  font-size: 14px;
}


/* =========================
   AD BOX
========================= */

.ad-box {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  overflow: hidden;
  padding: 13px;
  background: var(--charcoal);
  box-shadow: 0 18px 50px rgba(30, 24, 18, .16);
}

.ad-box img {
  width: 100%;
  height: auto;
}


/* =========================
   REFRESH / OFFER
========================= */

.offer {
  overflow: hidden;
  padding: 78px 0;
  background: var(--charcoal);
  color: #fff;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: center;
  gap: 70px;
}

.offer h2 {
  max-width: 700px;
  font-size: clamp(38px, 4.2vw, 57px);
}

.offer p {
  max-width: 700px;
  color: #d7d0c9;
}

.offer-grid > img {
  width: 100%;
  max-width: 460px;
  height: auto;
  justify-self: end;
  object-fit: contain;
}

.offer-note {
  margin-top: 18px;
  color: #aaa198;
  font-size: 11px;
  letter-spacing: .08em;
}


/* =========================
   STEPS
========================= */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
}

.step {
  padding: 30px;
  background: var(--ivory);
}

.num {
  margin-bottom: 14px;
  color: var(--gold);
  font: 500 39px "Playfair Display";
}

.step h3 {
  font-size: 24px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}


/* =========================
   PAGE HERO
========================= */

.page-hero {
  padding: 74px 0;
  background: var(--cream);
}

.page-hero .intro {
  margin-bottom: 0;
}


/* =========================
   CONTACT
========================= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 70px;
}

.contact-panel {
  padding: 40px;
  background: var(--charcoal);
  color: #fff;
}

.contact-panel h2 {
  font-size: 38px;
}

.contact-panel p {
  color: #d0c7bf;
}

.contact-panel .phone {
  margin: 25px 0;
  color: #fff;
  font: 500 32px "Playfair Display";
}

.form {
  display: grid;
  gap: 17px;
}

.form label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.form button {
  border: 0;
}


/* =========================
   FOOTER
========================= */

.footer {
  padding: 56px 0 22px;
  background: #151311;
  color: #ddd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 50px;
}

.footer h3 {
  color: #fff;
  font-size: 22px;
}

.footer p {
  color: #a9a19a;
  font-size: 14px;
}

.footer a:hover {
  color: var(--gold2);
}

.bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid #37312c;
  color: #857c74;
  font-size: 10px;
  letter-spacing: .06em;
}

.fine {
  color: var(--muted);
  font-size: 11px;
}


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

@media (max-width: 1100px) {

  nav {
    gap: 20px;
  }

  .nav {
    gap: 20px;
  }

  .navbtn {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-copy {
    padding-right: 30px;
  }

  .feature {
    gap: 45px;
  }

  .offer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 45px;
  }
}


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

@media (max-width: 1000px) {

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit:nth-child(3) {
    border-right: 0;
  }

  .benefit:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature {
    gap: 40px;
  }

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

  .hero-copy {
    padding: 68px 0 60px;
  }

  .hero-media {
    width: 100%;
  }

  .offer-grid {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }

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


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

@media (max-width: 760px) {

  .container {
    width: calc(100% - 30px);
  }

  /* Header */

  .nav {
    position: relative;
    min-height: 72px;
    height: 72px;
  }

  .logo img {
    width: 52px;
    height: 52px;
  }

  .menu {
    display: block;
    margin-left: auto;
  }

  .nav nav {
    display: none;
    position: absolute;
    top: 72px;
    right: -15px;
    left: -15px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 18px;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 25px rgba(30, 24, 18, .08);
  }

  .nav nav.open {
    display: flex;
  }

  .nav nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
  }

  .nav nav a:last-child {
    border-bottom: 0;
  }

  .nav nav a.active {
    color: var(--gold);
  }

  .navbtn {
    display: none;
  }

  /* Top bar */

  .top {
    padding: 8px 10px;
    font-size: 9px;
    letter-spacing: .1em;
  }

  /* Hero */

  .hero-grid {
    display: block;
  }

  .hero-copy {
    padding: 52px 0 48px;
  }

  .hero h1 {
    max-width: 600px;
    font-size: clamp(42px, 11vw, 55px);
  }

  .hero p {
    max-width: 600px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 8px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-media {
    width: 100%;
  }

  .hero-media img {
    width: 100%;
    height: auto;
  }

  /* Sections */

  .section {
    padding: 65px 0;
  }

  .intro {
    margin-bottom: 34px;
  }

  .intro h1,
  .intro h2 {
    font-size: clamp(34px, 9vw, 45px);
  }

  .intro p {
    font-size: 15px;
  }

  /* Products */

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

  .product-body {
    padding: 12px 12px 15px;
  }

  .product-body h3 {
    font-size: 17px;
  }

  .product-body p {
    font-size: 11px;
    line-height: 1.5;
  }

  /* Benefits */

  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit {
    padding: 24px 12px;
  }

  .benefit:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .benefit:nth-child(even) {
    border-right: 0;
  }

  .benefit:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .benefit strong {
    font-size: 10px;
    line-height: 1.35;
  }

  .benefit span {
    font-size: 9px;
  }

  /* Services */

  .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    min-height: 0;
    padding: 27px 24px;
  }

  /* Feature */

  .feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature h2 {
    font-size: clamp(36px, 9vw, 48px);
  }

  .ad-box {
    max-width: 600px;
    justify-self: center;
    padding: 8px;
  }

  /* Refresh offer */

  .offer {
    padding: 62px 0;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .offer h2 {
    font-size: clamp(37px, 9vw, 50px);
  }

  .offer p {
    font-size: 15px;
  }

  .offer-grid > img {
    width: 100%;
    max-width: 600px;
    justify-self: center;
  }

  /* Steps */

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step {
    padding: 25px;
  }

  /* Contact */

  .contact-grid {
    gap: 30px;
  }

  .contact-panel {
    padding: 32px 25px;
  }

  /* Footer */

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 25px;
  }

  .bottom {
    flex-direction: column;
    gap: 8px;
  }
}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 500px) {

  .container {
    width: calc(100% - 26px);
  }

  .hero-copy {
    padding: 45px 0 42px;
  }

  .hero h1 {
    font-size: clamp(39px, 11vw, 48px);
  }

  .hero p {
    font-size: 15px;
  }

  .section {
    padding: 55px 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card img {
    aspect-ratio: 1.5 / 1;
  }

  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .benefit,
  .benefit:nth-child(odd),
  .benefit:nth-child(even) {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .benefit:first-child {
    border-top: 0;
  }

  .benefit {
    padding: 23px 15px;
  }

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

  .step {
    padding: 25px;
  }

  .offer {
    padding: 55px 0;
  }

  .offer-grid {
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-panel .phone {
    font-size: 27px;
  }

  .ad-box {
    padding: 6px;
  }

  .page-hero {
    padding: 55px 0;
  }
}


/* =========================
   VERY SMALL PHONES
========================= */

@media (max-width: 360px) {

  .top {
    font-size: 8px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .kicker {
    font-size: 9px;
    letter-spacing: .18em;
  }

  .product-body h3 {
    font-size: 16px;
  }

  .btn {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 10px;
  }
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}


/* =========================================================
   REFRESH SPECIAL PAGE
   ========================================================= */


/* HERO */

.refresh-hero {
  background: var(--ivory);
  padding: 90px 0 100px;
  border-bottom: 1px solid var(--line);
}

.refresh-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  align-items: center;
  gap: 80px;
}

.refresh-hero-copy {
  min-width: 0;
}

.refresh-hero-copy h1 {
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.03;
  margin: 14px 0 24px;
  letter-spacing: -1px;
}

.refresh-hero-copy p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 30px;
}

.refresh-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.refresh-phone {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .02em;
}

.refresh-phone:hover {
  color: var(--gold-deep, var(--gold));
}


/* HERO AD */

.refresh-hero-ad {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  background: var(--sand);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(21,19,17,.08);
}

.refresh-hero-ad img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}


/* INTRO */

.refresh-intro {
  padding-top: 100px;
  padding-bottom: 100px;
}

.refresh-intro .intro {
  max-width: 760px;
  margin-bottom: 60px;
}

.refresh-intro .intro h2 {
  margin-bottom: 20px;
}

.refresh-intro .intro p {
  max-width: 720px;
}


/* HIGHLIGHTS */

.refresh-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.refresh-highlight {
  background: var(--ivory);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
}

.refresh-highlight-number {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
  flex: 0 0 auto;
}

.refresh-highlight h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.refresh-highlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}


/* PROCESS */

.refresh-process {
  padding-top: 100px;
  padding-bottom: 100px;
}

.refresh-process .intro {
  max-width: 720px;
  margin-bottom: 60px;
}

.refresh-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.refresh-step {
  padding: 35px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.refresh-step:last-child {
  border-right: 1px solid var(--line);
}

.refresh-step .num {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  color: var(--gold);
  margin-bottom: 25px;
}

.refresh-step h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.refresh-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}


/* SAVINGS */

.refresh-savings {
  background: var(--charcoal);
  color: white;
  padding: 70px 0;
}

.refresh-savings-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.refresh-savings .kicker {
  color: var(--gold2);
}

.refresh-savings h2 {
  color: white;
  margin: 10px 0 15px;
  font-size: clamp(34px, 4vw, 50px);
}

.refresh-savings p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.refresh-savings .btn {
  flex: 0 0 auto;
}


/* FINAL CTA */

.refresh-final {
  padding-top: 100px;
  padding-bottom: 100px;
}

.refresh-final-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.refresh-final-box h2 {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.08;
  margin: 12px 0 20px;
}

.refresh-final-box p {
  max-width: 580px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}


/* TABLET */

@media (max-width: 950px) {

  .refresh-hero {
    padding: 70px 0 80px;
  }

  .refresh-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .refresh-hero-ad {
    max-width: 600px;
    margin: 0 auto;
  }

  .refresh-highlights {
    grid-template-columns: 1fr;
  }

  .refresh-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .refresh-step:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .refresh-step:nth-child(3),
  .refresh-step:nth-child(4) {
    border-top: 0;
  }

  .refresh-savings-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .refresh-hero {
    padding: 55px 0 60px;
  }

  .refresh-hero-grid {
    gap: 38px;
  }

  .refresh-hero-copy h1 {
    font-size: clamp(40px, 11vw, 54px);
    letter-spacing: -.5px;
  }

  .refresh-hero-copy p {
    font-size: 16px;
    line-height: 1.7;
  }

  .refresh-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .refresh-hero-ad {
    max-width: none;
    box-shadow: 0 10px 30px rgba(21,19,17,.07);
  }

  .refresh-intro,
  .refresh-process,
  .refresh-final {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .refresh-intro .intro,
  .refresh-process .intro {
    margin-bottom: 40px;
  }

  .refresh-highlight {
    padding: 28px 22px;
  }

  .refresh-steps {
    grid-template-columns: 1fr;
  }

  .refresh-step,
  .refresh-step:nth-child(3),
  .refresh-step:nth-child(4) {
    border: 0;
    border-top: 1px solid var(--line);
  }

  .refresh-step:first-child {
    border-top: 1px solid var(--line);
  }

  .refresh-step:last-child {
    border-bottom: 1px solid var(--line);
  }

  .refresh-savings {
    padding: 60px 0;
  }

  .refresh-savings h2 {
    font-size: 38px;
  }

  .refresh-final-box h2 {
    font-size: 42px;
  }

}