/* Br Envio — site público (apps/site). Marca: lima/cinza do painel ([09]). */
:root {
  --brand: #b2d608;
  --ink: #3e3c3c;
  --ink-soft: #5c5a5a;
  --paper: #f0f4f9;
  --white: #ffffff;
  --line: rgba(62, 60, 60, 0.12);
  --shadow: 0 18px 50px rgba(62, 60, 60, 0.08);
  --radius: 14px;
  --max: 1100px;
  --font: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ink);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #000;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: #000;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(240, 244, 249, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  height: 2.35rem;
  width: auto;
  display: block;
}

.logo-lg img {
  height: clamp(2.8rem, 6vw, 3.6rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
}

.nav-cta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Dropdown Recursos — fechado por padrão; abre só com .is-open (ou hover no desktop). */
.nav-item.has-dropdown {
  position: relative;
  flex-shrink: 0;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.1rem);
  opacity: 0.7;
}

/* Esconde o submenu: class + [hidden] (UA) — evita header “explodido” se o CSS antigo estiver em cache. */
.nav-links .nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  z-index: 60;
  min-width: 14rem;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.nav-links .nav-item.has-dropdown.is-open > .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(178, 214, 8, 0.18);
  outline: none;
}

/* Breadcrumb + ações da página de recurso */
.breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.5;
}

.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: var(--ink);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
}

.related-resources {
  margin-top: 0.5rem;
}

.related-resources .feature h3 {
  font-size: 1rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  margin: 1.25rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.trust-strip span {
  white-space: nowrap;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: var(--brand);
  color: #000;
  box-shadow: 0 8px 24px rgba(178, 214, 8, 0.35);
}

.btn-primary:hover {
  color: #000;
  box-shadow: 0 12px 28px rgba(178, 214, 8, 0.45);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(62, 60, 60, 0.25);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-lg {
  padding: 0.9rem 1.4rem;
  font-size: 1.05rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(178, 214, 8, 0.35), transparent 55%),
    radial-gradient(900px 420px at 0% 80%, rgba(62, 60, 60, 0.08), transparent 50%),
    linear-gradient(165deg, #e8eef6 0%, var(--paper) 45%, #e4ebf4 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233e3c3c' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy .hero-brand {
  margin-bottom: 1rem;
}

.hero-brand {
  margin: 0;
}

.hero-visual {
  position: relative;
}

.product-mock {
  background: var(--ink);
  color: #f5f5f5;
  border-radius: calc(var(--radius) + 6px);
  padding: 1.15rem 1.15rem 1.35rem;
  box-shadow: 0 24px 60px rgba(62, 60, 60, 0.28);
  transform: rotate(-1.2deg);
}

.product-mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product-mock-top strong {
  color: var(--brand);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-mock-bars {
  display: grid;
  gap: 0.55rem;
}

.product-mock-bars span {
  display: block;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.product-mock-bars span:nth-child(1) {
  width: 92%;
  background: linear-gradient(90deg, var(--brand), rgba(178, 214, 8, 0.35));
}

.product-mock-bars span:nth-child(2) {
  width: 74%;
}

.product-mock-bars span:nth-child(3) {
  width: 58%;
}

.product-mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.product-mock-stats div {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.65rem 0.5rem;
  text-align: center;
}

.product-mock-stats b {
  display: block;
  font-size: 1.1rem;
  color: var(--brand);
}

.product-mock-stats small {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.72rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-trust span::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 0.15rem;
  background: var(--brand);
}

/* Checklist / compare / forms */
.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checklist .n {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
  background: var(--brand);
  color: #000;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.checklist strong {
  display: block;
  margin-bottom: 0.2rem;
}

.checklist p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table th {
  background: var(--paper);
}

.compare-table th:nth-child(2) {
  background: rgba(178, 214, 8, 0.35);
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.yes {
  color: #1b6b1b;
  font-weight: 600;
}

.no {
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(62, 60, 60, 0.25);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(178, 214, 8, 0.55);
  border-color: var(--brand);
}

.form-hint {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0.35rem 0 0;
}

.form-status {
  margin-top: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: #eef8d6;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: #fde8e8;
  color: #7a1f1f;
}

/* Honeypot anti-spam — fora da tela; não usar display:none (bots filtram). */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.nav-links a[aria-current="page"] {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.hero-brand {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 0.75rem;
}

.hero-brand span {
  display: inline-block;
  background: var(--brand);
  color: #000;
  padding: 0.05em 0.22em;
  border-radius: 0.18em;
}

.hero h1 {
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 18ch;
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-alt {
  background: var(--white);
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.6rem;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  max-width: 22ch;
}

.section-lead {
  color: var(--ink-soft);
  max-width: 40rem;
  margin: 0 0 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.section-alt .feature {
  background: var(--paper);
}

.feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
}

.feature h3 a {
  color: inherit;
  text-decoration: none;
}

.feature h3 a:hover {
  text-decoration: underline;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.feature-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  background: var(--brand);
  color: #000;
  font-weight: 800;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

/* Spam / trust band */
.trust-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2rem;
  border-bottom: 1px solid var(--line);
}

.trust-list li:last-child {
  border-bottom: 0;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 0.2rem;
  background: var(--brand);
}

.trust-panel {
  background: var(--ink);
  color: #f5f5f5;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}

.trust-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: var(--brand);
}

.trust-panel p {
  margin: 0;
  color: rgba(245, 245, 245, 0.88);
}

/* Pricing cards — interaction containers */
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.plan-highlight {
  border-color: rgba(178, 214, 8, 0.7);
  box-shadow: 0 0 0 2px rgba(178, 214, 8, 0.35);
}

.plan-name {
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.plan-price {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.35rem 0;
}

.plan-price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.plan-quota {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0 0 1rem;
  flex: 1;
}

.plan .btn {
  width: 100%;
}

.plans-note {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table.pricing {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

table.pricing th,
table.pricing td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}

table.pricing th {
  background: var(--paper);
  font-weight: 600;
}

table.pricing tr:last-child td {
  border-bottom: 0;
}

/* API block */
.api-block {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px dashed rgba(62, 60, 60, 0.28);
  background: linear-gradient(135deg, #fff 0%, #f7faf0 100%);
}

.api-block p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-weight: 700;
  color: var(--ink-soft);
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0.65rem 0 0.25rem;
  color: var(--ink-soft);
  max-width: 48rem;
}

.page-hero {
  padding: 3rem 0 1.5rem;
  background:
    radial-gradient(800px 320px at 100% 0%, rgba(178, 214, 8, 0.22), transparent 60%),
    var(--paper);
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 40rem;
}

.legal {
  max-width: 42rem;
}

.legal h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
  max-width: none;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

.legal .note {
  padding: 1rem 1.15rem;
  background: #fff8d6;
  border-left: 4px solid var(--brand);
  border-radius: 0 8px 8px 0;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.cta-band {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--ink);
  color: #fff;
}

.cta-band h2 {
  color: #fff;
  max-width: none;
  margin-inline: auto;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0.5rem auto 1.5rem;
  max-width: 32rem;
}

.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.cta-band .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--white);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer h3 {
  margin: 0 0 0.6rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
}

.footer-copy a {
  color: var(--ink-soft);
}

/* Instagram + bandeira BR (porta brsend) — discreto no rodapé */
.footer-tools {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-social:hover {
  color: var(--ink);
  text-decoration: none;
}

.footer-social.is-empty {
  opacity: 0.7;
  font-size: 0.8rem;
  font-style: italic;
}

.footer-social-label {
  font-size: 0.875rem;
}

.footer-br-portal {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px dotted var(--line);
}

.footer-br-portal:hover {
  color: var(--ink);
  text-decoration: none;
}

.footer-locale-flag {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 4px;
  padding: 0.2rem 0.35rem;
  line-height: 0;
  cursor: pointer;
  opacity: 0.85;
}

.footer-locale-flag:hover {
  opacity: 1;
  border-color: var(--ink-soft);
}

.footer-locale-flag:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .hero-brand span {
    animation: brand-pop 0.7s ease both;
  }

  .hero-copy h1,
  .hero-lead,
  .hero-actions,
  .hero-trust,
  .hero-visual {
    animation: rise 0.7s ease both;
  }

  .hero-copy h1 {
    animation-delay: 0.08s;
  }

  .hero-lead {
    animation-delay: 0.16s;
  }

  .hero-actions {
    animation-delay: 0.24s;
  }

  .hero-trust {
    animation-delay: 0.32s;
  }

  .hero-visual {
    animation-delay: 0.2s;
  }

  .feature,
  .plan {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .feature:hover,
  .plan:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
}

@keyframes brand-pop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .grid-3,
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-band,
  .api-block,
  .footer-grid,
  .hero .wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-mock {
    transform: none;
    max-width: 26rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav.is-open .nav-links,
  .nav.is-open .nav-cta {
    display: flex;
  }

  .nav.is-open {
    flex-wrap: wrap;
    padding-bottom: 1rem;
  }

  .nav.is-open .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav.is-open .nav-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open .nav-item.has-dropdown {
    width: 100%;
  }

  .nav.is-open .nav-dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.25rem 0.75rem;
    min-width: 0;
    background: transparent;
  }

  .nav.is-open .nav-item.has-dropdown.is-open > .nav-dropdown {
    display: block;
  }

  .trust-strip {
    border-radius: 14px;
    justify-content: flex-start;
  }

  .trust-strip span {
    white-space: normal;
  }

  .grid-3,
  .grid-2,
  .plans {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}
