:root {
  --bg: #090a0d;
  --bg-soft: #101217;
  --panel: #151820;
  --panel-strong: #1d222c;
  --text: #f4f6f8;
  --muted: #a8b0ba;
  --line: rgba(255, 255, 255, 0.12);
  --silver: #d9dde2;
  --champagne: #d4b98b;
  --navy: #17243d;
  --accent: #8fb0d9;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(15, 21, 32, 0.72) 0%, rgba(9, 10, 13, 0) 460px),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, Manrope, Sora, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 112px 24px;
}

section[id] {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 44px);
  background: rgba(9, 10, 13, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(217, 221, 226, 0.35);
  border-radius: 8px;
  background: #11151b;
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 800;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0;
  font-size: 0.84rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-text strong {
  font-weight: 800;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.75rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  color: var(--muted);
  font-size: 0.92rem;
}

.desktop-nav a,
.mobile-nav a {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 750;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  font-size: 0.9rem;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--text);
  color: #0b0c10;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.button.large {
  min-height: 54px;
  padding: 0 28px;
}

.button.full {
  width: 100%;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 78px 14px auto;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 16px;
  background: rgba(16, 18, 23, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  min-height: 44px;
  padding: 12px 10px;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-areas:
    "copy visual"
    "stats visual";
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  grid-template-rows: auto auto;
  align-content: start;
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
  row-gap: 28px;
  min-height: auto;
  padding-top: clamp(32px, 5vh, 50px);
  padding-bottom: clamp(42px, 6vh, 70px);
}

.hero-copy {
  grid-area: copy;
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.05vw, 4.05rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.16rem, 2vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 18px;
  color: var(--silver);
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 620px;
  margin-bottom: 26px;
}

.hero-badges span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--silver);
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 670px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-stats div {
  min-height: 96px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-stats dt {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 850;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  grid-area: visual;
  align-self: center;
  position: relative;
  overflow: hidden;
  min-height: 390px;
  height: min(50vh, 500px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.section-copy {
  color: var(--silver);
  font-size: 1.05rem;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.problem {
  padding-top: 30px;
  padding-bottom: 30px;
}

.problem-panel,
.ethics-box,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(143, 176, 217, 0.15), rgba(212, 185, 139, 0.07)),
    rgba(255, 255, 255, 0.04);
}

.problem-panel {
  padding: clamp(28px, 5vw, 58px);
}

.problem-panel h2 {
  max-width: 900px;
}

.problem-panel p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--silver);
  font-size: 1.08rem;
}

.audience {
  padding-top: 72px;
}

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

.audience-card {
  min-height: 265px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.028)),
    var(--bg-soft);
}

.audience-card span {
  display: block;
  margin-bottom: 48px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 850;
}

.audience-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-grid,
.pricing-grid,
.pricing-groups,
.portfolio-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
}

.service-card,
.price-card,
.comparison-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.service-card {
  min-height: 500px;
  padding: clamp(24px, 3vw, 34px);
}

.service-card.featured {
  background:
    linear-gradient(180deg, rgba(143, 176, 217, 0.16), rgba(255, 255, 255, 0.045)),
    var(--panel);
}

.service-number {
  display: block;
  margin-bottom: 78px;
  color: var(--champagne);
  font-size: 0.8rem;
  font-weight: 850;
}

.service-card p,
.price-card p,
.comparison-card p,
.ethics-box p,
.final-cta p {
  color: var(--muted);
}

.service-card ul,
.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--silver);
}

.service-card li,
.price-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before,
.price-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--champagne);
  content: "";
}

.process {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--bg);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.timeline article {
  min-height: 300px;
  padding: 24px;
  background: var(--bg-soft);
}

.timeline span {
  display: block;
  margin-bottom: 82px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 850;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.package {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}

.package-copy {
  position: sticky;
  top: 118px;
}

.package-copy h2 {
  font-size: clamp(2rem, 3.25vw, 3.35rem);
  line-height: 1.02;
}

.package-copy p:last-child {
  color: var(--silver);
  font-size: 1.06rem;
}

.pricing-groups {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.pricing-group {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
  gap: 14px;
  min-width: 0;
}

.pricing-group-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-group-heading {
  min-height: 82px;
}

.pricing-group-heading h3 {
  max-width: 330px;
  margin-bottom: 0;
}

.pricing-grid {
  grid-template-columns: 1fr;
  grid-template-rows: 448px 762px;
  align-items: stretch;
  gap: 18px;
  height: 100%;
}

.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px;
}

.price-card.compact {
  min-height: 0;
}

.main-price {
  min-height: 0;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(212, 185, 139, 0.16), rgba(143, 176, 217, 0.09)),
    var(--panel-strong);
}

.price-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(212, 185, 139, 0.35);
  border-radius: 999px;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.price-original {
  display: block;
  margin: 6px 0 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.price-original s {
  color: rgba(244, 246, 248, 0.72);
  text-decoration-color: rgba(212, 185, 139, 0.9);
  text-decoration-thickness: 2px;
}

.price-offer {
  display: inline-flex;
  width: fit-content;
  margin: -6px 0 10px;
  padding: 5px 8px;
  border: 1px solid rgba(212, 185, 139, 0.32);
  border-radius: 999px;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-note {
  margin-top: 12px;
  font-size: 0.94rem;
}

.pricing-subtitle {
  min-height: 48px;
  margin: -4px 0 18px;
  color: var(--silver);
  font-size: 0.94rem;
}

.price-card .payment-button {
  margin-top: auto;
}

.post-purchase {
  grid-column: 2;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.post-purchase h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.post-purchase ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: purchase-step;
}

.post-purchase li {
  position: relative;
  min-height: 112px;
  padding: 42px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.9rem;
  counter-increment: purchase-step;
}

.post-purchase li::before {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--champagne);
  content: counter(purchase-step, decimal-leading-zero);
  font-size: 0.76rem;
  font-weight: 850;
}

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

.portfolio-note {
  max-width: 760px;
  color: var(--silver);
  font-size: 1.02rem;
}

.comparison-card {
  overflow: hidden;
  min-height: 455px;
}

.comparison-card h3,
.comparison-card p {
  padding: 0 22px;
}

.comparison-card h3 {
  margin-top: 22px;
}

.comparison-card p {
  padding-bottom: 24px;
}

.comparison-switcher {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--panel);
}

.comparison-stage {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--panel);
}

.comparison-layer {
  position: absolute;
  inset: 0;
  min-height: 260px;
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    filter 520ms ease;
}

.comparison-before {
  z-index: 2;
  opacity: 1;
}

.comparison-after {
  z-index: 1;
  opacity: 0;
  transform: scale(1.02);
}

.comparison-before,
.comparison-after {
  background-size: cover;
  background-position: center;
}

.comparison-before {
  background:
    linear-gradient(135deg, rgba(6, 7, 10, 0.64), rgba(6, 7, 10, 0.72)),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #34373e, #17191e);
  filter: saturate(0.62) contrast(0.85);
}

.comparison-after {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.35), transparent 34%),
    linear-gradient(135deg, rgba(143, 176, 217, 0.38), rgba(212, 185, 139, 0.14)),
    linear-gradient(135deg, #232a36, #0f1117);
}

.comparison-switcher[data-state="after"] .comparison-before {
  opacity: 0;
  transform: scale(0.98);
}

.comparison-switcher[data-state="after"] .comparison-after {
  opacity: 1;
  transform: scale(1);
}

.comparison-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.comparison-option {
  min-height: 48px;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: rgba(9, 10, 13, 0.86);
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.comparison-option:hover,
.comparison-option.is-active {
  background: var(--text);
  color: #0b0c10;
}

.comparison-food .comparison-after {
  background:
    radial-gradient(circle at 52% 50%, rgba(245, 226, 179, 0.42), transparent 30%),
    linear-gradient(135deg, rgba(212, 185, 139, 0.34), rgba(143, 176, 217, 0.1)),
    linear-gradient(135deg, #27211b, #0f1117);
}

.comparison-retail .comparison-after {
  background:
    radial-gradient(circle at 48% 50%, rgba(215, 225, 236, 0.35), transparent 31%),
    linear-gradient(135deg, rgba(143, 176, 217, 0.35), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, #1c2432, #0f1117);
}

.comparison-space .comparison-after {
  background:
    radial-gradient(circle at 48% 50%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(143, 176, 217, 0.28), rgba(212, 185, 139, 0.16)),
    linear-gradient(135deg, #202631, #0f1117);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.pill-grid span {
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--silver);
  font-size: 0.95rem;
}

.ethics-box {
  padding: clamp(28px, 5vw, 58px);
}

.ethics-box h2 {
  max-width: 900px;
}

.ethics-box p:last-child {
  max-width: 850px;
  margin-bottom: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.trust-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(9, 10, 13, 0.22);
}

.trust-grid h3 {
  font-size: 1.1rem;
}

.trust-grid p {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 780;
}

.faq-list summary::marker {
  color: var(--champagne);
}

.faq-list p {
  margin: -4px 22px 22px;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(30px, 5vw, 60px);
}

.final-cta div {
  max-width: 760px;
}

.final-cta p:last-child {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  min-width: min(100%, 420px);
}

.contact-actions .button.secondary {
  color: var(--text);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-info {
  display: grid;
  gap: 6px;
  text-align: right;
}

.site-footer p,
.footer-info a {
  margin-bottom: 0;
}

.footer-info a {
  color: var(--silver);
  font-size: 0.94rem;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .mobile-nav {
    display: grid;
  }

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

  .hero {
    grid-template-areas:
      "copy"
      "visual"
      "stats";
    min-height: 0;
    align-items: stretch;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
    height: 460px;
  }

  .audience-grid,
  .service-grid,
  .timeline,
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card.featured {
    grid-column: 1 / -1;
  }

  .timeline article {
    min-height: 240px;
  }

  .package-copy {
    position: static;
  }

  .post-purchase {
    grid-column: 1;
  }

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

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

@media (max-width: 760px) {
  .section-pad {
    padding: 78px 18px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    max-width: min(100%, 360px);
    font-size: clamp(2rem, 8.4vw, 2.9rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 3.1rem);
  }

  .hero {
    gap: 28px;
    padding-top: 38px;
    padding-bottom: 50px;
  }

  .hero-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: stretch;
    min-width: 0;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .audience-grid,
  .service-grid,
  .timeline,
  .pricing-groups,
  .pricing-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 245px;
    height: 245px;
  }

  .service-number,
  .timeline span {
    margin-bottom: 42px;
  }

  .timeline article {
    min-height: auto;
  }

  .main-price {
    grid-row: auto;
    min-height: auto;
  }

  .pricing-subtitle {
    min-height: auto;
  }

  .pricing-grid {
    grid-template-rows: auto;
  }

  .post-purchase ol {
    grid-template-columns: 1fr;
  }

  .post-purchase li {
    min-height: auto;
  }

  .comparison-card {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-info {
    text-align: left;
  }
}

@media (max-width: 440px) {
  .brand-text {
    display: none;
  }

  .hero-lead,
  .section-copy,
  .package-copy p:last-child,
  .problem-panel p {
    font-size: 1rem;
  }
}
