:root {
  --blue: #1a5685;
  --blue-2: #247bc1;
  --navy: #071827;
  --navy-2: #0b2239;
  --paper: #f5f8fb;
  --white: #ffffff;
  --ink: #101d2d;
  --muted: #6b7888;
  --line: #d9e4ee;
  --amber: #efb34d;
  --green: #169363;
  --shadow: 0 28px 80px rgba(7, 24, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 5vw, 62px);
  background: rgba(7, 24, 39, 0.72);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}

.site-header.is-scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(7, 24, 39, 0.94);
  box-shadow: 0 16px 42px rgba(7, 24, 39, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

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

.header-link {
  display: none;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 40px;
  padding: 0 14px;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(22, 147, 99, 0.28);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  display: grid;
  gap: 34px;
  min-height: 92vh;
  padding: 64px clamp(18px, 5vw, 62px) 34px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(7, 24, 39, 0.98) 0%, rgba(7, 24, 39, 0.88) 45%, rgba(26, 86, 133, 0.92) 100%),
    var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(245, 248, 251, 1), rgba(245, 248, 251, 0));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  max-width: 760px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  color: var(--white);
  font-size: 2.85rem;
  font-weight: 900;
}

h2 {
  color: var(--ink);
  font-size: 2.12rem;
  font-weight: 900;
}

h3 {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-copy > p:not(.kicker) {
  max-width: 610px;
  margin: 20px 0 0;
  color: #d8e6f2;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.hero-feature {
  position: relative;
  z-index: 2;
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--navy-2);
  transform: translateZ(0);
}

.hero-feature img {
  scale: 1.02;
  transition: transform 500ms ease;
}

.hero-feature:hover img {
  transform: scale(1.045);
}

.hero-showcase {
  position: relative;
  z-index: 2;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--navy-2);
  box-shadow: var(--shadow);
  transform: translateZ(0);
}

.hero-showcase img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  scale: 1.02;
  transition: transform 500ms ease;
}

.hero-showcase:hover img {
  transform: scale(1.045);
}

.hero-product {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  gap: 6px;
  max-width: 390px;
  border-radius: 8px;
  padding: 16px;
  background: rgba(7, 24, 39, 0.86);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.hero-product span,
.hero-product small {
  color: #bdd1df;
  font-weight: 700;
}

.hero-product strong {
  font-size: 1.28rem;
  line-height: 1;
}

.hero-order {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 13px;
  background: var(--green);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(22, 147, 99, 0.28);
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 62px) 72px;
  overflow: hidden;
  border: 1px solid rgba(217, 228, 238, 0.9);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 52px rgba(7, 24, 39, 0.12);
}

.trust-strip span {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 18px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.35;
}

.trust-strip strong {
  color: var(--navy-2);
  font-size: 0.98rem;
  line-height: 1.1;
}

.section-dark,
.menu-lab,
.faq-section {
  padding: 76px clamp(18px, 5vw, 62px);
}

.section-dark {
  margin-top: 42px;
  background: var(--navy);
  color: var(--white);
}

.section-head,
.menu-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-dark h2 {
  color: var(--white);
}

.section-head p:not(.kicker),
.menu-intro p,
.brand-note p,
.final-cta p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-dark .section-head p:not(.kicker) {
  color: #bdd1df;
}

.mini-rail {
  display: grid;
  grid-auto-columns: minmax(250px, 82vw);
  grid-auto-flow: column;
  gap: 16px;
  margin-inline: -18px;
  overflow-x: auto;
  padding: 4px 18px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.mini-rail::-webkit-scrollbar {
  display: none;
}

.feature-card,
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 24, 39, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.feature-card::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.16) 36%, transparent 58%);
  opacity: 0;
  transform: translateX(-35%);
  transition: opacity 220ms ease, transform 520ms ease;
  pointer-events: none;
}

.feature-card {
  min-height: 430px;
  color: var(--white);
  scroll-snap-align: center;
}

.feature-card.is-focused,
.feature-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 74px rgba(7, 24, 39, 0.28);
}

.feature-card.is-focused::before,
.feature-card:hover::before,
.product-card:hover::before {
  opacity: 1;
  transform: translateX(35%);
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.feature-card.no-image {
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 24, 39, 0.9), rgba(7, 24, 39, 0.08) 60%);
}

.feature-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 20px;
}

.chip,
.price {
  width: fit-content;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.chip {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.feature-body h3 {
  color: var(--white);
  font-size: 1.38rem;
}

.feature-body .price {
  background: var(--amber);
  color: var(--navy);
}

.feature-body a,
.product-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
}

.feature-body a {
  width: fit-content;
  padding: 0 14px;
  background: var(--green);
  color: var(--white);
}

.feature-body a.is-pulsing,
.product-card a.is-pulsing,
.hero-order.is-pulsing {
  animation: orderPulse 180ms ease;
}

@keyframes orderPulse {
  0% {
    transform: scale(1);
  }

  55% {
    transform: scale(0.96);
  }

  100% {
    transform: scale(1);
  }
}

.menu-lab {
  background: var(--paper);
}

.menu-tools {
  position: relative;
  top: auto;
  z-index: 8;
  display: grid;
  gap: 12px;
  margin: 0 -18px 18px;
  padding: 14px 18px;
  background: rgba(245, 248, 251, 0.92);
  border-block: 1px solid rgba(217, 228, 238, 0.78);
  backdrop-filter: blur(18px);
}

.search-box {
  display: grid;
  gap: 6px;
}

.search-box span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-box input:focus {
  border-color: rgba(26, 86, 133, 0.56);
  box-shadow: 0 0 0 4px rgba(26, 86, 133, 0.12);
}

.quick-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.quick-filters::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  background: var(--white);
  color: var(--navy-2);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.filter-pill:hover {
  transform: translateY(-2px);
}

.filter-pill.is-active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.menu-shell {
  display: grid;
  gap: 18px;
}

.menu-sidebar {
  position: relative;
  top: auto;
  z-index: 4;
  margin-inline: -18px;
  padding: 14px 18px;
  background: rgba(245, 248, 251, 0.9);
  backdrop-filter: blur(16px);
}

.sidebar-label {
  display: none;
}

.tab-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-list::-webkit-scrollbar {
  display: none;
}

.tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  background: var(--white);
  color: var(--navy-2);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tab small {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  background: rgba(7, 24, 39, 0.08);
  font-size: 0.74rem;
}

.tab:hover {
  transform: translateY(-2px);
}

.tab.is-active {
  background: var(--navy-2);
  color: var(--white);
}

.tab.is-active small {
  background: rgba(255, 255, 255, 0.16);
}

.menu-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 800;
}

.menu-status span:last-child {
  text-align: right;
}

.menu-status strong {
  color: var(--navy-2);
}

.product-grid {
  display: grid;
  gap: 16px;
}

.product-grid.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

.product-grid {
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card {
  display: grid;
  min-height: 100%;
  border: 1px solid var(--line);
}

.product-card.has-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dfeaf3;
}

.product-card.no-image {
  background:
    linear-gradient(135deg, rgba(26, 86, 133, 0.12), rgba(7, 24, 39, 0.04)),
    var(--white);
}

.product-card.no-image .product-image-placeholder {
  display: grid;
  min-height: 190px;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  color: var(--white);
  font-weight: 900;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-body .chip {
  background: #e8f2fb;
  color: var(--blue);
}

.product-body .price {
  background: #fff2d7;
  color: #593d09;
}

.product-body p {
  display: -webkit-box;
  min-height: 66px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.empty-menu {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
}

.product-card a {
  margin-top: 4px;
  background: var(--navy-2);
  color: var(--white);
}

.brand-note {
  display: grid;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 62px);
  border-radius: 8px;
  padding: 32px;
  background: var(--white);
  box-shadow: 0 16px 52px rgba(7, 24, 39, 0.08);
}

.brand-note p {
  max-width: 720px;
  font-size: 1.02rem;
}

.faq-section {
  background: var(--paper);
}

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

.faq-item {
  display: grid;
  gap: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.faq-item:hover,
.faq-item[aria-expanded="true"] {
  border-color: rgba(26, 86, 133, 0.36);
  box-shadow: 0 14px 42px rgba(7, 24, 39, 0.08);
}

.faq-item span {
  font-weight: 900;
}

.faq-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 220ms ease, margin 220ms ease;
}

.faq-item[aria-expanded="true"] p {
  max-height: 120px;
  margin-top: 10px;
}

.final-cta {
  display: grid;
  gap: 22px;
  margin: 0 clamp(18px, 5vw, 62px) 72px;
  border-radius: 8px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(26, 86, 133, 0.94)),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: #d8e6f2;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px clamp(18px, 5vw, 62px) 92px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer strong {
  color: var(--navy-2);
}

.footer span {
  color: var(--muted);
}

.mobile-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(22, 147, 99, 0.32);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card.reveal-card,
.product-card.reveal-card {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease, box-shadow 220ms ease;
}

.feature-card.reveal-card.is-visible,
.product-card.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (min-width: 640px) {
  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .final-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .nav-links,
  .header-link {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.78fr);
    align-items: center;
    padding-top: 50px;
  }

  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3.55rem;
  }

  .hero-copy > p:not(.kicker) {
    font-size: 1.15rem;
  }

  .hero-showcase,
  .hero-showcase img,
  .hero-feature,
  .hero-feature img {
    min-height: 610px;
  }

  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .mini-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: initial;
    margin-inline: 0;
    overflow: visible;
    padding: 4px 0 0;
  }

  .feature-card:nth-child(1),
  .feature-card:nth-child(4) {
    transform: translateY(22px);
  }

  .feature-card:nth-child(1):hover,
  .feature-card:nth-child(4):hover,
  .feature-card:nth-child(1).is-focused,
  .feature-card:nth-child(4).is-focused {
    transform: translateY(14px);
  }

  .menu-shell {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
  }

  .menu-tools {
    position: static;
    grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
    align-items: end;
    margin: 0 0 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 42px rgba(7, 24, 39, 0.06);
  }

  .menu-sidebar {
    position: sticky;
    top: 92px;
    margin-inline: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    background: var(--white);
    box-shadow: 0 14px 42px rgba(7, 24, 39, 0.08);
  }

  .sidebar-label {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .tab-list {
    display: grid;
    overflow: visible;
  }

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

  .product-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100%;
  }

  .product-card.has-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .product-card.no-image .product-image-placeholder {
    width: 100%;
    min-height: 210px;
    aspect-ratio: 4 / 3;
  }

  .product-body {
    gap: 10px;
    padding: 16px;
  }

  .product-body .chip {
    display: inline-grid;
  }

  .product-body .price {
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .product-body h3 {
    font-size: 1.08rem;
    line-height: 0.98;
  }

  .product-body p {
    min-height: 66px;
    font-size: 1rem;
    -webkit-line-clamp: 3;
  }

  .product-card a {
    min-height: 42px;
    font-size: 1rem;
  }

  .brand-note {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
    align-items: center;
    padding: 46px;
  }

  .mobile-whatsapp {
    display: none;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 34px;
  }
}

@media (min-width: 1240px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 10px;
    padding: 9px 12px;
  }

  .brand span:last-child {
    max-width: 120px;
  }

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

  .btn-small {
    min-width: auto;
    padding-inline: 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 639px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 8px 14px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    min-width: 0;
  }

  .header-actions .btn-small {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 0;
    white-space: nowrap;
  }

  .header-actions .btn-small::after {
    content: "WhatsApp";
    font-size: 0.78rem;
  }

  h1 {
    max-width: 9ch;
    font-size: 2.42rem;
    line-height: 0.94;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero {
    min-height: auto;
    gap: 24px;
    padding: 34px 16px 28px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy > p:not(.kicker) {
    max-width: 29ch;
    margin-top: 16px;
    font-size: 0.98rem;
  }

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

  .hero-actions .btn {
    min-width: 0;
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .hero-showcase,
  .hero-showcase img,
  .hero-feature,
  .hero-feature img {
    min-height: 300px;
  }

  .hero-product {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 13px;
  }

  .hero-product strong {
    font-size: 1.08rem;
  }

  .section-dark,
  .menu-lab,
  .faq-section {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .section-head,
  .menu-intro {
    margin-bottom: 22px;
  }

  .mini-rail {
    grid-auto-columns: minmax(224px, 74vw);
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .feature-card,
  .feature-card img {
    min-height: 330px;
  }

  .feature-body {
    padding: 16px;
  }

  .feature-body h3 {
    font-size: 1.15rem;
  }

  .menu-tools {
    top: auto;
    gap: 9px;
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .search-box {
    gap: 0;
  }

  .search-box span {
    display: none;
  }

  .search-box input {
    min-height: 42px;
    font-size: 0.92rem;
  }

  .filter-pill,
  .tab {
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.82rem;
  }

  .tab small {
    min-width: 22px;
    height: 22px;
  }

  .menu-sidebar {
    top: auto;
    margin-inline: -16px;
    padding-inline: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .menu-status {
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.88rem;
  }

  .product-grid {
    gap: 12px;
  }

  .product-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 154px;
  }

  .product-card.has-image img,
  .product-card.no-image .product-image-placeholder {
    width: 112px;
    height: 100%;
    min-height: 154px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .product-body {
    gap: 7px;
    padding: 11px;
  }

  .product-meta {
    align-items: flex-start;
    gap: 8px;
  }

  .product-body .chip {
    display: none;
  }

  .product-body .price {
    padding: 5px 8px;
    font-size: 0.78rem;
  }

  .product-body h3 {
    font-size: 0.94rem;
    line-height: 1.08;
  }

  .product-body p {
    min-height: 34px;
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
  }

  .product-card a {
    min-height: 36px;
    font-size: 0.84rem;
  }

  .trust-strip {
    margin-inline: 16px;
    margin-bottom: 54px;
  }

  .brand-note,
  .final-cta {
    margin-inline: 16px;
    padding: 24px;
  }

  .footer {
    padding-inline: 16px;
  }
}
