:root {
  --white: #fff;
  --ink: #050505;
  --soft-ink: #1d1d1f;
  --muted: #626267;
  --line: rgba(5, 5, 5, .12);
  --line-soft: rgba(5, 5, 5, .08);
  --panel: #f5f5f7;
  --panel-2: #fafafa;
  --green: #064126;
  --wa: #128c4b;
  --error: #a01818;
  --warning: #8a5a00;
  --radius: 14px;
  --radius-pill: 999px;
  --shadow-card: 0 1px 2px rgba(5, 5, 5, .04);
  --shadow-lift: 0 16px 40px rgba(5, 5, 5, .12);
  --shell: 1180px;
  --side: clamp(18px, 5vw, 44px);
  --section: clamp(64px, 8vw, 112px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  background: var(--panel);
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(6, 65, 38, .22);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 10000;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding-left: var(--side);
  padding-right: var(--side);
}

.narrow {
  max-width: 860px;
}

.announcement-bar {
  background: var(--ink);
  color: var(--white);
}

.announcement-bar .shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 26px;
  row-gap: 2px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.announcement-bar span {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  white-space: nowrap;
}

.announcement-bar span + span {
  display: none;
}

@media (min-width: 760px) {
  .announcement-bar span + span {
    display: inline;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
}

.header-shell {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: clamp(132px, 18vw, 176px);
  background: transparent;
}

.desktop-nav {
  display: none;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 34px);
}

.desktop-nav a {
  white-space: nowrap;
}

.desktop-nav a,
.mobile-panel a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--soft-ink);
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: var(--green);
}

.header-cta {
  display: none;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 0 20px;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .18s var(--ease), border-color .18s var(--ease);
}

.header-cta:hover {
  background: var(--green);
  border-color: var(--green);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: grid;
  gap: 5px;
  place-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.mobile-panel {
  border-top: 1px solid var(--line-soft);
  background: var(--white);
}

.mobile-panel nav {
  display: grid;
  padding: 6px var(--side) 18px;
}

.mobile-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
}

.breadcrumb {
  border-bottom: 1px solid var(--line-soft);
  background: var(--panel-2);
}

.breadcrumb .shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 12px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
}

.breadcrumb a:hover {
  color: var(--green);
}

.breadcrumb [aria-current] span {
  color: var(--ink);
  font-weight: 700;
}

.crumb-sep {
  color: var(--muted);
}

.hero {
  border-bottom: 1px solid var(--line);
}

.split-grid {
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.split-hero .split-grid,
.category-hero .split-grid,
.product-hero .split-grid {
  min-height: min(820px, calc(100svh - 64px));
  padding-top: clamp(28px, 5vw, 74px);
  padding-bottom: clamp(28px, 5vw, 74px);
}

.hero-copy {
  display: grid;
  gap: 22px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 650;
  line-height: 1.08;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(25px, 3.4vw, 40px);
  font-weight: 620;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(19px, 2.3vw, 25px);
  font-weight: 610;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.55;
}

.hero-copy p {
  max-width: 640px;
  color: var(--soft-ink);
}

.hero-actions,
.inline-actions,
.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 0 26px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(5, 5, 5, .16);
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.primary:hover {
  background: var(--green);
  border-color: var(--green);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(5, 5, 5, .34);
}

.button.secondary:hover {
  border-color: var(--ink);
  background: var(--panel);
}

.text-link,
.text-button {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.text-link.muted {
  color: var(--muted);
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
}

.square-media img {
  aspect-ratio: 1 / 1;
}

.section {
  padding: var(--section) 0;
  border-bottom: 1px solid var(--line-soft);
}

.muted-band {
  background: var(--panel-2);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.two-col {
  display: grid;
  gap: clamp(28px, 5vw, 74px);
}

.stack {
  display: grid;
  gap: 20px;
  align-content: start;
}

.align-end {
  align-self: end;
}

.center-actions {
  justify-content: center;
}

.intent-grid,
.product-grid,
.proof-list {
  display: grid;
  gap: 14px;
}

.intent-card,
.product-card a,
.proof-list article {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.intent-card:hover,
.product-card a:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 5, 5, .2);
  box-shadow: var(--shadow-lift);
}

.intent-card img,
.product-card img {
  transition: transform .35s var(--ease);
}

.intent-card:hover img,
.product-card a:hover img {
  transform: scale(1.03);
}

.intent-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.intent-card > div {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 4vw, 28px);
}

.intent-card p,
.product-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.product-card a {
  color: var(--ink);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card span,
.product-card h3 {
  margin-left: 18px;
  margin-right: 18px;
}

.product-card span {
  margin-top: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 18px;
  font-size: 19px;
}

.text-hero {
  padding: clamp(70px, 12vw, 140px) 0;
}

.final-cta {
  padding: clamp(70px, 9vw, 120px) 0;
  text-align: center;
}

.final-cta h2 {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.proof-list article {
  padding: clamp(22px, 4vw, 34px);
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line-soft);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 650;
}

.faq-list p {
  max-width: 820px;
  padding-bottom: 24px;
}

.quote-layout {
  padding: clamp(48px, 8vw, 100px) 0;
}

.quote-grid {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.quote-copy {
  display: grid;
  gap: 20px;
}

.quote-note {
  display: grid;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.quote-note strong {
  color: var(--ink);
}

.quote-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(18px, 4vw, 34px);
}

.quote-step {
  display: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-step.is-active {
  display: grid;
  gap: 18px;
}

.quote-step legend {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 650;
  line-height: 1.15;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

label small,
.privacy-copy {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: 500 16px/1.35 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  outline: 3px solid rgba(6, 65, 38, .14);
  outline-offset: 0;
}

.checkbox-label {
  grid-template-columns: 22px 1fr;
  align-items: start;
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
  font-weight: 650;
}

.checkbox-label input {
  width: 20px;
  min-height: 20px;
  margin-top: 1px;
}

.field-error,
.error-summary {
  color: var(--error);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.field-warning {
  color: var(--warning);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.error-summary {
  border: 1px solid rgba(160, 24, 24, .28);
  background: rgba(160, 24, 24, .06);
  padding: 14px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

.site-footer nav,
.site-footer div:last-child {
  display: grid;
  gap: 10px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--panel-2);
  padding: 7px 14px;
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wa);
}

.hero-bullets {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-bullets li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--soft-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-bullets li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 800;
}

.trust-strip {
  border-bottom: 1px solid var(--line-soft);
  background: var(--panel-2);
}

.trust-strip .shell {
  display: grid;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.trust-strip article {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}

.trust-strip article:last-child {
  border-bottom: 0;
}

.trust-strip strong {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -.01em;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.steps-grid {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.steps-grid article {
  counter-increment: step;
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
  padding: clamp(22px, 4vw, 32px);
}

.steps-grid article::before {
  content: counter(step);
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 16px;
  font-weight: 750;
}

.steps-grid h3 {
  margin-bottom: 0;
  font-size: clamp(18px, 2.2vw, 22px);
}

.steps-grid p {
  font-size: 15px;
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px var(--side) calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .92);
  border-top: 1px solid var(--line-soft);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}

.mobile-cta-bar .button {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
}

.mobile-cta-bar .button.whatsapp {
  background: var(--wa);
  border-color: var(--wa);
  color: var(--white);
}

body:has(.mobile-cta-bar) {
  padding-bottom: 84px;
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: none;
  width: 58px;
  height: 58px;
  place-content: center;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(6, 65, 38, .34);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 34px rgba(6, 65, 38, .42);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (min-width: 760px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-cta-bar {
    display: none;
  }

  body:has(.mobile-cta-bar) {
    padding-bottom: 0;
  }

  .wa-float {
    display: grid;
  }

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

  .trust-strip article {
    border-bottom: 0;
    border-right: 1px solid var(--line-soft);
    padding: 26px 12px;
  }

  .trust-strip article:last-child {
    border-right: 0;
  }

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

  .header-cta {
    display: inline-flex;
  }

  .menu-button {
    display: none;
  }

  .split-grid,
  .two-col,
  .quote-grid {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  }

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

  .trust-grid span {
    border-right: 1px solid var(--line-soft);
    border-bottom: 0;
    justify-content: center;
  }

  .trust-grid span:last-child {
    border-right: 0;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr .8fr .8fr;
  }
}

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

@media (max-width: 520px) {
  .hero-actions .button,
  .inline-actions .button,
  .step-actions .button {
    width: 100%;
  }

  .split-hero .split-grid,
  .category-hero .split-grid,
  .product-hero .split-grid {
    min-height: 0;
  }
}

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