/* ============================================================
   HOMEPAGE — homepage_testing.css
   QSS homepage v3 — premium redesign
   All classes prefixed `hp-` to avoid conflicts.
   Design system matches store_products.css tokens.
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
.hp-page {
  /* Brand palette */
  --hp-primary:         #991b1b;
  --hp-primary-mid:     #e71d36;
  --hp-primary-light:   #f87171;
  --hp-primary-pale:    #fff1f2;

  --hp-teal:            #9ca3af;

  /* Text */
  --hp-text:            #0f172a;
  --hp-text-secondary:  #334155;
  --hp-text-muted:      #64748b;

  /* Surfaces */
  --hp-bg:              #f8fafc;
  --hp-bg-subtle:       #f1f5f9;
  --hp-white:           #ffffff;

  /* Border */
  --hp-border:          #e2e8f0;

  /* Hero dark */
  --hp-dark:            #111418;
  --hp-dark-navy:       #0f172a;

  --hp-silver:          #c9cdd3;

  /* Shadows */
  --hp-shadow-xs:       0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --hp-shadow-sm:       0 2px 8px rgba(15, 23, 42, 0.07), 0 1px 4px rgba(15, 23, 42, 0.05);
  --hp-shadow-md:       0 4px 16px rgba(15, 23, 42, 0.09), 0 2px 8px rgba(15, 23, 42, 0.06);
  --hp-shadow-lg:       0 8px 32px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.08);
  --hp-shadow-hover:    0 12px 40px rgba(153, 27, 27, 0.18), 0 4px 16px rgba(153, 27, 27, 0.10);

  /* Gradients */
  --hp-gradient-stripe: linear-gradient(90deg, #991b1b 0%, #e71d36 60%, #f87171 100%); /* e9980c */
  --hp-gradient-btn:    linear-gradient(135deg, #e71d36 0%, #991b1b 100%);
  --hp-gradient-text:   linear-gradient(135deg, #991b1b 0%, #e71d36 100%);

  --hp-radial-top:   radial-gradient(80% 60% at 15% 20%, rgba(231, 29, 54, 0.16) 0%, rgba(231, 29, 54, 0.06) 40%, transparent 70%);
  --hp-rdaial-bottm: radial-gradient(80% 60% at 85% 80%, rgba(231, 29, 54, 0.16) 0%, rgba(231, 29, 54, 0.06) 40%, transparent 70%);

  /* Shape */
  --hp-radius-sm:       8px;
  --hp-radius-md:       14px;
  --hp-radius-lg:       20px;
  --hp-radius-xl:       28px;
  --hp-radius-pill:     999px;

  /* Typography */
  --hp-font-primary:    "Montserrat", sans-serif;
  --hp-font-secondary:  "Poppins", sans-serif;

  /* Spacing */
  --hp-space-4:   4px;
  --hp-space-8:   8px;
  --hp-space-12:  12px;
  --hp-space-16:  16px;
  --hp-space-24:  24px;
  --hp-space-32:  32px;
  --hp-space-48:  48px;
  --hp-space-64:  64px;
  --hp-space-96:  96px;

  /* Transition */
  --hp-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  font-family: var(--hp-font-primary);
  color: var(--hp-text);
  background-color: var(--hp-bg-subtle);
}


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.hp-container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--hp-space-24);
}

.hp-container--narrow {
  max-width: 720px;
}


/* ============================================================
   SHARED SECTION INTRO
   ============================================================ */
.hp-section-intro {
  margin-bottom: var(--hp-space-48);
}

.hp-section-intro--center {
  text-align: center;
}

.hp-section-intro--center .hp-eyebrow {
  margin-inline: auto;
}

.hp-section-intro--center .hp-section-heading {
  margin-inline: auto;
}

/* Eyebrow label */
.hp-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hp-primary-mid);
  background: var(--hp-primary-pale);
  border: 1px solid rgba(231, 29, 54, 0.15);
  border-radius: var(--hp-radius-pill);
  padding: 4px 14px;
  margin-bottom: var(--hp-space-16);
}

/* Section heading */
.hp-section-heading {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--hp-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--hp-space-8);
  font-family: var(--hp-font-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--hp-radius-pill);
  cursor: pointer;
  transition:
    background var(--hp-transition),
    border-color var(--hp-transition),
    color var(--hp-transition),
    box-shadow var(--hp-transition),
    transform var(--hp-transition);
  line-height: 1;
  white-space: nowrap;
  padding: var(--hp-space-12) var(--hp-space-24);
}

.hp-btn--lg {
  padding: var(--hp-space-16) var(--hp-space-32);
  font-size: 1rem;
}

.hp-btn--full {
  width: 100%;
}

/* Primary: gradient blue */
.hp-btn--primary {
  background: var(--hp-gradient-btn);
  color: var(--hp-white);
  border-color: transparent;
  box-shadow: 0 3px 12px rgba(231, 29, 54, 0.35);
}

.hp-btn--primary:hover {
  box-shadow: 0 6px 20px rgba(231, 29, 54, 0.45);
  transform: translateY(-1px);
}

.hp-btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(231, 29, 54, 0.30);
}

.hp-btn--primary:focus-visible {
  outline: 3px solid rgba(231, 29, 54, 0.4);
  outline-offset: 3px;
}

/* Hero CTA: matches hp-btn--primary (red gradient) */
.hp-btn--hero-cta {
  color: var(--hp-white);
  background: var(--hp-gradient-btn);
  border-color: transparent;
  box-shadow: 0 3px 12px rgba(231, 29, 54, 0.35);
}

.hp-btn--hero-cta:hover {
  box-shadow: 0 6px 20px rgba(231, 29, 54, 0.45);
  transform: translateY(-1px);
}

.hp-btn--hero-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(231, 29, 54, 0.30);
}

.hp-btn--hero-cta:focus-visible {
  outline: 3px solid rgba(231, 29, 54, 0.4);
  outline-offset: 3px;
}

/* Outline: secondary / app store */
.hp-btn--outline {
  background: transparent;
  color: var(--hp-text);
  border-color: var(--hp-border);
}

.hp-btn--outline:hover {
  background: var(--hp-gradient-btn);
  color: var(--hp-white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(231, 29, 54, 0.45);
  transform: translateY(-1px);
}

.hp-btn--outline:active {
  background: var(--hp-gradient-btn);
  color: var(--hp-white);
  border-color: transparent;
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(231, 29, 54, 0.30);
}

.hp-btn--outline:focus-visible {
  outline: 3px solid rgba(231, 29, 54, 0.4);
  outline-offset: 3px;
}


/* ============================================================
   SHARED CARD STRIPE (top gradient bar)
   ============================================================ */
.hp-benefit-card__stripe,
.hp-pillar__stripe,
.hp-pricing__stripe {
  height: 4px;
  background: var(--hp-gradient-stripe);
  border-radius: var(--hp-radius-lg) var(--hp-radius-lg) 0 0;
  flex-shrink: 0;
}


/* ============================================================
   SHARED ICON CELL
   ============================================================ */
.hp-icon-cell {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(153, 27, 27, 0.10), rgba(231, 29, 54, 0.05));
  border: 1px solid rgba(231, 29, 54, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hp-icon-cell i {
  font-size: 1.375rem;
  color: var(--hp-primary-mid);
}


/* ============================================================
   SECTION 1: HERO
   ============================================================ */
.hp-hero {
  position: relative;
  background: linear-gradient(135deg, var(--hp-silver), var(--hp-silver));
  padding-block: var(--hp-space-96) var(--hp-space-64);
  text-align: center;
  overflow: hidden;
}

/* Radial gradient light sources */
.hp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 15% 20%,
    rgba(231, 29, 54, 0.16) 0%,
    rgba(231, 29, 54, 0.06) 40%,
    transparent 70%
  ),
  radial-gradient(
    80% 60% at 85% 80%,
    rgba(231, 29, 54, 0.16) 0%,
    rgba(231, 29, 54, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Dot pattern overlay */
.hp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hp-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--hp-space-24);
}

.hp-hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: var(--hp-space-24);
  /* Gradient text — light blues for visibility on dark hero background */
  background: var(--hp-text); /*  linear-gradient(135deg, #60a5fa 0%, #bfdbfe 100%) */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--hp-text); /* rgba(248, 250, 252, 0.72) */
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 640px;
  margin-inline: auto;
}

.hp-hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* var(--hp-space-12) */
  margin-bottom: 7px; /* var(--hp-space-32) */
}

.hp-hero__micro-text {
  font-size: 0.8125rem;
  color: var(--hp-text); /* rgba(248, 250, 252, 0.55) */
  font-style: italic;
}

.hp-hero__app-note {
  font-size: 0.875rem;
  color: var(--hp-text); /* rgba(248, 250, 252, 0.55) */
  line-height: 1.65;
  max-width: 480px;
  margin-inline: auto;
  padding-top: 7px; /* var(--hp-space-24) */
  border-top: 1px solid rgba(0, 0, 0, 0.30); /* rgba(255, 255, 255, 0.10 */
}


/* ============================================================
   SECTION 2: BENEFIT CARDS
   ============================================================ */
.hp-benefits {
  padding-block: var(--hp-space-96);
  background-color: var(--hp-bg);
}

.hp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hp-space-16);
}

.hp-benefit-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--hp-shadow-sm);
  transition:
    box-shadow var(--hp-transition),
    transform var(--hp-transition);
}

.hp-benefit-card:hover {
  box-shadow: var(--hp-shadow-hover);
  transform: translateY(-4px);
}

.hp-benefit-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--hp-space-32) var(--hp-space-24) var(--hp-space-24);
  gap: var(--hp-space-16);
  flex: 1;
}

.hp-benefit-card__heading {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hp-text);
  line-height: 1.45;
  margin: 0;
}


/* ============================================================
   SECTION 3: THREE PILLARS
   ============================================================ */
.hp-pillars {
  padding-block: var(--hp-space-96);
  background-color: var(--hp-bg-subtle);
}

.hp-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hp-space-24);
}

.hp-pillar {
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--hp-shadow-sm);
  transition:
    box-shadow var(--hp-transition),
    transform var(--hp-transition);
}

.hp-pillar:hover {
  box-shadow: var(--hp-shadow-hover);
  transform: translateY(-4px);
}

.hp-pillar__body {
  padding: var(--hp-space-32);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hp-pillar__body > .hp-icon-cell {
  margin-bottom: var(--hp-space-16);
  align-self: center;
}

.hp-pillar__heading {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--hp-text);
  line-height: 1.3;
  margin-bottom: var(--hp-space-20, 20px);
  text-align: center;
}

.hp-pillar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--hp-space-12);
}

.hp-pillar__list li {
  font-size: 0.9375rem;
  color: var(--hp-text-muted);
  line-height: 1.55;
  padding-left: 26px;
  position: relative;
}

/* RemixIcon check via pseudo-element */
.hp-pillar__list li::before {
  content: "\eb7b";
  font-family: "remixicon";
  font-style: normal;
  font-size: 1rem;
  color: var(--hp-primary-mid);
  position: absolute;
  left: 0;
  top: 1px;
  line-height: 1.55;
}


/* ============================================================
   SECTION 4: CONVERSION BRIDGE
   ============================================================ */
.hp-bridge {
  position: relative;
  background: var(--hp-dark-navy);
  clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0 100%);
  padding-block: calc(80px + 4vw);
  text-align: center;
  overflow: hidden;
}

.hp-bridge__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(231, 29, 54, 0.35) 0%, transparent 90%);
  pointer-events: none;
  z-index: 0;
}

.hp-bridge .hp-container {
  position: relative;
  z-index: 1;
}

.hp-bridge__lead {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.2;
  margin-bottom: var(--hp-space-8);
}

.hp-bridge__lead + .hp-bridge__lead {
  margin-bottom: var(--hp-space-32);
}

.hp-bridge__support {
  font-size: 1.05rem;
  color: rgba(248, 250, 252, 0.65);
  line-height: 1.72;
  max-width: 580px;
  margin-inline: auto;
}


/* ============================================================
   SECTION 5: EVERYTHING INCLUDED (checklist)
   ============================================================ */
.hp-checklist-section {
  padding-block: var(--hp-space-96);
  background-color: var(--hp-bg-subtle);
}

.hp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--hp-space-48);
  row-gap: 0;
}

.hp-checklist__item {
  font-size: 1rem;
  font-weight: 500;
  color: var(--hp-text);
  line-height: 1.5;
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid var(--hp-border);
  position: relative;
  display: flex;
  align-items: center;
}

.hp-checklist__item::before {
  content: "\eb7b";
  font-family: "remixicon";
  font-style: normal;
  font-size: 1.125rem;
  color: var(--hp-primary-mid);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}


/* ============================================================
   SECTION 6: PRICING
   ============================================================ */
.hp-pricing {
  padding-block: var(--hp-space-96);
  background-color: var(--hp-white);
}

.hp-pricing__wrap {
  display: flex;
  justify-content: center;
}

.hp-pricing__card {
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-lg);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(231, 29, 54, 0.08),
    0 8px 24px rgba(231, 29, 54, 0.10),
    0 32px 64px rgba(15, 23, 42, 0.08);
  transition: box-shadow var(--hp-transition);
}

.hp-pricing__card:hover {
  box-shadow:
    0 0 0 1px rgba(231, 29, 54, 0.12),
    0 12px 32px rgba(231, 29, 54, 0.15),
    0 40px 72px rgba(15, 23, 42, 0.10);
}

.hp-pricing__body {
  padding: var(--hp-space-48);
  text-align: center;
}

.hp-pricing__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hp-primary-mid);
  background: var(--hp-primary-pale);
  border: 1px solid rgba(231, 29, 54, 0.15);
  border-radius: var(--hp-radius-pill);
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: var(--hp-space-24);
}

.hp-pricing__price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--hp-text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--hp-space-4);
}

.hp-pricing__period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--hp-text-muted);
  letter-spacing: 0;
}

.hp-pricing__value-list {
  list-style: none;
  padding: 0;
  margin: var(--hp-space-24) 0 var(--hp-space-32);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.hp-pricing__value-list li {
  font-size: 0.9375rem;
  color: var(--hp-text-secondary);
  line-height: 1.5;
  padding-left: 26px;
  position: relative;
}

.hp-pricing__value-list li::before {
  content: "\eb7b";
  font-family: "remixicon";
  font-style: normal;
  font-size: 1rem;
  color: var(--hp-primary-mid);
  position: absolute;
  left: 0;
  top: 1px;
  line-height: 1.5;
}

.hp-pricing__reassurance {
  font-size: 0.8125rem;
  color: var(--hp-text-muted);
  margin-top: var(--hp-space-16);
  font-style: italic;
}


/* ============================================================
   SECTION 7: ABOUT / TRUST
   ============================================================ */
.hp-about {
  padding-block: var(--hp-space-96);
  background-color: var(--hp-bg);
  text-align: center;
}

.hp-about__opener {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--hp-text);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: var(--hp-space-24);
  /* Gradient text */
  background: var(--hp-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-about__text {
  font-size: 1.0625rem;
  color: var(--hp-text-muted);
  line-height: 1.75;
  margin-bottom: var(--hp-space-8);
  max-width: 600px;
  margin-inline: auto;
}

.hp-about__text:last-child {
  margin-bottom: 0;
}


/* ============================================================
   SECTION 8: MOBILE APP
   ============================================================ */
.hp-mobile-app {
  padding-block: var(--hp-space-64);
  background-color: var(--hp-white);
  border-top: 1px solid var(--hp-border);
  text-align: center;
}

.hp-mobile-app__heading {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--hp-text);
  margin-bottom: var(--hp-space-8);
}

.hp-mobile-app__text {
  font-size: 0.9375rem;
  color: var(--hp-text-muted);
  line-height: 1.65;
  margin-bottom: var(--hp-space-24);
  max-width: 480px;
  margin-inline: auto;
}

.hp-mobile-app__badge {
  display: flex;
  justify-content: center;
}


/* ============================================================
   RESPONSIVE — TABLET (768px to 1199px)
   ============================================================ */
@media screen and (max-width: 1199px) {

  /* Hero */
  .hp-hero {
    padding-block: calc(var(--hp-space-64) + 16px) var(--hp-space-64);
  }

  /* Benefits: 2 columns */
  .hp-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hp-space-16);
  }

  /* Pillars: stack to single column */
  .hp-pillars__grid {
    grid-template-columns: 1fr;
    gap: var(--hp-space-16);
    max-width: 560px;
    margin-inline: auto;
  }

  /* Checklist: single column */
  .hp-checklist {
    grid-template-columns: 1fr;
  }

  /* Bridge padding compensation */
  .hp-bridge {
    clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
  }

}


/* ============================================================
   RESPONSIVE — MOBILE (below 768px)
   ============================================================ */
@media screen and (max-width: 767px) {

  /* Hero */
  .hp-hero {
    padding-block: var(--hp-space-64) var(--hp-space-48);
    clip-path: none;
  }

  .hp-hero__headline {
    font-size: clamp(2rem, 8vw, 2.4rem);
  }

  /* Benefits: single column */
  .hp-benefits {
    padding-block: var(--hp-space-64);
  }

  .hp-benefits__grid {
    grid-template-columns: 1fr;
    gap: var(--hp-space-12);
  }

  /* On mobile benefit cards go horizontal */
  .hp-benefit-card__body {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: var(--hp-space-20, 20px) var(--hp-space-20, 20px) var(--hp-space-20, 20px) var(--hp-space-20, 20px);
    gap: var(--hp-space-16);
  }

  .hp-benefit-card__heading {
    font-size: 0.9375rem;
  }

  /* Pillars */
  .hp-pillars {
    padding-block: var(--hp-space-64);
  }

  .hp-pillars__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: var(--hp-space-12);
  }

  .hp-pillar__body {
    padding: var(--hp-space-24);
  }

  /* Bridge */
  .hp-bridge {
    clip-path: polygon(0 2%, 100% 0%, 100% 98%, 0 100%);
    padding-block: calc(60px + 4vw);
  }

  /* Checklist */
  .hp-checklist-section {
    padding-block: var(--hp-space-64);
  }

  .hp-checklist {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .hp-pricing {
    padding-block: var(--hp-space-64);
  }

  .hp-pricing__body {
    padding: var(--hp-space-32) var(--hp-space-24);
  }

  .hp-pricing__price {
    font-size: 3rem;
  }

  /* About */
  .hp-about {
    padding-block: var(--hp-space-64);
  }

  /* Section heading */
  .hp-section-heading {
    font-size: 1.5rem;
  }

  /* Section intro spacing */
  .hp-section-intro {
    margin-bottom: var(--hp-space-32);
  }

  /* Mobile app */
  .hp-mobile-app {
    padding-block: var(--hp-space-48);
  }

  /* Full-width hero CTA button on mobile */
  .hp-btn--hero-cta.hp-btn--lg {
    width: 100%;
    max-width: 320px;
  }

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  .hp-btn,
  .hp-benefit-card,
  .hp-pillar,
  .hp-pricing__card {
    transition: none;
  }

  .hp-benefit-card:hover,
  .hp-pillar:hover {
    transform: none;
  }

  .hp-btn--primary:hover,
  .hp-btn--hero-cta:hover {
    transform: none;
  }

}
