:root {
  --bg: #faf6f4;
  --surface: #fff;
  --surface-warm: #fdf8f5;
  --ink: #271220;
  --muted: #7a5568;
  --line: rgba(39, 18, 32, 0.12);
  --brand: #A85C7A;
  --brand-deep: #6E3352;
  --brand-soft: #F2E5EC;
  --sand: #ede0d4;
  --shadow: 0 24px 56px rgba(39, 18, 32, 0.09);
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fdf0f5 0%, #faf6f4 12%, #f7f3ee 100%);
}

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

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

button,
summary {
  font: inherit;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--ink);
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

p,
blockquote {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  overflow: clip;
  padding-bottom: 5.5rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.eyebrow-light {
  color: rgba(242, 229, 236, 0.88);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 246, 244, 0.88);
  border-bottom: 1px solid rgba(39, 18, 32, 0.06);
  backdrop-filter: blur(20px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.brand span {
  transform: translateY(-0.03em);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-links {
  position: absolute;
  top: calc(100% - 0.1rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem 1rem 1.2rem;
  background: rgba(250, 246, 244, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.86rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 32px rgba(110, 51, 82, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(110, 51, 82, 0.2);
}

.button-strong {
  background: #cb7840;
  box-shadow: 0 18px 32px rgba(203, 120, 64, 0.22);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button-light {
  background: #fff;
  color: var(--brand-deep);
  box-shadow: none;
}

.button-small {
  min-height: 2.65rem;
  padding-inline: 1.05rem;
  font-size: 0.92rem;
}

.hero {
  padding-top: 4.3rem;
  padding-bottom: 3.6rem;
}

.hero-layout {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}

.hero-copy {
  max-width: 41rem;
}

.hero-offer {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(168, 92, 122, 0.2);
  border-radius: 999px;
  background: rgba(242, 229, 236, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.hero-text {
  max-width: 37rem;
  font-size: 1.12rem;
}

.hero-note {
  max-width: 34rem;
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 1px solid var(--brand-soft);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.34rem;
  font-style: italic;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 0.9rem;
}

.hero-reassurance {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.hero-visual {
  position: relative;
}

.hero-scene {
  position: relative;
  min-height: 38rem;
}

.scene-card {
  position: absolute;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.product-card {
  top: 0;
  left: 0;
  width: min(23rem, 100%);
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 248, 245, 0.92));
  border: 1px solid rgba(39, 18, 32, 0.08);
}

.quote-card {
  right: 0;
  bottom: 3.8rem;
  width: min(25rem, calc(100% - 2rem));
  padding: 2rem;
  background: linear-gradient(180deg, #7a395a 0%, var(--brand-deep) 62%, #53243e 100%);
}

.scene-label {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.device-stage {
  position: relative;
  min-height: 16rem;
  border-radius: 4px;
  background: linear-gradient(180deg, #f7eee8 0%, #f3e6df 100%);
  overflow: hidden;
}

.lanyard {
  position: absolute;
  top: -2rem;
  left: 7.2rem;
  width: 4.2rem;
  height: 8rem;
  border: 2px solid rgba(110, 51, 82, 0.18);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.device-button {
  position: absolute;
  left: 5.2rem;
  top: 3rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #ffffff, #f2f2f0 70%, #dad8d5 100%);
  box-shadow: inset 0 -16px 24px rgba(39, 18, 32, 0.08), 0 18px 28px rgba(39, 18, 32, 0.12);
}

.device-core {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(39, 18, 32, 0.08);
  border-radius: 999px;
}

.device-hub {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 5.8rem;
  height: 3.5rem;
  border-radius: 4px;
  background: linear-gradient(180deg, #fff, #efe8e3);
  box-shadow: 0 12px 20px rgba(39, 18, 32, 0.08);
}

.story-quote {
  max-width: 12ch;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
}

.story-label {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.74);
}

.alert-card {
  position: absolute;
  right: 1rem;
  top: 8rem;
  width: min(15rem, calc(100% - 2rem));
  padding: 1rem 1.05rem;
  border: 1px solid rgba(39, 18, 32, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 28px rgba(39, 18, 32, 0.12);
}

.alert-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.alert-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--ink);
}

.phones-card {
  position: absolute;
  left: 2rem;
  bottom: 0;
  display: flex;
  gap: 0.8rem;
}

.phone-screen {
  width: 10.2rem;
  padding: 1rem 0.9rem;
  border: 1px solid rgba(39, 18, 32, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 28px rgba(39, 18, 32, 0.12);
}

.phone-screen span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.phone-screen strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ink);
}

.phone-screen p {
  font-size: 0.86rem;
  line-height: 1.5;
}

.phone-screen-offset {
  transform: translateY(2rem);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  animation: pulse 1.8s infinite;
}

.trust-strip {
  padding: 1rem 0;
  border-top: 1px solid rgba(39, 18, 32, 0.06);
  border-bottom: 1px solid rgba(39, 18, 32, 0.06);
  background: rgba(255, 255, 255, 0.54);
}

.trust-grid {
  display: grid;
  gap: 0.75rem 1rem;
}

.trust-grid p {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.problem-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(253, 248, 245, 0.9));
}

.problem-layout {
  display: grid;
  gap: 1.8rem;
}

.problem-grid {
  display: grid;
  gap: 1.2rem;
}

.problem-card {
  padding: 1.4rem;
  border-left: 3px solid var(--brand);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 34px rgba(39, 18, 32, 0.05);
}

.section-cta,
.band-cta {
  margin-top: 2rem;
}

.how-band {
  background: var(--brand-deep);
  color: #fff;
}

.how-band h2,
.how-band h3 {
  color: #fff;
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
}

.step-card {
  position: relative;
  padding: 1.75rem 0;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.75rem;
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.step-number {
  display: block;
  margin-bottom: 1rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--brand-soft);
}

.step-card p {
  max-width: 19rem;
  color: rgba(255, 255, 255, 0.74);
}

.why-section {
  background: linear-gradient(180deg, rgba(242, 229, 236, 0.72), rgba(253, 248, 245, 0.9));
}

.features-grid,
.testimonials {
  display: grid;
  gap: 1.35rem;
}

.feature-card,
.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  border-top: 2px solid var(--brand);
  border-radius: 4px;
  background: var(--surface-warm);
  box-shadow: 0 18px 34px rgba(39, 18, 32, 0.06);
}

.feature-kicker {
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.story-panel {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
  padding: 1.6rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 34px rgba(39, 18, 32, 0.05);
}

.story-quote-panel {
  padding-left: 1rem;
  border-left: 1px solid rgba(168, 92, 122, 0.24);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--brand-deep);
}

.testimonials {
  margin-top: 1.35rem;
}

.testimonial-quote {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.testimonial-meta {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.comparison-section {
  background: linear-gradient(180deg, rgba(237, 224, 212, 0.92), rgba(250, 246, 244, 0.88));
}

.comparison-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.comparison-layout .section-cta {
  grid-column: 1 / -1;
}

.comparison-table {
  border: 1px solid rgba(39, 18, 32, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.comparison-header {
  background: rgba(39, 18, 32, 0.03);
}

.comparison-header span,
.comparison-row strong,
.comparison-row span {
  padding: 1rem 1.1rem;
}

.comparison-header span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.comparison-row {
  border-top: 1px solid rgba(39, 18, 32, 0.08);
}

.comparison-row strong {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink);
}

.comparison-row span {
  color: var(--muted);
}

.comparison-brand {
  border-left: 2px solid var(--brand);
  color: var(--ink);
  font-weight: 700;
}

.pricing-section {
  background: var(--surface);
}

.pricing-layout {
  max-width: 54rem;
}

.pricing-intro {
  max-width: 40rem;
  font-size: 1.06rem;
}

.pricing-panel {
  padding-top: 1.2rem;
  border-top: 2px solid var(--ink);
}

.pricing-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.price-block {
  text-align: right;
  white-space: nowrap;
}

.price-block strong {
  display: block;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.price-block span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.pricing-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-top: 1.5rem;
}

.pricing-guarantees p {
  padding: 0.66rem 0.92rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-warm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.pricing-cta {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding-top: 2rem;
}

.pricing-cta p {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.08rem;
  font-style: italic;
}

.faq-section {
  background: linear-gradient(180deg, rgba(253, 248, 245, 0.9), rgba(250, 246, 244, 0.98));
}

.faq-layout {
  display: grid;
  gap: 1.8rem;
}

.faq-side-cta {
  margin-top: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0 1.15rem;
  border-left: 1px solid rgba(39, 18, 32, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6);
  transition: border-color 180ms ease, background 180ms ease, padding-left 180ms ease;
}

.faq-item[open] {
  padding-left: 1.35rem;
  border-left: 5px solid var(--brand);
  background: rgba(242, 229, 236, 0.72);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 1.2rem;
}

.site-footer {
  padding: 2.6rem 0 1.4rem;
  background: var(--brand-deep);
  color: #fff;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.footer-top {
  padding-bottom: 1.6rem;
}

.brand-footer,
.brand-footer span {
  color: #fff;
}

.footer-nav,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-nav a,
.footer-meta a,
.footer-bottom p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.76);
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-buy-bar {
  position: fixed;
  right: 1rem;
  left: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(39, 18, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 32px rgba(39, 18, 32, 0.14);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.sticky-buy-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-buy-copy strong,
.sticky-buy-copy span {
  display: block;
}

.sticky-buy-copy strong {
  font-size: 0.94rem;
  color: var(--ink);
}

.sticky-buy-copy span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.reveal-block {
  opacity: 0;
  transform: translateY(22px);
}

.reveal {
  animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-play-state: paused;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

.reveal-delay-4 {
  animation-delay: 0.32s;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible {
  animation-play-state: running;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 720px) {
  .trust-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

@media (min-width: 760px) {
  .hero-layout,
  .comparison-layout,
  .story-panel {
    grid-template-columns: minmax(0, 1.04fr) minmax(22rem, 0.96fr);
  }

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

  .faq-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (min-width: 980px) {
  .testimonials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 919px) {
  .nav {
    position: relative;
  }
}

@media (max-width: 759px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-scene {
    min-height: 33rem;
  }

  .quote-card {
    left: 0;
    right: auto;
    bottom: 2.6rem;
  }

  .alert-card {
    top: 10rem;
  }

  .phones-card {
    left: 0.6rem;
    right: 0.6rem;
    gap: 0.55rem;
  }

  .phone-screen {
    width: calc(50% - 0.3rem);
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-header span:first-child {
    display: none;
  }

  .comparison-header span,
  .comparison-row strong,
  .comparison-row span {
    padding: 0.9rem 1rem;
  }

  .comparison-header span:not(:first-child) {
    border-top: 1px solid rgba(39, 18, 32, 0.08);
  }

  .comparison-brand {
    border-left: 0;
    border-top: 2px solid var(--brand);
  }

  .pricing-row,
  .footer-top,
  .footer-bottom,
  .sticky-buy-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-block {
    text-align: left;
  }

  .step-card:not(:last-child)::after {
    top: auto;
    left: 0;
    right: 0;
    bottom: -0.75rem;
    width: auto;
    height: 1px;
  }

  .sticky-buy-bar {
    border-radius: 24px;
  }
}
