/* Poupe Tempo — Clean blue & white */

:root {
  --blue: #1e5cff;
  --blue-dark: #0f3dcc;
  --blue-soft: #e8f0ff;
  --blue-mid: #4d7fff;
  --text: #1a2332;
  --text-soft: #5a6b7f;
  --line: #d9e4f5;
  --bg: #ffffff;
  --bg-soft: #f5f8fd;
  --green: #25d366;
  --shadow: 0 12px 40px rgba(30, 92, 255, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 78px;
  --font: "Montserrat", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(26, 35, 50, 0.06);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  width: 64px;
  height: auto;
  mix-blend-mode: multiply;
}

.logo--footer img {
  width: 56px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.nav a:not(.btn):hover {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 110;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.25s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 0.95rem 1.6rem;
  font-size: 0.98rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  color: #fff;
  box-shadow: 0 10px 24px rgba(30, 92, 255, 0.28);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.btn--outline {
  background: #fff;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn--outline:hover {
  background: var(--blue-soft);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(30, 92, 255, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(77, 127, 255, 0.1), transparent 55%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-block;
  max-width: max-content;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 16ch;
}

.accent {
  color: var(--blue);
}

.hero__lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 38ch;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__logo {
  display: flex;
  justify-content: center;
}

.hero__logo img {
  width: min(360px, 100%);
  filter: drop-shadow(0 18px 40px rgba(30, 92, 255, 0.16));
  mix-blend-mode: multiply;
}

/* Sections */

.section {
  padding: 5rem 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--shop {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

.section__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.75rem;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.section__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.section__head p {
  color: var(--text-soft);
}

/* Service cards */

.cards {
  display: grid;
  gap: 1.15rem;
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow);
  border-color: rgba(30, 92, 255, 0.35);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 1rem;
  transition: transform 0.35s var(--ease);
}

.card:hover .card__icon {
  transform: rotate(-8deg) scale(1.08);
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--text-soft);
  font-size: 0.94rem;
}

/* Shop */

.shop {
  position: relative;
  z-index: 2;
}

.pay-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(360px, 100%);
  margin: 0 auto 1.5rem;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.pay-toggle__btn {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-soft);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease;
}

.pay-toggle__btn.is-active {
  color: #fff;
}

.pay-toggle__glider {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  width: calc(50% - 0.35rem);
  height: calc(100% - 0.7rem);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  box-shadow: 0 8px 20px rgba(30, 92, 255, 0.35);
  transition: transform 0.35s var(--ease);
}

.pay-toggle.is-parcelado .pay-toggle__glider {
  transform: translateX(100%);
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(30, 92, 255, 0.16);
}

.plan.is-selected {
  border-color: var(--blue);
  box-shadow:
    0 0 0 3px rgba(30, 92, 255, 0.12),
    0 18px 40px rgba(30, 92, 255, 0.18);
  transform: translateY(-8px);
}

.plan--featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow);
}

.plan__select-ring {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--line);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.plan.is-selected .plan__select-ring {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 92, 255, 0.2);
}

.plan.is-selected .plan__select-ring::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
  clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 18%, 80% 0, 36% 62%);
}

.plan__tag {
  position: absolute;
  top: -12px;
  left: 1.4rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.plan h3 {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.45rem;
  padding-right: 1.5rem;
}

.plan__desc {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
}

.plan__price {
  margin-bottom: 1rem;
}

.plan__from {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.plan__price strong {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan__currency,
.plan__cents {
  font-size: 1rem;
  margin-top: 0.45rem;
}

.plan__parcel-hint {
  display: none;
  margin-top: 0.35rem;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-mid);
}

.plan__parcel-hint.is-shown {
  display: block;
}

.plan__installment {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 0;
  margin-bottom: 1.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan__installment > span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan__installment strong {
  font-size: 1.15rem;
  font-weight: 700;
}

.plan__installment small {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.plan__list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.plan__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.93rem;
  color: var(--text-soft);
}

.plan.is-selected .plan__list li {
  color: var(--text);
}

.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.shop-dock {
  position: sticky;
  bottom: 1rem;
  z-index: 20;
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(26, 35, 50, 0.1);
  backdrop-filter: blur(12px);
  opacity: 0.7;
  transition: opacity 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.shop-dock.is-ready {
  opacity: 1;
  border-color: rgba(30, 92, 255, 0.35);
  box-shadow: 0 14px 36px rgba(30, 92, 255, 0.16);
}

.shop-dock__preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.shop-dock__preview img {
  width: 44px;
  mix-blend-mode: multiply;
}

.shop-dock__preview strong {
  display: block;
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-dock__preview span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.btn--dock:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.plans__note,
.plans__finance {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-top: 1.25rem;
}

.plans__finance {
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
}

/* Checkout modal */

.checkout-modal[hidden] {
  display: none !important;
}

.checkout-view[hidden],
.checkout-success[hidden] {
  display: none !important;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 48, 0.55);
  backdrop-filter: blur(5px);
}

.checkout-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 28px 70px rgba(15, 28, 48, 0.22);
  animation: modal-in 0.28s var(--ease);
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.checkout-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text-soft);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.checkout-modal__close:hover {
  background: var(--bg-soft);
  color: var(--text);
}

.checkout-modal__head {
  margin-bottom: 1.35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  padding-right: 2rem;
}

.checkout-modal__badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

.checkout-modal__head h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.checkout-modal__price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.checkout-modal__pay {
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 500;
}

.checkout-form {
  display: grid;
  gap: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.form-row label span {
  color: var(--text-soft);
  font-weight: 500;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 92, 255, 0.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 84px;
}

.form-error {
  margin: 0;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  background: #fff1f1;
  border: 1px solid #f0c2c2;
  color: #9b1c1c;
  font-size: 0.85rem;
  font-weight: 600;
}

.form-legal {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.checkout-success {
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
}

.checkout-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 800;
}

.checkout-success h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.checkout-success p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 1.35rem;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.15rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(30, 92, 255, 0.35);
}

.step span {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease);
}

.step:hover span {
  transform: scale(1.05);
}

.step h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.step p {
  color: var(--text-soft);
  font-size: 0.88rem;
}

/* Contact / CTA */

.section--cta {
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(30, 92, 255, 0.08), transparent 55%),
    var(--bg);
}

.cta {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.cta__copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cta__copy > p {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.cta__info {
  display: grid;
  gap: 1.1rem;
}

.cta__info strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 0.2rem;
}

.cta__info a {
  color: var(--blue-dark);
  font-weight: 600;
}

.cta__info a:hover {
  text-decoration: underline;
}

.cta__info em {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.cta__box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta__box img {
  width: 96px;
  margin: 0 auto 1rem;
  mix-blend-mode: multiply;
}

.cta__box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.cta__box > p {
  color: var(--text-soft);
  font-size: 0.94rem;
  margin-bottom: 1.25rem;
}

/* Footer */

.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  background: var(--bg-soft);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer p {
  color: var(--text-soft);
  font-size: 0.88rem;
}

/* Reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.plan[data-reveal].is-visible:hover,
.plan[data-reveal].is-visible.is-selected {
  transform: translateY(-8px);
}

/* Responsive */

@media (max-width: 960px) {
  .hero__grid,
  .plans,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__logo {
    order: -1;
  }

  .hero__logo img {
    width: min(220px, 55vw);
  }

  .cards--3,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav a:not(.btn) {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .cards--3,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section {
    padding: 3.75rem 0;
  }

  .shop-dock {
    flex-direction: column;
    align-items: stretch;
    bottom: 0.75rem;
  }

  .btn--dock {
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
