:root {
  --ink: #1b1c18;
  --muted: #6b6d66;
  --paper: #fbfaf6;
  --cream: #f2efe7;
  --green: #526f5b;
  --dark: #31473a;
  --rust: #b96d55;
  --line: rgba(27, 28, 24, 0.14);
  --white: #fff;
  --wa: #25d366;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select {
  font: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: 110px;
}

.skip {
  position: fixed;
  left: 18px;
  top: -90px;
  z-index: 120;
  background: #fff;
  padding: 14px 18px;
  border: 2px solid var(--green);
}

.skip:focus {
  top: 18px;
}

.progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--rust);
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
  z-index: 110;
}

.topbar {
  min-height: 34px;
  padding: 7px 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--dark);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar a {
  color: #dce6df;
  border-bottom: 1px solid currentColor;
}

.header {
  height: 82px;
  padding-inline: 4vw;
  display: flex;
  align-items: center;
  gap: 30px;
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo img {
  width: 145px;
  height: 55px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.35);
}

.header nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
}

.header nav a {
  font-size: 11px;
  color: #555850;
}

.header nav a:hover {
  color: var(--rust);
}

.menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  margin: 7px auto;
}

.btn {
  min-height: 56px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 15px 36px rgba(49, 71, 58, 0.18);
}

.btn-green:hover {
  background: var(--dark);
}

.btn-rust {
  background: var(--rust);
  color: #fff;
}

.btn-rust:hover {
  background: #98523f;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.light {
  color: #fff;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--rust);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-head {
  max-width: 850px;
}

.section-head h2,
.final-copy h2 {
  margin: 0;
  font: 400 clamp(42px, 5.2vw, 70px) / 1.02 var(--serif);
  letter-spacing: -0.045em;
}

.section-head > p:last-of-type,
.lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.micro {
  margin: 14px 0 0;
  color: #797b74;
  font-size: 10px;
  line-height: 1.55;
}

.center {
  text-align: center;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(82, 111, 91, 0.38);
  outline-offset: 3px;
}

.hero {
  min-height: 730px;
  display: grid;
  grid-template-columns: 49% 51%;
  background: var(--paper);
  overflow: hidden;
}

.hero-copy {
  width: min(575px, calc(100% - 48px));
  margin-left: auto;
  padding: 80px 55px 62px 0;
  align-self: center;
}

.hero h1 {
  margin: 0;
  font: 400 clamp(52px, 5.5vw, 78px) / 0.99 var(--serif);
  letter-spacing: -0.05em;
}

.hero .lead {
  max-width: 565px;
  margin: 26px 0;
}

.signals {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.signals span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5e615a;
  font-size: 10px;
}

.signals b {
  color: var(--rust);
  font-size: 8px;
}

.hero-media {
  position: relative;
  min-height: 730px;
  overflow: hidden;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 260px;
  padding: 26px 30px;
  background: #fff;
  display: grid;
  gap: 7px;
}

.hero-note small {
  color: var(--rust);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.hero-note strong {
  font: 400 24px/1.15 var(--serif);
}

.intro {
  background: #fff;
}

.problem-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.problem-grid article {
  padding: 34px 28px;
}

.problem-grid article + article {
  border-left: 1px solid var(--line);
}

.problem-grid span,
.product-grid article > div + div > span,
.tech-grid > article > span,
.benefits b {
  color: var(--rust);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.problem-grid h3 {
  font: 400 22px/1.2 var(--serif);
  margin: 16px 0 9px;
}

.problem-grid p {
  margin: 0;
  color: #6d7069;
  font-size: 12px;
  line-height: 1.65;
}

.products {
  background: var(--cream);
}

.product-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-grid article {
  background: #fff;
  border: 1px solid rgba(27, 28, 24, 0.08);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.product-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 55px rgba(39, 44, 38, 0.09);
}

.product-grid article > div + div {
  padding: 29px;
}

.product-grid h3 {
  margin: 10px 0 10px;
  font: 400 28px var(--serif);
}

.product-grid p {
  color: #6b6e67;
  font-size: 12px;
  line-height: 1.65;
}

.product-grid small {
  display: block;
  color: #8a8c85;
  font-size: 9px;
  margin: 18px 0;
}

.product-grid a {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.product-photo {
  height: 225px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
}

.product-photo.sheer {
  background-image: url("assets/hero-sheer.webp");
}

.product-photo.blackout {
  background-image:
    linear-gradient(rgba(30, 32, 31, 0.2), rgba(30, 32, 31, 0.2)),
    url("assets/blackout-bedroom.webp");
}

.product-photo.roller {
  background-image: linear-gradient(135deg, #dfdacd, #a9a093);
}

.product-photo.solar {
  background-image: url("assets/solar-office.webp");
}

.product-photo.translucent {
  background: linear-gradient(115deg, #eee9dd 0%, #dad2c2 50%, #f8f4ea 100%);
}

.product-photo.curtain {
  background: repeating-linear-gradient(
    90deg,
    #a99b8b 0 20px,
    #c1b5a6 20px 42px,
    #958574 42px 64px
  );
}

.motion-showcase {
  background: #fff;
}
.video-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.video-card {
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
}
.video-frame {
  aspect-ratio: 16/9;
  background: #1e211d;
  overflow: hidden;
}
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1e211d;
}
.video-copy {
  padding: 34px;
}
.video-copy > span {
  color: var(--rust);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.video-copy h3 {
  margin: 13px 0 10px;
  font: 400 31px var(--serif);
}
.video-copy p {
  margin: 0 0 24px;
  color: #686b64;
  font-size: 12px;
  line-height: 1.7;
}
.video-copy .btn {
  width: 100%;
}
.video-note {
  margin: 22px 0 0;
  color: #777a73;
  font-size: 10px;
  line-height: 1.6;
}
.chooser {
  background: #fff;
}

.chooser-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.choice-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 430px;
  border: 1px solid var(--line);
}

.choice-buttons {
  display: grid;
  background: var(--cream);
}

.choice-buttons button {
  min-height: 66px;
  padding: 10px 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  color: #545750;
  font-size: 12px;
  cursor: pointer;
}

.choice-buttons button[aria-selected="true"] {
  background: var(--green);
  color: #fff;
}

.recommendation {
  padding: 45px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recommendation small {
  color: var(--rust);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.recommendation h3 {
  margin: 17px 0 12px;
  font: 400 43px var(--serif);
}

.recommendation p {
  color: #686b64;
  font-size: 13px;
  line-height: 1.7;
}

.recommendation .btn {
  margin-top: 20px;
  align-self: flex-start;
}

.automation {
  padding-block: 115px;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}

.section-head.light > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.automation-flow {
  margin: 65px 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.automation-flow > div {
  width: 185px;
  min-height: 110px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  text-align: center;
}

.automation-flow span {
  color: #bfcfc4;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.automation-flow b {
  font: 400 17px var(--serif);
}

.automation-flow small {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.automation-flow > i {
  font-style: normal;
  color: #a9bdaf;
}

.mini-blind {
  position: relative;
  overflow: hidden;
}

.mini-blind em {
  width: 75px;
  height: 37px;
  background: repeating-linear-gradient(0deg, #e9e3d7 0 5px, #9d927f 5px 8px);
  animation: blind-move 3.5s ease-in-out infinite alternate;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tech-grid article {
  padding: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-grid h3 {
  font: 400 30px var(--serif);
  margin: 14px 0 9px;
}

.tech-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.tech-icon {
  height: 95px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  color: #d8e3db;
  font: 400 52px var(--serif);
}

.motor-icon i {
  display: block;
  width: 120px;
  height: 23px;
  border: 2px solid #d8e3db;
  border-radius: 14px;
  position: relative;
}

.motor-icon i:after {
  content: "";
  position: absolute;
  right: 8px;
  top: 6px;
  width: 7px;
  height: 7px;
  background: var(--rust);
  border-radius: 50%;
}

.remote-icon i {
  display: block;
  width: 35px;
  height: 82px;
  border: 2px solid #d8e3db;
  border-radius: 18px;
  position: relative;
}

.remote-icon i:after {
  content: "•••";
  position: absolute;
  inset: 21px 0 auto;
  text-align: center;
  letter-spacing: 2px;
}

.automation .center {
  margin-top: 35px;
}
@keyframes blind-move {
  from {
    transform: scaleY(0.42);
    transform-origin: top;
  }
  to {
    transform: scaleY(1);
    transform-origin: top;
  }
}

.inspiration {
  background: #f7f5ef;
}

.gallery {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: 310px 310px;
  gap: 14px;
}

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.gallery-main {
  grid-row: 1/3;
}

.gallery img,
.gallery figure > div {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery figure:hover img,
.gallery figure:hover > div {
  transform: scale(1.035);
}

.gallery-dark > div {
  background: url("assets/blackout-bedroom.webp") center/cover;
}

.gallery-office > div {
  background: url("assets/solar-office.webp") center/cover;
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  font-size: 11px;
  font-weight: 700;
}

.process {
  background: #fff;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.steps li {
  padding: 30px 35px 35px 0;
  border-bottom: 1px solid var(--line);
}

.steps li:nth-child(3n + 2),
.steps li:nth-child(3n + 3) {
  padding-left: 35px;
  border-left: 1px solid var(--line);
}

.steps b {
  color: var(--rust);
  font-size: 9px;
}

.steps h3 {
  font: 400 23px var(--serif);
  margin: 15px 0 8px;
}

.steps p {
  color: #6d7069;
  font-size: 12px;
  line-height: 1.65;
}

.inline-cta {
  margin-top: 34px;
  padding: 28px 30px;
  background: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.inline-cta div {
  display: grid;
  gap: 6px;
}

.inline-cta strong {
  font: 400 22px var(--serif);
}

.inline-cta span {
  color: #74766f;
  font-size: 11px;
}

.manufacturer {
  background: var(--cream);
}

.manufacturer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.benefits article {
  padding: 30px 30px 30px 0;
  border-bottom: 1px solid var(--line);
}

.benefits article:nth-child(even) {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.benefits h3 {
  font: 400 22px var(--serif);
  margin: 15px 0 8px;
}

.benefits p {
  margin: 0;
  color: #6d7069;
  font-size: 12px;
  line-height: 1.6;
}

.compare {
  background: #fff;
}

.table-wrap {
  margin-top: 50px;
  overflow-x: auto;
}

.table-wrap table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  background: var(--paper);
}
th,
td {
  padding: 19px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 11px;
  line-height: 1.5;
}
thead th {
  background: var(--dark);
  color: #fff;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
tbody th {
  font: 400 18px var(--serif);
  color: var(--green);
}

.amazon {
  padding-block: 70px;
  background: #e9e5dc;
}

.amazon-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}

.amazon-layout > div {
  max-width: 700px;
}

.amazon h2 {
  margin: 0;
  font: 400 38px var(--serif);
}

.amazon p:not(.eyebrow) {
  color: #6d7069;
  line-height: 1.7;
}

.amazon-link {
  color: var(--rust);
  white-space: nowrap;
}

.faq {
  background: #f7f5ef;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  padding: 22px 42px 22px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font: 400 18px var(--serif);
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--green);
  font: 400 24px Arial;
}
details[open] summary:after {
  content: "–";
}
details p {
  margin: -3px 45px 22px 0;
  color: #676a63;
  font-size: 12px;
  line-height: 1.7;
}

.quote {
  background: #fff;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.privacy-note {
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 3px solid var(--rust);
  background: var(--cream);
  color: #696c65;
  font-size: 10px;
  line-height: 1.6;
}

.quote-form {
  padding: 42px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #555850;
  font-size: 10px;
}

.quote-form input,
.quote-form select {
  width: 100%;
  height: 49px;
  padding: 0 13px;
  border: 1px solid #c7c7c1;
  background: #fff;
  border-radius: 0;
  color: var(--ink);
}

.quote-form .consent,
.quote-form button,
.form-status {
  grid-column: 1/-1;
}

.quote-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.quote-form .consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.quote-form .consent a {
  text-decoration: underline;
}

.form-status {
  margin: 0;
  padding: 12px 15px;
  background: #fff;
  display: none;
}

.form-status.show {
  display: block;
}

.quote-form [aria-invalid="true"] {
  border-color: #a33;
}

.final {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.final > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shade {
  position: absolute;
  inset: 0;
  background: rgba(25, 36, 29, 0.77);
}

.final-copy {
  position: relative;
  z-index: 2;
  max-width: 950px;
  padding-block: 95px;
}

.final-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 25px auto;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.final-copy .actions {
  justify-content: center;
}
footer {
  padding: 55px 5vw 105px;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  background: #fff;
}
footer > img {
  width: 155px;
  height: 58px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.35);
}
footer p,
footer a,
footer small {
  color: #74766f;
  font-size: 10px;
  line-height: 1.6;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 75;
  min-height: 59px;
  padding: 0 22px;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.floating span {
  font-size: 8px;
  opacity: 0.8;
}

.floating strong {
  font-size: 12px;
}

.mobile-cta {
  display: none;
}

.motion .reveal,
.motion .stagger > * {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  filter: blur(3px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
}

.motion .stagger > *:nth-child(2) {
  transition-delay: 70ms;
}

.motion .stagger > *:nth-child(3) {
  transition-delay: 140ms;
}

.motion .stagger > *:nth-child(4) {
  transition-delay: 210ms;
}

.motion .stagger > *:nth-child(5) {
  transition-delay: 280ms;
}

.motion .stagger > *:nth-child(6) {
  transition-delay: 350ms;
}

.motion .reveal.visible,
.motion .stagger.visible > * {
  opacity: 1;
  transform: none;
  filter: none;
}

.hero-copy > * {
  animation: hero-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.07s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.14s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.21s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 0.28s;
}

.hero-copy > *:nth-child(6) {
  animation-delay: 0.35s;
}

.hero-media {
  animation: image-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes image-in {
  from {
    opacity: 0;
    transform: translateX(35px) scale(1.03);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .header nav {
    display: none;
  }

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

  .header nav.open {
    display: flex;
    position: fixed;
    inset: 116px 0 auto;
    background: #fff;
    padding: 28px 24px;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
  }

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

  .hero-copy {
    width: min(850px, calc(100% - 48px));
    margin-inline: auto;
    padding: 70px 0;
  }

  .hero-media {
    min-height: 560px;
  }

  .hero-note {
    left: auto;
    right: 0;
  }

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

  .problem-grid article:nth-child(3) {
    border-left: 0;
  }

  .problem-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .chooser-layout,
  .manufacturer-grid,
  .faq-layout,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .chooser-layout,
  .manufacturer-grid,
  .faq-layout,
  .quote-grid {
    gap: 55px;
  }

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

  .automation-flow {
    flex-wrap: wrap;
  }

  .automation-flow > i {
    display: none;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 270px;
  }

  .gallery-main {
    grid-column: 1/3;
    grid-row: 1;
  }

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

  .steps li:nth-child(3n + 2),
  .steps li:nth-child(3n + 3) {
    padding-left: 0;
    border-left: 0;
  }

  .steps li:nth-child(even) {
    padding-left: 30px;
    border-left: 1px solid var(--line);
  }

  .amazon-layout {
    align-items: flex-start;
  }

  .quote-form {
    max-width: 850px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 100px;
  }

  .wrap {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding-block: 75px;
  }

  .topbar {
    gap: 8px;
    justify-content: space-between;
    padding-inline: 14px;
  }

  .topbar span:nth-child(2),
  .topbar span:nth-child(3) {
    display: none;
  }

  .header {
    height: 68px;
    padding-inline: 16px;
  }

  .logo img {
    width: 128px;
  }

  .header > .btn {
    display: none;
  }

  .header nav.open {
    inset: 102px 0 auto;
  }

  .hero-copy {
    width: min(100% - 32px, 850px);
    padding: 50px 0;
  }

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

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

  .hero .actions {
    display: grid;
  }

  .hero .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-note {
    width: 205px;
    padding: 20px;
  }

  .hero-note strong {
    font-size: 19px;
  }

  .signals {
    display: grid;
  }

  .section-head h2,
  .final-copy h2 {
    font-size: 41px;
  }

  .section-head > p:last-of-type {
    font-size: 14px;
  }

  .problem-grid,
  .product-grid,
  .tech-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .problem-grid article,
  .problem-grid article + article {
    padding: 25px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-photo {
    height: 230px;
  }

  .choice-panel {
    grid-template-columns: 1fr;
  }

  .choice-buttons {
    grid-template-columns: 1fr 1fr;
  }

  .choice-buttons button {
    min-height: 62px;
    border-right: 1px solid var(--line);
  }

  .recommendation {
    padding: 34px 25px;
  }

  .recommendation .btn {
    width: 100%;
  }

  .automation {
    padding-block: 78px;
  }

  .automation-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .automation-flow > div {
    width: auto;
  }

  .tech-grid article {
    padding: 30px;
  }

  .gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 320px 240px 240px;
  }

  .gallery-main {
    grid-column: auto;
    grid-row: auto;
  }

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

  .steps li,
  .steps li:nth-child(even) {
    padding: 25px 0;
    border-left: 0;
  }

  .inline-cta,
  .amazon-layout {
    align-items: stretch;
    flex-direction: column;
  }

  .inline-cta .btn {
    width: 100%;
  }

  .benefits article,
  .benefits article:nth-child(even) {
    padding: 25px 0;
    border-left: 0;
  }

  .quote-form {
    padding: 28px 21px;
    grid-template-columns: 1fr;
  }

  .quote-form label {
    grid-column: 1/-1;
  }

  .final {
    min-height: 720px;
  }

  .final .actions {
    display: grid;
  }

  .floating {
    display: none;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 90;
    background: var(--wa);
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.24);
  }

  .mobile-cta a {
    min-height: 62px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
  }
  footer {
    padding-bottom: 105px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 39px;
  }

  .section-head h2,
  .final-copy h2 {
    font-size: 37px;
  }

  .choice-buttons {
    grid-template-columns: 1fr;
  }

  .automation-flow {
    grid-template-columns: 1fr;
  }

  .product-grid article > div + div {
    padding: 24px;
  }
}

@media (max-width: 700px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .video-copy {
    padding: 25px 22px;
  }
  .video-copy h3 {
    font-size: 27px;
  }
  .video-note {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-copy > *,
  .hero-media,
  .mini-blind em {
    animation: none;
  }

  .motion .reveal,
  .motion .stagger > * {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .btn,
  .product-grid article,
  .gallery img,
  .gallery figure > div {
    transition: none;
  }

  .progress {
    display: none;
  }
}
