/* Fox Clean Auto — homepage (sobre / rapide) */

:root {
  --hp-bg: #0a0a0b;
  --hp-bg-elev: #121214;
  --hp-bg-soft: #161618;
  --hp-surface: #1a1a1d;
  --hp-orange: #ff6a00;
  --hp-orange-hot: #ff7a1a;
  --hp-orange-soft: rgba(255, 106, 0, 0.12);
  --hp-orange-line: rgba(255, 106, 0, 0.45);
  --hp-text: #f5f5f5;
  --hp-muted: #a8a8b0;
  --hp-dim: #7a7a84;
  --hp-border: rgba(255, 255, 255, 0.08);
  --hp-border-strong: rgba(255, 255, 255, 0.14);
  --hp-radius: 16px;
  --hp-radius-sm: 12px;
  --hp-header-h: 72px;
  --hp-font: "DM Sans", system-ui, sans-serif;
  --hp-display: "Outfit", "DM Sans", system-ui, sans-serif;
  --hp-t: 180ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.page-home {
  margin: 0;
  font-family: var(--hp-font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--hp-text);
  background: var(--hp-bg);
  -webkit-font-smoothing: antialiased;
}

body.page-home.hp-menu-open {
  overflow: hidden;
}

.page-home a {
  color: inherit;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home :focus-visible {
  outline: 2px solid var(--hp-orange);
  outline-offset: 3px;
}

.hp-wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ——— Buttons ——— */
.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--hp-t),
    background-color var(--hp-t),
    border-color var(--hp-t),
    box-shadow var(--hp-t),
    filter var(--hp-t);
}

.page-home .btn--primary {
  background: var(--hp-orange);
  color: #111;
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.22);
}

@media (hover: hover) and (pointer: fine) {
  .page-home .btn--primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }
}

.page-home .btn--primary:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--hp-text);
  border-color: var(--hp-border-strong);
}

@media (hover: hover) and (pointer: fine) {
  .page-home .btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background-color: rgba(255, 255, 255, 0.04);
  }
}

/* ——— Header ——— */
.hp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--hp-header-h);
  background: rgba(10, 10, 11, 0.94);
  border-bottom: 1px solid var(--hp-border);
}

.hp-header__inner {
  width: min(1180px, calc(100% - 1.5rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hp-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: auto;
}

.hp-logo img {
  width: auto;
  height: 44px;
  display: block;
}

.hp-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}

.hp-nav a {
  position: relative;
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--hp-muted);
  text-decoration: none;
  transition: color var(--hp-t);
}

@media (hover: hover) and (pointer: fine) {
  .hp-nav a:hover {
    color: var(--hp-text);
  }
}

.hp-nav a.is-active {
  color: var(--hp-text);
}

.hp-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--hp-orange);
}

/* Desktop only — never shown with burger */
.hp-header__cta {
  display: none;
  flex-shrink: 0;
  min-height: 42px;
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
}

.hp-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  flex-shrink: 0;
}

.hp-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--hp-text);
  border-radius: 2px;
  transition:
    transform 200ms ease-out,
    opacity 200ms ease-out;
}

.hp-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hp-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hp-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .hp-logo {
    margin-right: 0;
  }
  .hp-nav {
    display: flex;
    flex: 1;
  }
  .hp-header__cta {
    display: inline-flex;
  }
  .hp-burger {
    display: none;
  }
  .hp-logo img {
    height: 48px;
  }
}

/* ——— Drawer ——— */
.hp-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.hp-drawer:not([hidden]) {
  pointer-events: auto;
}

.hp-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 200ms ease-out;
  cursor: pointer;
}

.hp-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: var(--hp-bg-elev);
  border-left: 1px solid var(--hp-border);
  padding: 1.25rem 1.35rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateX(100%);
  transition: transform 200ms ease-out;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.35);
}

.hp-drawer.is-open .hp-drawer__backdrop {
  opacity: 1;
}

.hp-drawer.is-open .hp-drawer__panel {
  transform: translateX(0);
}

.hp-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-drawer__title {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hp-dim);
}

.hp-drawer__close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  background: transparent;
  color: var(--hp-text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.hp-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hp-drawer__nav a {
  display: block;
  padding: 0.9rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 560;
  font-size: 1.05rem;
  color: var(--hp-text);
}

.hp-drawer__nav a.is-active {
  background: rgba(255, 255, 255, 0.05);
}

.hp-drawer__cta {
  margin-top: auto;
  width: 100%;
}

/* ——— Hero (statique) ——— */
.hp-hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 3.5rem;
  border-bottom: 1px solid var(--hp-border);
}

.hp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(255, 106, 0, 0.12), transparent 55%),
    linear-gradient(180deg, #0e0e10 0%, var(--hp-bg) 100%);
  pointer-events: none;
}

.hp-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.hp-hero__inner {
  position: relative;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hp-hero__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.hp-hero__badge {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--hp-orange-line);
  background: var(--hp-orange-soft);
  color: #ffb380;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hp-promo-pill {
  display: inline-flex;
  margin: 0;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.18);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: #ffc49a;
  font-size: 0.8rem;
  font-weight: 600;
}

.hp-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--hp-display);
  font-size: clamp(2.15rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 14ch;
}

.hp-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: var(--hp-muted);
  font-size: 1.05rem;
}

.hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hp-hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hp-hero__checks li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--hp-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.hp-hero__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--hp-orange-soft);
  box-shadow: inset 0 0 0 1.5px var(--hp-orange);
}

.hp-hero__checks li::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.48rem;
  width: 0.28rem;
  height: 0.45rem;
  border: solid var(--hp-orange);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hp-hero__visual {
  display: none;
  justify-content: center;
}

.hp-hero__frame {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 106, 0, 0.18), transparent 55%),
    linear-gradient(160deg, #1c1c20, #101012 70%);
  border: 1px solid var(--hp-border-strong);
  overflow: hidden;
}

.hp-hero__ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 0, 0.22);
  pointer-events: none;
}

.hp-hero__frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hp-orange), transparent);
}

.hp-hero__frame img {
  width: 120px;
  height: auto;
  position: relative;
}

.hp-hero__frame p {
  margin: 0;
  position: relative;
  font-family: var(--hp-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.hp-hero__frame span {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-dim);
}

@media (min-width: 900px) {
  .hp-hero {
    padding: 3.25rem 0 4rem;
    min-height: min(640px, calc(100vh - var(--hp-header-h)));
    display: flex;
    align-items: center;
  }
  .hp-hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
  .hp-hero__visual {
    display: flex;
  }
}

/* ——— Sections ——— */
.hp-section {
  padding: 4.25rem 0;
  border-bottom: 1px solid var(--hp-border);
}

.hp-section--alt {
  background: var(--hp-bg-soft);
}

.hp-section__head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.hp-section__head h2,
.hp-avis h2,
.hp-contact h2,
.hp-final h2 {
  margin: 0 0 0.65rem;
  font-family: var(--hp-display);
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hp-section__head p,
.hp-avis p,
.hp-contact > p,
.hp-final p {
  margin: 0;
  color: var(--hp-muted);
}

.hp-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-orange);
}

/* ——— Plans ——— */
.hp-plans {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 860px) {
  .hp-plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }
}

.hp-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.6rem 1.4rem 1.45rem;
  border-radius: var(--hp-radius);
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  transition:
    transform var(--hp-t),
    border-color var(--hp-t),
    box-shadow var(--hp-t),
    background-color var(--hp-t);
}

.hp-plan .btn--primary {
  transition:
    transform var(--hp-t),
    filter var(--hp-t),
    background-color var(--hp-t),
    box-shadow var(--hp-t);
}

@media (hover: hover) and (pointer: fine) {
  .hp-plan:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 106, 0, 0.55);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    background-color: #1d1d20;
  }
  .hp-plan:hover .btn--primary {
    filter: brightness(1.1);
  }
}

.hp-plan--featured {
  border-color: rgba(255, 106, 0, 0.55);
  background: #1c1814;
}

.hp-plan__badge {
  position: absolute;
  top: -0.7rem;
  left: 1.25rem;
  margin: 0;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--hp-orange);
  color: #111;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hp-plan h3 {
  margin: 0.35rem 0 0;
  font-family: var(--hp-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hp-plan__tag {
  margin: 0;
  color: var(--hp-muted);
  font-size: 0.95rem;
}

.hp-plan__meta {
  margin: 0;
  color: var(--hp-dim);
  font-size: 0.88rem;
  font-weight: 500;
}

.hp-plan__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 0.75rem;
  margin: 0.35rem 0 0.5rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--hp-border);
  border-bottom: 1px solid var(--hp-border);
}

.hp-plan__price-old {
  color: var(--hp-dim);
  text-decoration: line-through;
  font-size: 1rem;
}

.hp-plan__price-now {
  font-family: var(--hp-display);
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--hp-text);
  line-height: 1;
}

.hp-plan__price-note {
  width: 100%;
  margin: 0;
  font-size: 0.8rem;
  color: #ffb380;
  font-weight: 600;
}

.hp-plan ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hp-plan li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--hp-muted);
  font-size: 0.94rem;
}

.hp-plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--hp-orange-soft);
  box-shadow: inset 0 0 0 1.5px var(--hp-orange);
}

.hp-plan li::after {
  content: "";
  position: absolute;
  left: 0.24rem;
  top: 0.5rem;
  width: 0.24rem;
  height: 0.38rem;
  border: solid var(--hp-orange);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.hp-plan .btn {
  width: 100%;
}

.hp-plans__more {
  margin: 1.75rem 0 0;
  text-align: center;
}

.hp-plans__more a {
  color: var(--hp-muted);
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .hp-plans__more a:hover {
    color: var(--hp-text);
  }
}

/* ——— Gallery ——— */
.hp-gallery {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 760px) {
  .hp-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .hp-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hp-gallery__card {
  border-radius: var(--hp-radius);
  overflow: hidden;
  border: 1px solid var(--hp-border);
  background: var(--hp-surface);
  transition:
    transform var(--hp-t),
    border-color var(--hp-t);
}

@media (hover: hover) and (pointer: fine) {
  .hp-gallery__card:hover {
    transform: translateY(-2px);
    border-color: var(--hp-border-strong);
  }
}

.hp-gallery__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #000;
}

.hp-gallery__shot {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.hp-gallery__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-gallery__label {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ——— Steps ——— */
.hp-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .hp-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.hp-steps li {
  position: relative;
  padding: 1.35rem 1.2rem;
  border-radius: var(--hp-radius-sm);
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
}

@media (min-width: 900px) {
  .hp-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.1rem;
    right: -0.85rem;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid var(--hp-orange);
    border-right: 2px solid var(--hp-orange);
    transform: rotate(45deg);
    opacity: 0.7;
    z-index: 1;
  }
}

.hp-steps__n {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--hp-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--hp-orange);
}

.hp-steps strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.hp-steps p {
  margin: 0;
  color: var(--hp-muted);
  font-size: 0.92rem;
}

/* ——— Zone ——— */
.hp-zone {
  text-align: center;
}

.hp-zone .hp-section__head {
  margin-inline: auto;
}

.hp-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.hp-chips li {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--hp-border-strong);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hp-text);
}

.hp-zone__note {
  margin: 0 0 1.5rem;
  color: var(--hp-muted);
  font-size: 0.95rem;
}

/* ——— Avis ——— */
.hp-avis {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.hp-avis .btn {
  margin-top: 1.25rem;
}

/* ——— FAQ ——— */
.hp-faq {
  max-width: 720px;
  margin-inline: auto;
  border-top: 1px solid var(--hp-border);
}

.hp-faq details {
  border-bottom: 1px solid var(--hp-border);
}

.hp-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0.15rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--hp-text);
  font-size: 1.02rem;
}

.hp-faq summary::-webkit-details-marker {
  display: none;
}

.hp-faq__chev {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--hp-muted);
  border-bottom: 2px solid var(--hp-muted);
  transform: rotate(45deg);
  transition: transform 200ms ease-out;
  margin-right: 0.35rem;
}

.hp-faq details[open] .hp-faq__chev {
  transform: rotate(225deg);
  border-color: var(--hp-orange);
}

.hp-faq details p {
  margin: 0 0 1.2rem;
  padding-right: 2rem;
  color: #c4c4cc;
  font-size: 0.98rem;
}

/* ——— Contact ——— */
.hp-contact {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.hp-contact__list {
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hp-contact__list a {
  color: var(--hp-text);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .hp-contact__list a:hover {
    color: var(--hp-orange-hot);
  }
}

.hp-contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hp-fidelity {
  margin: 1.5rem 0 0;
}

.hp-fidelity a {
  color: var(--hp-dim);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ——— Final CTA ——— */
.hp-final {
  padding: 4.5rem 0;
  background: #121214;
  border-bottom: 1px solid var(--hp-border);
  text-align: center;
}

.hp-final__inner {
  max-width: 36rem;
}

.hp-final p {
  margin-bottom: 1.5rem;
}

/* ——— Footer ——— */
.hp-footer {
  padding: 3rem 0 6.5rem;
  background: #070708;
  color: var(--hp-muted);
  font-size: 0.9rem;
}

.hp-footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 760px) {
  .hp-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 1.5rem;
  }
  .hp-footer {
    padding-bottom: 2.5rem;
  }
}

.hp-footer__brand {
  margin: 0 0 0.5rem;
  font-family: var(--hp-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hp-text);
}

.hp-footer__label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-dim);
}

.hp-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hp-footer a {
  color: var(--hp-muted);
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .hp-footer a:hover {
    color: var(--hp-text);
  }
}

.hp-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hp-border);
}

.hp-footer__bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--hp-dim);
}

.hp-footer__client {
  font-size: 0.8rem;
  color: var(--hp-dim) !important;
  opacity: 0.75;
}

/* ——— Sticky mobile CTA ——— */
.hp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 10, 11, 0.96);
  border-top: 1px solid var(--hp-border);
}

.hp-sticky.is-near-footer {
  opacity: 0;
  pointer-events: none;
}

.hp-sticky .btn {
  width: 100%;
  min-height: 50px;
}

@media (min-width: 900px) {
  .hp-sticky {
    display: none !important;
  }
}
