/* Eastman Brasil — layout com cores da bandeira */

:root {
  --mx-green: #009b3a;
  --mx-green-dark: #006b28;
  --mx-green-light: #e8f7ee;
  --mx-white: #ffffff;
  --mx-red: #002776;
  --mx-red-dark: #001a52;
  --mx-red-light: #e8edf7;
  --br-yellow: #ffdf00;
  --br-yellow-dark: #e6c200;
  --wa: #25d366;
  --ink: #1a1a2e;
  --muted: #5c6478;
  --line: #e4e8ef;
  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: min(1200px, 94vw);
  --rail: 6px;
  --promo-h: 36px;
  --header-h: 76px;
  --sticky-header-h: var(--header-h);
  --mobile-bar-h: 56px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--mx-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mx-green); }
.wrap { width: var(--wrap); margin-inline: auto; }

/* Flag rail — left edge tricolor */
.flag-rail {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--rail);
  z-index: 200;
  display: flex;
  flex-direction: column;
}
.flag-rail-green { flex: 2; background: var(--mx-green); }
.flag-rail-white { flex: 1; background: var(--br-yellow); }
.flag-rail-red { flex: 1; background: var(--mx-red); }

.flag-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--mx-green) 40%, var(--br-yellow) 40% 55%, var(--mx-red) 55%);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.65rem;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-sm { padding: 0.65rem 1.15rem; font-size: 0.88rem; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

.btn-green { background: var(--mx-green); color: #fff; }
.btn-green:hover { background: var(--mx-green-dark); box-shadow: 0 6px 20px rgba(0, 104, 71, 0.35); }

.btn-red { background: var(--mx-green); color: #fff; }
.btn-red:hover { background: var(--mx-green-dark); box-shadow: 0 6px 20px rgba(0, 155, 58, 0.4); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }

.btn-white { background: #fff; color: var(--mx-green-dark); }
.btn-white:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

.btn-outline {
  background: transparent;
  color: var(--mx-green-dark);
  border-color: var(--mx-green);
}
.btn-outline:hover { background: var(--mx-green-light); }

.btn-pulse {
  animation: btnPulse 2.2s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(0, 155, 58, 0.35); }
  50% { box-shadow: 0 8px 28px rgba(0, 155, 58, 0.55), 0 0 0 4px rgba(0, 155, 58, 0.12); }
}

/* Promo bar */
.promo-bar {
  padding-left: var(--rail);
  background: var(--mx-green);
  color: #fff;
  font-size: 0.8rem;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  min-height: 36px;
  padding: 0.35rem 0;
}
.promo-inner p { margin: 0; }
.promo-inner a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.promo-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: promoBlink 1.4s infinite;
}
@keyframes promoBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Header — sticky (promo bar scrolls away above it) */
.header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--mx-white);
  padding-left: var(--rail);
}
.header.is-scrolled { box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08); }

.header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
}
.brand img { height: 44px; width: auto; aspect-ratio: 148 / 40; }

.menu {
  display: none;
  gap: 2rem;
  margin-left: auto;
}
.menu a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.menu a:hover { color: var(--mx-green); }

.header-actions { display: none; gap: 0.5rem; }

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
}
.menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.2s;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer-overlay[hidden] { display: none; }

.drawer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.25rem 1.25rem;
  padding-left: calc(var(--rail) + 1.25rem);
  background: var(--mx-white);
  border-bottom: 1px solid var(--line);
}
.drawer[hidden] { display: none; }
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.drawer-nav a,
.drawer a {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.35rem 0;
}
.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

body.menu-open { overflow: hidden; }

/* Hero + form — high conversion */
.hero {
  position: relative;
  padding: 2.5rem 0 0;
  padding-left: var(--rail);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--mx-green-dark) 0%, var(--mx-green) 45%, #004030 100%);
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(206, 17, 38, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
}

.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.chip {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.chip-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.chip-red {
  background: var(--br-yellow);
  color: var(--mx-red-dark);
}

.hero-copy { color: #fff; }
.hero-copy h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.hero-accent { color: var(--br-yellow); text-decoration: none; }

.hero-lead {
  margin: 0 0 1.15rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 44ch;
}

.hero-checks {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}
.hero-checks li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 800;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.hero-stats div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.65rem 0.4rem;
  text-align: center;
}
.hero-stats strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.hero-stats span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  line-height: 1.2;
}

.hero-proof {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Form card in hero */
.hero-form-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border-top: 4px solid var(--mx-red);
  position: relative;
  min-height: 0;
  align-self: start;
  contain: layout style;
}
.hero-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mx-green) 33%, #fff 33% 66%, var(--mx-red) 66%);
  z-index: 1;
}

.hero-form-top {
  background: linear-gradient(135deg, var(--mx-green-dark), var(--mx-green));
  color: #fff;
  padding: 0.9rem 1.15rem 0.75rem;
  position: relative;
}
.form-ribbon {
  display: inline-block;
  background: var(--br-yellow);
  color: var(--mx-red-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}
.hero-form-top h2 {
  margin: 0 0 0.15rem;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}
.hero-form-top p {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.9;
  line-height: 1.35;
}

.hero-form {
  padding: 0.85rem 1.15rem 1.1rem;
}
.hero-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}
.req { color: var(--mx-red); }
.hero-form input,
.hero-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.2rem;
  padding: 0.55rem 0.75rem;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.hero-form textarea {
  min-height: 3.25rem;
  max-height: 5.5rem;
  resize: vertical;
  line-height: 1.4;
}
.hero-form input:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--mx-green);
  box-shadow: 0 0 0 3px rgba(0, 104, 71, 0.15);
}
.form-more summary {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  padding: 0.2rem 0;
  margin-bottom: 0.15rem;
}
.form-more[open] summary { color: var(--mx-green-dark); }
.form-more label { margin-bottom: 0.45rem; }
.hero-form .btn-lg {
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}
.hero-form button[type="submit"].btn-red {
  background: #ffdf00;
  color: var(--mx-red-dark);
  border-color: #ffdf00;
}
.hero-form button[type="submit"].btn-red:hover {
  background: var(--br-yellow-dark);
  color: var(--mx-red-dark);
  box-shadow: 0 6px 20px rgba(255, 223, 0, 0.45);
}
.hero-form button[type="submit"].btn-pulse {
  animation: btnPulseYellow 2.2s ease-in-out infinite;
}
.hero-form button[type="submit"].is-loading {
  cursor: wait;
  animation: none;
  opacity: 0.92;
  transform: none;
  box-shadow: 0 4px 16px rgba(255, 223, 0, 0.35);
}
.hero-form.is-submitting {
  pointer-events: none;
}
.hero-form.is-submitting input,
.hero-form.is-submitting textarea {
  opacity: 0.65;
}
.btn-spinner {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  border: 2px solid var(--mx-red-dark);
  border-right-color: transparent;
  border-radius: 50%;
  animation: formSpin 0.65s linear infinite;
  vertical-align: -0.12em;
  margin-right: 0.35em;
}
@keyframes formSpin {
  to { transform: rotate(360deg); }
}
@keyframes btnPulseYellow {
  0%, 100% { box-shadow: 0 6px 20px rgba(255, 223, 0, 0.4); }
  50% { box-shadow: 0 8px 28px rgba(255, 223, 0, 0.55), 0 0 0 4px rgba(255, 223, 0, 0.12); }
}
.form-note {
  margin: 0.4rem 0 0;
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}
.form-status {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  text-align: center;
  min-height: 1em;
}
.form-status.error { color: var(--mx-red); font-weight: 600; }
.form-status.success { color: var(--mx-green-dark); font-weight: 600; }
.form-status.is-active {
  padding: 0.35rem 0.5rem;
  background: var(--mx-green-light);
  border-radius: 6px;
}
.form-status.is-shake {
  animation: formShake 0.45s ease;
}
@keyframes formShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.hero-form .btn + .btn { margin-top: 0.35rem; }

.hero-trust {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
  padding: 0.85rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.hero-trust-inner span { white-space: nowrap; }

/* Blocks */
.block {
  padding: 4rem 0;
  padding-left: var(--rail);
}
.block-alt { background: #f7f9fc; }
.block-head { margin-bottom: 2rem; }
.block-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mx-green);
}
.eyebrow-light { color: rgba(255,255,255,0.85); }
.block-head-light h2 { color: #fff; }

/* Feature rows */
.feature-rows { display: grid; gap: 0; }
.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.feature-row:last-child { border-bottom: none; }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.fi-green { background: var(--mx-green); }
.fi-red { background: var(--mx-red); }
.feature-row h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.feature-row p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Route timeline */
.route {
  padding: 4rem 0;
  padding-left: var(--rail);
  background: var(--mx-green-dark);
  color: #fff;
}
.timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}
.tl-node {
  text-align: center;
  padding: 1.25rem;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  width: 100%;
  max-width: 280px;
  border: 1px solid rgba(255,255,255,0.15);
}
.tl-dot {
  width: 12px;
  height: 12px;
  background: var(--mx-green);
  border: 3px solid #fff;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
}
.tl-dot-red,
.tl-dot-accent { background: var(--br-yellow); border-color: var(--mx-red-dark); }
.tl-flag { font-size: 2rem; display: block; margin-bottom: 0.35rem; }
.tl-node strong { display: block; font-size: 1.05rem; }
.tl-node small { color: rgba(255,255,255,0.7); font-size: 0.82rem; }

.tl-line {
  width: 3px;
  height: 48px;
  background: linear-gradient(180deg, var(--mx-white), var(--mx-red));
  position: relative;
}
.tl-line span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.route-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.route-cards article {
  background: var(--mx-red);
  padding: 1.25rem;
  border-radius: 10px;
  border-bottom: 3px solid var(--br-yellow);
}
.route-cards strong { display: block; font-size: 1.3rem; }
.route-cards span { font-size: 0.82rem; opacity: 0.9; }

/* Bento catalog */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.bento-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.bento-item:hover {
  border-color: var(--mx-green);
  box-shadow: 0 8px 24px rgba(0,104,71,0.12);
  transform: translateY(-2px);
  text-decoration: none;
}
.bento-item img { width: 64px; height: 64px; object-fit: contain; flex-shrink: 0; }
.bento-item h3 { margin: 0; font-size: 0.95rem; }
.bento-item span { font-size: 0.75rem; font-weight: 700; color: var(--mx-red); }
.bento-lg { grid-column: span 2; }
.bento-lg img { width: 90px; height: 90px; }
.bento-wide { grid-column: span 2; background: var(--mx-green-light); border-color: var(--mx-green); }

.block-cta { text-align: center; margin-top: 2rem; }

.block-lead {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 58ch;
}

/* Manufacturing capacity */
.capacity {
  padding: 3.5rem 0 0;
  padding-left: var(--rail);
  background: #fff;
}
.capacity-head { text-align: center; }
.capacity-head .block-lead { margin-inline: auto; }
.capacity-sub {
  margin: 0 0 0.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mx-green-dark);
}
.capacity-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--mx-green-dark) 0%, var(--mx-green) 100%);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.capacity-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.07) 0%, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.05) 0%, transparent 38%);
  pointer-events: none;
}
.cap-stat {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.1rem 1.15rem;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.cap-stat:nth-child(2n) { border-right: none; }
.cap-stat:nth-last-child(-n+2) { border-bottom: none; }
.cap-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.75rem;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  background: rgba(255,255,255,0.1);
}
.cap-stat strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}
.cap-stat span {
  font-size: 0.85rem;
  opacity: 0.88;
  font-weight: 600;
}

/* USP grid */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-bottom: 2rem;
}
.usp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.usp-card:hover {
  border-color: var(--mx-green);
  box-shadow: 0 6px 20px rgba(0,104,71,0.1);
}
.usp-icon {
  width: 46px;
  height: 46px;
  background: var(--mx-red-light);
  color: var(--mx-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}
.usp-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}
.usp-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}
.br-strip,
.mx-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  justify-content: center;
  padding: 1.15rem 1.5rem;
  background: linear-gradient(90deg, var(--mx-green), var(--mx-green-dark));
  color: #fff;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 3px solid var(--br-yellow);
}

/* Problema + solução */
.problem-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.problem-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.problem-card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.problem-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.solution-banner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--mx-green-dark), var(--mx-green));
  border-radius: 16px;
  color: #fff;
  border-bottom: 4px solid var(--br-yellow);
}
.solution-banner h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
.solution-banner p { margin: 0; opacity: 0.92; }
.solution-banner .btn-red { background: var(--br-yellow); color: var(--mx-red-dark); }
.solution-banner .btn-red:hover { background: #fff; color: var(--mx-green-dark); }

.process-grid {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 2rem;
}
.process-step {
  text-align: center;
  padding: 2rem 1.25rem;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--mx-green);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.process-step h3 { margin: 0 0 0.5rem; }
.process-step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.block-lead.center { text-align: center; margin-inline: auto; }

/* Sobre */
.about-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.about-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--mx-green-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}
.about-list {
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
}
.about-list li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
  font-weight: 600;
}
.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mx-green);
  font-weight: 800;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.product-img {
  background: #fff;
  padding: 1.5rem 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.product-img::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.product-img::before {
  display: none;
}
.product-img img {
  position: relative;
  z-index: 1;
  max-height: 145px;
  width: auto;
  object-fit: contain;
}
.product-card h3 {
  margin: 0;
  padding: 1.1rem 1.25rem 0.4rem;
  font-size: 1.08rem;
}
.product-card p {
  margin: 0;
  padding: 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
}
.product-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 1.1rem 1.25rem 1.25rem;
}
.product-btns .btn { padding: 0.72rem 0.55rem; font-size: 0.85rem; }
.product-btns .btn-red {
  background: #d63b3b;
}
.product-btns .btn-red:hover {
  background: #b83232;
  box-shadow: 0 4px 14px rgba(214, 59, 59, 0.35);
}

/* Catalog grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.catalog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.15rem 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.catalog-item:hover {
  border-color: var(--mx-green);
  box-shadow: 0 6px 18px rgba(0,104,71,0.1);
  text-decoration: none;
}
.catalog-item img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.catalog-item span {
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  color: var(--ink);
}
.catalog-item {
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.catalog-item:hover {
  transform: translateY(-3px);
}
.catalog-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

/* Series China / India */
.series-block { background: #fff; }
.series-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.series-card {
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid var(--line);
  position: relative;
  overflow: hidden;
}
.series-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 0 0 0 100%;
  opacity: 0.12;
}
.series-china::before { background: var(--mx-red); }
.series-india::before { background: var(--mx-green); }
.series-china { border-top: 4px solid var(--mx-red); }
.series-india { border-top: 4px solid var(--mx-green); }
.series-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
  color: var(--muted);
}
.series-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
}
.series-card ul {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.series-card li { margin-bottom: 0.35rem; }

/* Hero actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* Awards watermark */
.awards-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.awards-section::before {
  content: "";
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 104, 71, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.awards-head {
  position: relative;
  text-align: center;
}
.awards-watermark {
  display: block;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  color: rgba(0, 104, 71, 0.07);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: -0.5rem;
  user-select: none;
}

/* Gallery dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}
.gallery-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.gallery-dots button.is-active {
  background: var(--mx-green);
  transform: scale(1.2);
}

/* Infrastructure gallery */
.gallery-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0 1rem;
  flex: 1;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track figure {
  margin: 0;
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--line);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.gallery-track img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.gallery-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 2px solid var(--mx-green);
  background: #fff;
  color: var(--mx-green);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.gallery-btn:hover {
  background: var(--mx-green);
  color: #fff;
}

/* Brands */
.brands {
  padding: 3rem 0;
  padding-left: var(--rail);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands .block-head { text-align: center; margin-bottom: 1.5rem; }
.brands-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 2.5rem;
}
.brands-row img {
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(20%);
  transition: opacity 0.15s, filter 0.15s;
}
.brands-row img:hover {
  opacity: 1;
  filter: none;
}

/* Certifications */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.cert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 1.25rem;
}
.cert-card img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  background: #f7f9fc;
  padding: 1rem;
}
.cert-card h3 {
  margin: 0.95rem 1.15rem 0.4rem;
  font-size: 1.08rem;
  color: var(--mx-green-dark);
}
.cert-card p {
  margin: 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Awards */
.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.award-card {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.award-card img {
  width: 100%;
  aspect-ratio: 592 / 388;
  object-fit: cover;
}
.award-card figcaption {
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  border-top: 3px solid var(--mx-green);
}

.compare-section {
  padding: 3.5rem 0;
  padding-left: var(--rail);
  background: var(--mx-green-light);
}
.compare-section h2 {
  text-align: center;
  margin: 0 0 2rem;
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-weight: 800;
}
.compare-cards {
  display: grid;
  gap: 1rem;
}
.compare-card {
  padding: 2rem;
  border-radius: 14px;
  border: 2px solid var(--line);
}
.compare-card h3 { margin: 0 0 1rem; font-size: 1.2rem; }
.compare-card ul { margin: 0; padding: 0; list-style: none; }
.compare-card li {
  padding: 0.5rem 0;
  font-size: 0.98rem;
  border-bottom: 1px solid var(--line);
}
.compare-card li:last-child { border-bottom: none; }
.compare-win {
  background: #fff;
  border-color: var(--mx-green);
  box-shadow: 0 8px 28px rgba(0,104,71,0.12);
}
.compare-win h3 { color: var(--mx-green-dark); }
.compare-win li::before { content: "✓ "; color: var(--mx-green); font-weight: 800; }
.compare-lose { background: #fff; opacity: 0.85; }
.compare-lose li::before { content: "✗ "; color: var(--mx-red); font-weight: 800; }

/* Quotes */
.quotes {
  display: grid;
  gap: 1rem;
}
.quotes blockquote {
  margin: 0;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--mx-red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.quotes p { margin: 0 0 0.75rem; font-style: italic; font-size: 1.05rem; }
.quotes footer { font-size: 0.82rem; color: var(--muted); }
.quotes footer strong { color: var(--ink); }

/* Certs */
.certs {
  padding: 1.5rem 0;
  padding-left: var(--rail);
  background: var(--mx-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.certs-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}
.certs-flex span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mx-green-dark);
  padding: 0.4rem 0.85rem;
  background: var(--mx-green-light);
  border-radius: 999px;
}

/* FAQ split */
.faq-split {
  display: grid;
  gap: 2rem;
}
.faq-side {
  background: var(--mx-green);
  color: #fff;
  padding: 2rem;
  border-radius: 16px;
}
.faq-side h2 { margin: 0 0 0.75rem; font-size: 1.9rem; font-weight: 800; }
.faq-side p { margin: 0 0 1.5rem; opacity: 0.9; }

.faq-items details {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 0.5rem;
  background: #fff;
  overflow: hidden;
}
.faq-items summary {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  font-size: 0.98rem;
}
.faq-items summary::-webkit-details-marker { display: none; }
.faq-items details[open] summary {
  background: var(--mx-red-light);
  color: var(--mx-red-dark);
}
.faq-items p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Closing CTA */
.closing {
  padding: 3.5rem 0;
  padding-left: var(--rail);
  background: linear-gradient(135deg, var(--mx-green) 0%, var(--mx-green-dark) 100%);
  color: #fff;
  text-align: center;
  border-top: 4px solid var(--br-yellow);
}
.closing-inner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  font-weight: 800;
}
.closing-inner > p { margin: 0 0 1.5rem; opacity: 0.9; }
.closing-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer */
.footer {
  padding-left: var(--rail);
  background: var(--ink);
  color: rgba(255,255,255,0.75);
}
.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 0;
  text-align: center;
}
.footer-row p { margin: 0; font-size: 0.82rem; }
.footer-row a { color: var(--mx-red-light); font-size: 0.85rem; }
.footer-logo-white {
  width: auto;
  max-width: min(200px, 70vw);
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

/* Mobile bar + FAB */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: var(--rail);
  right: 0;
  z-index: 200;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem max(3vw, 12px);
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  background: #fff;
  border-top: 3px solid var(--mx-green);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(0);
}
.mobile-bar.is-visible { transform: translateY(0); }
.btn-mobile-bar {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  font-size: clamp(0.72rem, 3.2vw, 0.85rem);
  padding: 0.6rem 0.4rem;
  white-space: nowrap;
}

.wa-fab {
  position: fixed;
  bottom: 1.25rem;
  right: max(0.75rem, 3vw);
  z-index: 210;
  width: 56px;
  height: 56px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 0.15s;
}
.wa-fab:hover { transform: scale(1.08); text-decoration: none; }

body.has-mobile-bar {
  padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom) + 10px);
}
body.has-mobile-bar .wa-fab {
  bottom: calc(var(--mobile-bar-h) + 0.85rem + env(safe-area-inset-bottom));
}
body.menu-open .wa-fab,
body.menu-open .mobile-bar {
  visibility: hidden;
  pointer-events: none;
}

/* Responsive */
@media (min-width: 640px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .solution-banner { flex-direction: row; align-items: center; justify-content: space-between; }
  .about-layout { grid-template-columns: 1fr 1fr; }
  .series-grid { grid-template-columns: 1fr 1fr; }
  .compare-cards { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(4, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .capacity-stats { grid-template-columns: repeat(5, 1fr); }
  .cap-stat { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.12); }
  .cap-stat:last-child { border-right: none; }
  .cap-stat:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.12); }
  .gallery-btn { display: flex; }
}

@media (min-width: 768px) {
  .menu { display: flex; }
  .header-actions { display: flex; margin-left: 0.5rem; }
  .menu-btn { display: none; }
  .drawer { display: none !important; }

  .hero-layout {
    grid-template-columns: 1fr min(400px, 40%);
    gap: 2rem;
    align-items: start;
    padding-bottom: 2.75rem;
  }
  .hero-form-card { min-height: auto; }
  .hero { padding-top: 3.25rem; }
  .timeline { flex-direction: row; justify-content: center; align-items: stretch; gap: 0; }
  .tl-line { width: 120px; height: 3px; align-self: center; }
  .tl-line span { left: 50%; top: -22px; transform: translateX(-50%); }
  .faq-split { grid-template-columns: 1fr 1.4fr; align-items: start; }

  .mobile-bar { display: none; }
  body.has-mobile-bar { padding-bottom: 0; }
  body.has-mobile-bar .wa-fab { bottom: 1.25rem; }
}

@media (min-width: 900px) {
  .feature-row { grid-template-columns: 64px 1fr; gap: 2rem; padding: 2rem 0; }
  .hero-layout { grid-template-columns: 1.08fr 450px; gap: 2.75rem; }
  .usp-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .cert-grid { grid-template-columns: repeat(4, 1fr); }
  .catalog-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 767px) {
  :root {
    --header-h: 62px;
    --sticky-header-h: var(--header-h);
  }

  html { scroll-padding-top: var(--sticky-header-h); }

  body.header-pinned-active {
    padding-top: var(--header-pin-h, var(--sticky-header-h));
  }

  .header {
    position: relative;
    top: auto;
    z-index: 300;
  }

  .header.header-pinned {
    position: fixed;
    top: 0;
    left: var(--rail);
    right: 0;
  }

  .header-row {
    min-height: var(--header-h);
    gap: 0.5rem;
  }

  .brand img {
    height: 36px;
    max-width: min(132px, 44vw);
  }

  .menu-btn {
    margin-left: auto;
    flex-shrink: 0;
  }

  .drawer-overlay {
    position: fixed;
    top: 0;
    left: var(--rail);
    right: 0;
    bottom: 0;
    z-index: 280;
    background: rgba(0, 0, 0, 0.45);
  }

  .drawer {
    position: fixed;
    top: var(--sticky-header-h);
    left: var(--rail);
    right: 0;
    bottom: 0;
    z-index: 290;
    margin: 0;
    padding: 1rem 1.25rem;
    padding-left: calc(var(--rail) + 1.25rem);
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    border-bottom: none;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  }

  .drawer-nav a {
    padding: 0.7rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }

  .drawer-actions {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-top: 1rem;
    padding-bottom: env(safe-area-inset-bottom);
    background: linear-gradient(180deg, transparent, #fff 24%);
  }

  .route-cards { grid-template-columns: 1fr; }
  .hero-form-card { order: -1; min-height: 0; }

  .hero-copy { text-align: center; }
  .chip-row { justify-content: center; }
  .hero-checks {
    display: inline-block;
    text-align: left;
    margin-inline: auto;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }
  .hero-proof { text-align: center; }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-trust-inner {
    justify-content: center;
    gap: 0.5rem 1rem;
    padding-inline: 0.5rem;
  }
  .hero-trust-inner span { white-space: normal; text-align: center; }
}

@media (min-width: 1200px) {
  :root { --wrap: min(1240px, 94vw); }
  .catalog-grid { grid-template-columns: repeat(6, 1fr); }
}

/* Thank you page */
.thank-you-page .header {
  position: sticky;
  top: 0;
}

.thank-you-main {
  padding: 3rem 0 4rem;
  padding-left: var(--rail);
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--mx-green-light) 0%, var(--mx-white) 55%);
}

.thank-you-card {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--line);
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--mx-green);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 72px;
}

.thank-you-card h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
}

.thank-you-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.thank-you-steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.thank-you-steps li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.75rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.thank-you-steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mx-green);
  font-weight: 800;
}

.thank-you-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.thank-you-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (min-width: 480px) {
  .thank-you-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .bento-item, .wa-fab, .btn-pulse, .promo-dot,
  .hero-form button[type="submit"].btn-pulse { animation: none; transition: none; }
}
