/* ============================================
   RemoteEdge Accelerator — Landing Page
   Brand: #ff4433 red · white · neutral grays
   ============================================ */

:root {
  --red: #ff4433;
  --red-deep: #e5341f;
  --red-soft: #fff0ed;
  --ink: #0a0a0a;
  --body: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line-soft: #f1f2f4;
  --bg: #ffffff;
  --bg-soft: #fafaf7;
  --bg-dark: #0a0a0a;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1120px;
  --max-narrow: 820px;
  --shadow-sm: 0 1px 2px rgba(10,10,10,.04), 0 1px 3px rgba(10,10,10,.04);
  --shadow-md: 0 10px 30px -12px rgba(10,10,10,.12);
  --shadow-lg: 0 30px 80px -20px rgba(10,10,10,.22);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; }
strong { font-weight: 600; color: var(--ink); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.container.narrow { max-width: var(--max-narrow); }
.center { text-align: center; }

/* ----- Typography ----- */
.h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
  margin: 0 0 18px;
}
.h2 em {
  font-size: 1.05em;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
}
.kicker--light { color: rgba(255,255,255,.85); }
.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--muted);
  line-height: 1.65;
  max-width: 65ch;
  margin-inline: auto;
}
.lede.center { margin-inline: auto; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  border: 1px solid var(--red);
  transition: all .2s var(--ease);
  white-space: nowrap;
  box-shadow: 0 6px 24px -6px rgba(255,68,51,.45);
}
.btn:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(255,68,51,.55);
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 17px 28px; font-size: 16px; }
.btn--xl { padding: 20px 34px; font-size: 17px; }
.btn--invert {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 0 6px 24px -6px rgba(0,0,0,.35);
}
.btn--invert:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* ----- Nav ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  text-align: left;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 6px;
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #fff;
  border-radius: 3px;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 40% 40%, 40% 100%, 0 100%);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}
.nav__links a { transition: color .15s; }
.nav__links a:hover { color: var(--ink); }

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color .2s, background .2s;
}
.nav__toggle:hover { border-color: var(--ink); }
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav.is-open .nav__toggle { border-color: var(--ink); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Hero ----- */
.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(900px 420px at 92% -10%, rgba(255,68,51,.08), transparent 60%),
    radial-gradient(700px 380px at 0% 0%, rgba(255,68,51,.05), transparent 55%),
    #fff;
  border-bottom: 1px solid var(--line-soft);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,68,51,.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(255,68,51,0); }
}
.hero__title {
  font-size: clamp(38px, 6.2vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--ink);
  margin: 0 auto 24px;
  max-width: 18ch;
}
.hero__title em {
  font-size: 1.05em;
  color: var(--ink);
  padding: 0 .04em;
}
.hl {
  background: linear-gradient(180deg, transparent 62%, rgba(255,68,51,.35) 62%);
  padding: 0 .08em;
  color: var(--ink);
  white-space: nowrap;
}
.hero__sub {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__meta {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.hero__strip > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__strip strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero__strip span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ----- Sections ----- */
.section {
  padding: 96px 0;
}
.section.pain { background: var(--bg-soft); }
.section.pain .lede { margin-top: 12px; margin-bottom: 0; }
.section.pain .lede:first-of-type { margin-top: 0; }
.section.position {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}
.section.position::before,
.section.position::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 40px;
  border-radius: 2px;
}
.section.position::after { margin: 40px auto 0; }
.section.inside { border-top: 1px solid var(--line-soft); background: var(--bg); }
.section.outcomes { background: var(--bg-soft); }

/* ----- Pain cards ----- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d1d5db;
}
.card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  line-height: 1.25;
}
.card p { margin: 0; color: var(--muted); }
.card--accent {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.card--accent h3,
.card--accent strong { color: #fff; }
.card--accent p { color: rgba(255,255,255,.72); }

/* ----- Phases ----- */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.phase {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  text-align: center;
  transition: all .3s var(--ease);
}
.phase:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -24px rgba(255,68,51,.2);
}
.phase__num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}
.phase__num::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto 16px;
}
.phase p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ----- Outcomes ----- */
.outcomes__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.outcomes__grid > div:first-child {
  max-width: 820px;
}
.outcomes__grid > div:first-child .lede {
  margin-top: 18px;
  font-weight: 500;
  color: var(--ink);
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
  text-align: left;
}
.checklist li {
  display: flex;
  gap: 14px;
  padding-left: 38px;
  position: relative;
  color: var(--body);
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ----- Pricing strip ----- */
.price-strip {
  padding: 60px 0;
  background: var(--bg);
}
.price-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(255,68,51,.25), transparent 55%);
  pointer-events: none;
}
.price-card__left { position: relative; z-index: 1; }
.price-card__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.price-card__note { margin-inline: auto; }
.price-card__price {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: #fff;
}
.price-card__note {
  margin: 0;
  color: rgba(255,255,255,.72);
  max-width: 46ch;
}
.price-card__meta {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* ----- Stack list ----- */
.stack__list {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  border-top: 1px solid var(--line);
}
.stack__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.stack__list li:hover { background: var(--bg-soft); }
.stack__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.16em;
}
.stack__body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.stack__body p {
  margin: 0 auto;
  color: var(--muted);
  max-width: 62ch;
}
.stack__val {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  background: var(--red-soft);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 999px;
}
/* ----- Carousel ----- */
.carousel {
  position: relative;
  margin: 56px auto 0;
  padding: 0 64px;
}
.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px;
  margin: -4px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
  aspect-ratio: 3 / 4;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .6s var(--ease);
}
.carousel__slide:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -24px rgba(10,10,10,.22);
}
.carousel__slide:hover img { transform: scale(1.02); }

.carousel__btn {
  position: absolute;
  top: calc(50% - 26px);
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  z-index: 3;
  transition: all .2s var(--ease);
  padding: 0;
}
.carousel__btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 12px 28px -8px rgba(255,68,51,.5);
  transform: translateY(-50%) scale(1.05);
}
.carousel__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.carousel__btn:disabled:hover {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  transform: translateY(-50%);
  box-shadow: var(--shadow-md);
}
.carousel__btn--prev { left: 0; }
.carousel__btn--next { right: 0; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .25s var(--ease);
}
.carousel__dot:hover { background: #cbd0d8; }
.carousel__dot.is-active {
  background: var(--red);
  width: 26px;
}

/* ----- Proof CTA ----- */
.proof__cta {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.proof__heading {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.proof__note {
  max-width: 56ch;
  color: var(--muted);
  font-size: 14px;
  margin: 8px auto 0;
}

/* ----- How it works ----- */
.how { background: var(--bg-soft); }
.how__steps {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.how__steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all .25s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.step p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ----- Proof ----- */
.proof { background: var(--bg); }

/* ----- FAQ ----- */
.faq { background: var(--bg-soft); }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  margin-top: 12px;
  transition: all .2s var(--ease);
}
.faq details[open] {
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.faq details { text-align: center; }
.faq summary {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  padding: 22px 56px;
  cursor: pointer;
  position: relative;
  list-style: none;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
  transition: transform .2s;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 0 auto;
  padding: 0 36px 26px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 62ch;
}
.faq .h2 { margin-bottom: 32px; }

/* ----- Final CTA ----- */
.final {
  background: var(--ink);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 360px at 15% 0%, rgba(255,68,51,.22), transparent 55%),
    radial-gradient(600px 320px at 85% 100%, rgba(255,68,51,.18), transparent 55%);
  pointer-events: none;
}
.final .container { position: relative; z-index: 1; }
.final__title {
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #fff;
  margin: 0 0 24px;
}
.final__title em { color: var(--red); }
.final .lede {
  color: rgba(255,255,255,.72);
  margin: 0 auto 40px;
}
.final__meta {
  margin: 20px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ----- Footer ----- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.footer p { margin: 0; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 920px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 24px 22px;
    box-shadow: 0 20px 40px -18px rgba(10,10,10,.15);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s var(--ease), opacity .2s var(--ease), visibility .2s;
  }
  .nav.is-open .nav__menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav__links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16px;
    color: var(--ink);
    font-weight: 500;
  }
  .nav__menu > .btn {
    width: 100%;
    margin-top: 14px;
    padding: 14px 18px;
    font-size: 15px;
  }
  .hero { padding: 64px 0 56px; }
  .hero__strip { grid-template-columns: repeat(2, 1fr); gap: 24px; padding-top: 32px; }
  .section { padding: 72px 0; }
  .cards, .phases { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .outcomes__grid { grid-template-columns: 1fr; gap: 32px; }
  .price-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 28px;
  }
  .price-card__right { align-items: flex-start; }
  .how__steps { grid-template-columns: 1fr; gap: 14px; }
  .how__steps::before { display: none; }
  .carousel { padding: 0 52px; }
  .carousel__slide { flex: 0 0 calc((100% - 22px) / 2); }
  .stack__list li {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .final { padding: 80px 0; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .hero__title { font-size: 42px; letter-spacing: -0.03em; }
  .hero__sub { font-size: 17px; }
  .hero__cta { flex-direction: column; align-items: center; gap: 14px; }
  .hero__meta { text-align: center; }
  .btn--lg { width: 100%; }
  .btn--xl {
    width: 100%;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
  }
  .price-card__price { font-size: 40px; }
  .faq summary { font-size: 15.5px; padding: 20px 48px 20px 20px; }
  .faq details p { padding: 0 20px 22px; }
  .carousel { padding: 0 8px; }
  .carousel__slide { flex: 0 0 100%; aspect-ratio: 9 / 14; }
  .carousel__btn { width: 42px; height: 42px; }
  .carousel__btn--prev { left: -4px; }
  .carousel__btn--next { right: -4px; }
}
