:root {
  --forest: #145c3a;
  --sage: #1f6b45;
  --mint: #e7f6ee;
  --cream: #f3faf6;
  --ivory: #ffffff;
  --gold: #c4a035;
  --ink: #10281c;
  --cta: #17824a;
  --muted: #355746;
  --line: rgba(20, 92, 58, 0.14);
  --danger: #8b3a3a;
  --shadow: 0 10px 28px rgba(16, 40, 28, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans Bengali", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  font-weight: 500;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1040px, calc(100% - 28px)); margin: 0 auto; }
h1, h2, h3 {
  font-family: "Noto Sans Bengali", sans-serif;
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -0.02em;
}

.topbar {
  background: var(--forest);
  color: #f4ead6;
  text-align: center;
  font-size: 0.84rem;
  padding: 8px 12px;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header-spacer { display: none; }
.brandbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
}
.brand-logo {
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
}
.brandbar img {
  height: 56px;
  width: auto;
  display: block;
}
.more-products {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--cta);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.more-products:hover { background: var(--forest); }
.hero {
  position: relative;
  padding: 28px 0 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #dff3e8 0%, var(--cream) 100%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 240px; height: 240px;
  background: rgba(126, 155, 130, 0.2);
  top: -70px; right: -50px;
}
.hero::after {
  width: 150px; height: 150px;
  background: rgba(200, 155, 60, 0.12);
  bottom: 0; left: -40px;
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: 16px; }
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 6px;
}
.hero h1 {
  font-size: clamp(1.7rem, 5.6vw, 2.75rem);
  line-height: 1.28;
  margin-bottom: 12px;
  color: var(--forest);
}
.lead {
  color: var(--ink);
  margin-bottom: 14px;
  font-size: 1.05rem;
  opacity: 0.88;
}
.bundle-line {
  font-weight: 800;
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: var(--forest);
}
.bundle-list { list-style: none; margin: 0 0 12px; }
.bundle-list li { margin: 8px 0; display: grid; gap: 2px; }
.bundle-list strong { color: var(--forest); }
.bundle-list span { color: var(--cta); font-weight: 700; font-size: 0.95rem; }
.hero .amount {
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.15;
}
.ship { font-size: 0.88rem; color: var(--muted); margin: 4px 0 12px; }
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cta);
  color: #fff;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: 800 1.05rem/1 "Noto Sans Bengali", sans-serif;
  padding: 15px 24px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(23, 130, 74, 0.28);
}
.cta:hover { background: var(--forest); }
.cta.full { width: 100%; }
.cod-note { margin-top: 8px; font-size: 0.88rem; color: var(--muted); }
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-copy h2 {
  font-size: clamp(1.25rem, 4vw, 1.7rem);
  line-height: 1.3;
  margin: 0 0 6px;
}
.hero-copy .sub { margin-bottom: 12px; }
.hero-copy .pair { grid-template-columns: 1fr 1fr; }
.hero-copy .pair-item { padding: 10px 8px 12px; }
.hero-copy .pair-item img { height: 132px; }
.hero-copy .pair-item h3 { font-size: 0.92rem; }
.hero-copy .value { margin-top: 12px; }

.hero-slider-wrap {
  position: relative;
  margin-bottom: 20px;
}
.slider-viewport {
  position: relative;
  height: 292px;
  perspective: 1100px;
  overflow: visible;
}
.slide {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(78%, 270px);
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 12px 12px 14px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
  transform: translateX(-50%) scale(0.72);
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.slide-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 5;
}
.slide-progress-line {
  fill: none;
  stroke: var(--cta);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.slide.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}
.slide.is-prev {
  z-index: 2;
  opacity: 0.7;
  pointer-events: auto;
  transform: translateX(-112%) rotateY(28deg) scale(0.82);
}
.slide.is-next {
  z-index: 2;
  opacity: 0.7;
  pointer-events: auto;
  transform: translateX(12%) rotateY(-28deg) scale(0.82);
}
.slide > img,
.slide-combo img {
  height: 188px;
  width: 100%;
  object-fit: contain;
  display: block;
}
.slide-combo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.slide-combo img {
  width: 48%;
  height: 176px;
}
.slide-name {
  margin: 10px 0 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}
.slide-benefit {
  font-size: 1.12rem;
  line-height: 1.35;
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 8px 0 10px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c5d8cc;
  cursor: pointer;
}
.slider-dot.is-active {
  width: 26px;
  background: var(--cta);
}
.slider-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cta);
  border-radius: 999px;
  color: var(--cta);
  text-decoration: none;
  font-weight: 800;
  background: #fff;
}
.slider-cta::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cta);
}
.slider-cta:hover { background: var(--mint); }
.fb-trust {
  margin: 6px 0 0;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  box-shadow: var(--shadow);
}

.section { padding: 28px 0; }
.section:nth-of-type(even) { background: var(--mint); }
.section h2 {
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  line-height: 1.35;
  margin-bottom: 8px;
}
.sub { color: var(--muted); margin-bottom: 14px; font-size: 1.02rem; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 4px; }
.pill {
  background: rgba(47, 93, 67, 0.1);
  color: var(--forest);
  border: 1px solid rgba(47, 93, 67, 0.12);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.82rem;
  font-weight: 600;
}
.ing-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.concerns, .why, .trust, .pair { display: grid; gap: 10px; }
.card {
  background: var(--ivory);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px;
}
.mini h3 { font-size: 1.02rem; }
.mini p { font-size: 0.9rem; color: var(--muted); }

.pair-item { text-align: center; padding: 12px 10px 14px; }
.pair-item img {
  height: 150px;
  width: auto;
  margin: 0 auto 8px;
  object-fit: contain;
}
.pair-item .n {
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 700;
}
.pair-item h3 { font-size: 1rem; margin-top: 2px; }

.value {
  text-align: center;
  margin-top: 12px;
  padding: 16px 14px;
  background: var(--ivory);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.value .amount {
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--forest);
  margin: 4px 0 8px;
}

.steps { display: grid; gap: 10px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  background: var(--ivory);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px;
}
.num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.step h3 { font-size: 0.98rem; }
.step p { font-size: 0.88rem; color: var(--muted); }
.step-contact {
  margin-top: 8px;
  font-weight: 800;
  color: var(--forest);
}
.step-contact a {
  color: var(--cta);
  text-decoration: none;
}
.step-contact a:hover { text-decoration: underline; }

.why-card h3 { font-size: 1rem; margin-bottom: 4px; }
.why-card p { font-size: 0.88rem; color: var(--muted); }

.trust-item h3 { font-size: 0.98rem; margin-bottom: 4px; }
.trust-item p { font-size: 0.86rem; color: var(--muted); }

.badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.badge {
  background: var(--ivory);
  border-radius: 14px;
  padding: 10px 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
  box-shadow: var(--shadow);
}

.reviews-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 155, 60, 0.14);
  border: 1px solid rgba(200, 155, 60, 0.28);
  color: #8a6a1f;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.review-card {
  position: relative;
  display: block;
  width: 100%;
  font: inherit;
  color: inherit;
  text-align: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 8px 8px 6px;
  cursor: zoom-in;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.review-card:hover,
.review-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(35, 73, 54, 0.16);
  outline: none;
  border-color: rgba(47, 93, 67, 0.3);
}
.review-card img {
  width: 100%;
  /* Tall phone screenshots: show the top of the chat and let the lightbox reveal the rest. */
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  background: #fff;
}
.review-card .review-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(35, 73, 54, 0.72);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
}
.review-card .review-label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sage);
}
.reviews-cta { text-align: center; margin-top: 14px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(20, 32, 25, 0.9);
}
.lightbox.is-open { display: flex; }
.lightbox-figure {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: center;
}
.lightbox img {
  max-width: min(90vw, 460px);
  max-height: 80vh;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.lightbox-count {
  color: #f4ead6;
  font-size: 0.85rem;
  font-weight: 600;
}
.lightbox button {
  border: 0;
  cursor: pointer;
  font: inherit;
  color: #234936;
  background: #fffdf8;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.lightbox button:hover { background: #fff; }
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.offer, .emotion, .checkout {
  background: var(--ivory);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.offer, .emotion { padding: 20px 16px; text-align: center; }
.offer .amount, .emotion .amount {
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--forest);
  margin: 6px 0;
}
.gold-line {
  width: 44px; height: 2px;
  background: var(--gold);
  margin: 8px auto;
  border: 0;
}

.checkout { padding: 16px; }
.order-duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}
.order-item {
  background: var(--cream);
  border-radius: 16px;
  padding: 10px 8px 12px;
  text-align: center;
  border: 1px solid var(--line);
}
.order-item img {
  height: 120px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 6px;
  object-fit: contain;
}
.order-item .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cta);
  background: rgba(47, 93, 67, 0.1);
  border-radius: 999px;
  padding: 2px 8px;
}
.order-item h3 {
  font-size: 0.92rem;
  margin-top: 4px;
}
.order-item .pills { margin-top: 6px; }
.order-item .pill { font-size: 0.68rem; padding: 4px 7px; }
.plus {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.bill-thumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.bill-thumbs img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
}
.zones { display: grid; gap: 8px; margin: 8px 0 14px; }
.zones label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
}
.zones label.active {
  border-color: var(--cta);
  background: rgba(47, 93, 67, 0.08);
}
.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 0.92rem;
}
input[type="text"], textarea {
  width: 100%;
  font: inherit;
  font-weight: 400;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}
.bill {
  background: var(--cream);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 8px 0 14px;
  font-size: 0.92rem;
}
.bill .row { display: flex; justify-content: space-between; margin: 4px 0; }
.bill .grand {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}
.bill .grand strong { color: var(--gold); font-size: 1.25rem; }
.lock { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 8px; }
.errors { color: var(--danger); font-size: 0.85rem; font-weight: 500; }
.errors:empty { display: none; }
.form-alert {
  background: #fdeeee;
  color: var(--danger);
  border: 1px solid rgba(139, 58, 58, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}
.field.has-error input,
.field.has-error textarea {
  border-color: var(--danger);
  background: #fff7f7;
}
.cta .btn-loading { display: none; align-items: center; justify-content: center; gap: 8px; }
.cta.is-loading .btn-label { display: none; }
.cta.is-loading .btn-loading { display: inline-flex; }
.cta.is-loading { pointer-events: none; opacity: 0.9; }
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.checkout.checkout-success {
  max-width: 420px;
  margin: 0 auto;
  padding: 28px 22px 24px;
  border: 1px solid rgba(47, 93, 67, 0.16);
  background:
    radial-gradient(circle at top, rgba(47, 93, 67, 0.08), transparent 58%),
    var(--ivory);
}
.checkout-success .success-panel {
  text-align: center;
}
.checkout-success .success-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  font-size: 1.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(47, 93, 67, 0.28);
}
.checkout-success .success-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin: 0 0 6px;
}
.checkout-success .success-panel h2 {
  font-size: 1.55rem;
  margin: 0 0 8px;
  color: var(--forest);
}
.checkout-success .success-lead {
  font-weight: 700;
  color: var(--forest);
  margin: 10px 0 4px;
}
.checkout-success .success-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 auto;
  max-width: 32ch;
  line-height: 1.55;
}
.checkout-success .success-box {
  margin-top: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 12px 12px;
}
.checkout-success .success-thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.checkout-success .success-thumbs img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 4px;
}
.checkout-success .success-combo {
  margin: 0;
  font-weight: 700;
  color: var(--forest);
  font-size: 0.95rem;
}
.checkout-success .success-price {
  margin: 4px 0 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.05rem;
}
.checkout-success .success-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  background: var(--cta);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 999px;
}
.checkout-success .success-shop:hover { background: var(--forest); }
.faq details {
  background: var(--forest);
  color: #fff;
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: #fff;
  padding: 14px 16px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p {
  margin: 0;
  padding: 0 16px 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.12);
  padding-top: 10px;
}
.section.final {
  text-align: center;
  padding: 36px 0 48px;
  background: var(--forest);
}
.section.final h2,
.section.final .sub {
  color: #fff;
}
.section.final .cta {
  background: #fff;
  color: var(--forest);
}
.section.final .cta:hover { background: var(--mint); }
.foot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 36px 16px 112px;
  background: #0e3d27;
  border-top: 0;
}
.foot-note {
  margin: 0;
  color: #e7f6ee;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.foot a {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  text-decoration: none;
  background: #fff;
  border-radius: 22px;
  padding: 18px 22px;
}
.foot img {
  width: min(260px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

.sticky-cta {
  display: none;
}

@media (max-width: 859px) {
  .hero-slider-wrap { margin-bottom: 8px; }
  .sticky-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 20;
    background: var(--cta);
    color: #fff;
    border-radius: 16px;
    padding: 8px 8px 8px 14px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(47, 93, 67, 0.28);
  }
  .sticky-cta.is-hidden { display: none; }
  .sticky-cta .left { display: grid; line-height: 1.2; }
  .sticky-cta small { opacity: 0.9; font-size: 0.75rem; font-weight: 500; }
  .sticky-cta strong { font-size: 1.05rem; }
  .sticky-cta span.btn {
    background: #fff;
    color: var(--cta);
    font-weight: 700;
    border-radius: 12px;
    padding: 10px 12px;
    white-space: nowrap;
  }
}

@media (min-width: 860px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    box-shadow: 0 8px 22px rgba(35, 73, 54, 0.08);
  }
  .site-header-spacer { display: block; height: 148px; }
  .brandbar {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
    padding: 10px 0;
    justify-content: space-between;
  }
  .brandbar img { height: 96px; }
  .more-products {
    display: inline-flex;
    font-size: 0.95rem;
    padding: 12px 20px;
  }
  .pair, .why, .trust { grid-template-columns: 1fr 1fr; }
  .concerns { grid-template-columns: 1fr 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .badges { grid-template-columns: repeat(4, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .slider-viewport { height: 330px; }
  .slide { width: min(82%, 320px); }
  .slide > img,
  .slide-combo img { height: 220px; }
  .slide-combo img { height: 210px; }
  .duo img { height: 280px; }
  .hero-copy .pair-item img { height: 170px; }
  .hero-copy .pair-item h3 { font-size: 1rem; }
  .foot { padding-bottom: 40px; }
  .foot img { width: 280px; }
}

@media (min-width: 1100px) {
  .hero-copy { max-width: 720px; }
}
