:root {
  color-scheme: light;
  --ink: #112a35;
  --ink-soft: #405b65;
  --muted: #687f87;
  --line: #d7e3e6;
  --surface: #ffffff;
  --surface-soft: #edf5f5;
  --page: #f4f8f9;
  --accent: #178c94;
  --accent-dark: #0d7078;
  --accent-soft: #e8f6f6;
  --highlight: #e9f7f3;
  --button-bg: #178c94;
  --button-hover: #0d7078;
  --button-soft-bg: #effafa;
  --button-soft-border: #b9dddf;
  --success: #27745f;
  --shadow: 0 18px 48px rgba(21, 51, 62, .09);
  --shadow-soft: 0 10px 28px rgba(21, 51, 62, .07);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1240px;
  --font-body: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-glow,
.page-grain {
  display: none;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding: 40px 0;
}

.section-pad.compact {
  padding: 40px 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 18px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 18px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header,
.site-header.scrolled {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  box-shadow: none;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 190px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.desktop-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .93rem;
  font-weight: 800;
  transition: color .16s ease, background-color .16s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
  background: var(--surface);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-btn,
.soft-btn,
.ghost-btn,
.whatsapp-btn,
.order-button,
.details-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -.01em;
  white-space: nowrap;
  transform: none;
  filter: none;
  transition: color .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
  -webkit-tap-highlight-color: transparent;
}

.primary-btn {
  color: #fff;
  background: var(--button-bg);
  box-shadow: 0 10px 22px rgba(23, 140, 148, .17);
}

.primary-btn:hover,
.primary-btn:focus-visible,
.primary-btn:active {
  color: #fff;
  background: var(--button-hover);
  transform: none;
  filter: none;
}

.soft-btn,
.ghost-btn,
.details-btn {
  color: var(--accent-dark);
  border-color: var(--button-soft-border);
  background: var(--button-soft-bg);
  box-shadow: none;
}

.soft-btn:hover,
.soft-btn:focus-visible,
.ghost-btn:hover,
.ghost-btn:focus-visible,
.details-btn:hover,
.details-btn:focus-visible {
  color: var(--accent-dark);
  border-color: var(--accent);
  background: #dff2f2;
  transform: none;
  filter: none;
}

.ghost-btn.tiny {
  min-height: 44px;
  padding-inline: 18px;
  font-size: .91rem;
}

.order-button {
  min-height: 46px;
  padding-inline: 18px;
  color: var(--accent-dark);
  border-color: var(--button-soft-border);
  background: var(--button-soft-bg);
}

.order-button:hover,
.order-button:focus-visible,
.order-button:active {
  color: #fff;
  background: var(--button-bg);
}

.whatsapp-btn {
  color: #185a47;
  border-color: #a8d4c4;
  background: #e5f4ed;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
  color: #104b3a;
  border-color: #6db89d;
  background: #d6eee4;
}

button:active,
a:active {
  transform: none;
  filter: none;
}

.full {
  width: 100%;
}

.text-btn {
  border: 0;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.menu-button {
  width: 48px;
  height: 48px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--button-soft-bg);
}

.menu-button span {
  width: 22px;
  height: 2px;
  flex: 0 0 2px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  background: rgba(17, 42, 53, .25);
  backdrop-filter: blur(6px);
}

.mobile-panel.open {
  display: block;
}

.mobile-panel-card {
  position: absolute;
  top: 20px;
  right: 18px;
  width: min(400px, calc(100% - 36px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mobile-panel-head {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.round-icon-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--accent-dark);
  background: var(--button-soft-bg);
  font-size: 1.55rem;
  font-weight: 800;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mobile-nav a {
  padding: 17px 16px;
  border-radius: 18px;
  color: var(--ink-soft);
  background: var(--surface-soft);
  font-weight: 900;
}

.mobile-panel-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.hero.section-pad {
  padding: 42px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  padding: 18px 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.sparkle {
  color: var(--accent);
  font-size: 1.05rem;
}

.hero h1,
.section-heading h2,
.process-intro h2,
.support-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: .98;
  letter-spacing: -.045em;
}

.hero h1 {
  max-width: 700px;
  margin-top: 20px;
  font-size: clamp(3.05rem, 4.8vw, 4.7rem);
  letter-spacing: -.052em;
}

.hero-lede {
  max-width: 670px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.14rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 370px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual > img {
  width: min(100%, 520px);
  filter: none;
  transform: none;
}

.hero-backdrop {
  position: absolute;
  inset: 20px;
  z-index: -1;
  border-radius: 26px;
  background: var(--surface-soft);
}

.quick-features {
  margin-top: -20px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-strip article {
  min-height: 132px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px;
  border-radius: 20px;
  background: var(--surface-soft);
}

.feature-strip img {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
}

.feature-strip h2 {
  margin: 3px 0 8px;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.55;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  margin-top: 12px;
  color: #1f4a54;
  font-size: clamp(2.1rem, 3.5vw, 3.35rem);
}

.section-heading p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-heading.align-left p {
  margin-left: 0;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-pill {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--surface);
  font-weight: 900;
  transition: color .16s ease, background-color .16s ease, border-color .16s ease;
  -webkit-tap-highlight-color: transparent;
}

.filter-pill:hover,
.filter-pill:focus-visible {
  color: var(--accent-dark);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.filter-pill.active {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  min-height: 370px;
  display: grid;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: border-color .16s ease, box-shadow .16s ease;
}

.product-card:hover {
  border-color: var(--button-soft-border);
  box-shadow: var(--shadow);
}

.product-card[hidden] {
  display: none;
}

.product-top {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.product-top img {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  margin-left: -8px;
}

.product-card h3 {
  margin: 9px 0 2px;
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.product-card .category {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: end;
  gap: 4px;
  margin: 20px 0 13px;
}

.price-row strong {
  font-size: 2.1rem;
  color: #1f4a54;
  letter-spacing: -.05em;
}

.price-row span {
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 850;
}

.feature-list,
.plan-feature-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-weight: 700;
  list-style: none;
}

.feature-list {
  margin-bottom: 22px;
}

.feature-list li,
.plan-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.feature-list li::before,
.plan-feature-list li::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--highlight);
  box-shadow: inset 0 0 0 5px var(--surface);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.product-actions a,
.product-actions button {
  min-height: 48px;
  padding-inline: 14px;
  border-radius: 999px;
  font-weight: 900;
}

/* Benefits / Why Choose Section - Compact */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  position: relative;
  min-height: 150px;
  padding: 24px 24px 24px 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: border-color .16s ease, box-shadow .16s ease;
}

.benefit-card:hover {
  border-color: var(--accent);
}

.benefit-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin: 4px 0 10px;
  color: #1f4a54;
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: -.03em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
    padding: 22px 20px 22px 92px;
  }

  .benefit-icon {
    top: 22px;
    left: 20px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .benefit-icon svg {
    width: 28px;
    height: 28px;
  }
}

.process-card,
.support-card {
  display: grid;
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.process-card {
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
}

.process-intro h2 {
  margin-top: 10px;
  color: #1f4a54;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

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

.process-steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-soft);
}

.process-steps span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.process-steps h3 {
  margin: 17px 0 7px;
  font-size: 1.2rem;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.category-grid a {
  min-height: 152px;
  display: grid;
  justify-items: center;
  gap: 11px;
  padding: 20px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--ink-soft);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  text-align: center;
  transition: border-color .16s ease;
}

.category-grid a:hover,
.category-grid a:focus-visible {
  border-color: var(--accent);
}

.category-grid img {
  width: 74px;
  height: 74px;
}

.support-card {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.support-card h2 {
  margin-top: 12px;
  color: #1f4a54;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.support-card p {
  max-width: 680px;
  color: var(--muted);
  font-weight: 650;
  margin-top: 10px;
  line-height: 1.65;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.accordion {
  display: grid;
  gap: 13px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.accordion-item button {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  border: 0;
  color: #1f4a54;
  background: transparent;
  font-size: 1.05rem;
  font-weight: 900;
  text-align: left;
}

.accordion-item button span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  transition: transform .2s ease;
}

.accordion-item.open button span {
  transform: rotate(45deg);
}

.accordion-panel[hidden] {
  display: none;
}

.accordion-panel p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.65;
}

code {
  padding: 2px 7px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--accent-soft);
  font-weight: 800;
}

/* Footer */

.site-footer {
  padding: 34px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr .85fr 1fr;
  gap: 30px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.footer-brand {
  max-width: 500px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img,
.footer-brand img {
  width: 185px;
  height: auto;
  display: block;
}

.footer-brand p,
.footer-col p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}

.footer-col h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.footer-col > a {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
}

.footer-contact a {
  color: var(--muted);
  font-weight: 750;
  text-decoration: none;
}

.footer-col > a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.back-top {
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.back-top:hover {
  color: var(--accent);
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

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

.reveal,
.reveal.in-view {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

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

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 320px;
    max-width: 640px;
    margin: 4px auto 0;
  }

  .feature-strip,
  .product-grid,
  .benefit-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-card,
  .support-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section-pad {
    padding: 30px 0;
  }

  .section-pad.compact {
    padding: 48px 0;
  }

  .site-header,
  .site-header.scrolled {
    padding: 10px 0;
  }

  .nav-shell {
    min-height: 62px;
    padding: 8px 8px 8px 13px;
    border-radius: 20px;
  }

  .brand img {
    width: 158px;
  }

  .ghost-btn.tiny,
  .nav-actions > .order-button {
    display: none;
  }

  .hero.section-pad {
    padding: 28px 0 42px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.15rem);
  }

  .hero-lede {
    font-size: .98rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-proof span {
    display: grid;
    gap: 2px;
    padding: 12px 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .quick-features {
    margin-top: 0;
  }

  .feature-strip,
  .product-grid,
  .benefit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    border-radius: 22px;
  }

  .filter-pills {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-pill {
    flex: 0 0 auto;
  }

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

  .product-actions,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-card,
  .support-card {
    padding: 24px;
    border-radius: 26px;
  }

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

  .support-actions {
    justify-content: stretch;
  }

  .support-actions a {
    width: 100%;
  }

  .footer-grid {
    padding: 24px;
  }

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

@media (max-width: 430px) {
  .brand img {
    width: 142px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    display: flex;
    justify-content: center;
  }

  .product-top {
    align-items: center;
  }

  .product-top img {
    width: 78px;
    height: 78px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: .001ms;
  }
}
