/* PedidoFlux — design tokens */
:root {
  --color-primary: #ea580c;
  --color-primary-hover: #c2410c;
  --color-primary-rgb: 234, 88, 12;
  --color-primary-soft: #fff7ed;
  --color-dark: #1c1917;
  --color-bg: #fafaf9;
  --color-bg-elevated: #ffffff;
  --color-accent: #059669;
  --color-accent-rgb: 5, 150, 105;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-white: #ffffff;
  --color-border: #e7e5e4;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 20px 50px -12px rgba(15, 23, 42, 0.12);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --max-w: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(1200px 480px at 12% -8%, rgba(var(--color-primary-rgb), 0.09), transparent 55%),
    radial-gradient(900px 400px at 88% 0%, rgba(var(--color-accent-rgb), 0.05), transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--color-primary-hover);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--color-dark);
  color: var(--color-white);
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 0.78);
  backdrop-filter: blur(14px) saturate(1.35);
  border-bottom: 1px solid rgba(231, 229, 228, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--color-text);
}

.logo:hover {
  color: var(--color-text);
  opacity: 0.92;
}

.logo-img {
  height: auto;
  max-height: 40px;
  width: auto;
  max-width: min(220px, 78vw);
  display: block;
}

@media (min-width: 961px) and (max-width: 1200px) {
  .site-header .logo-img {
    max-height: 36px;
    max-width: 200px;
  }
}

.site-footer .footer-brand .logo {
  display: inline-flex;
  padding: 0.4rem 0.65rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-md);
}

.site-footer .footer-brand .logo:hover {
  opacity: 1;
  background: var(--color-white);
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-primary a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.45rem 0.55rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
  color: var(--color-text);
  background: rgba(var(--color-primary-rgb), 0.08);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.header-cta .btn {
  white-space: nowrap;
  padding: 0.62rem 1rem;
  font-size: 0.875rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 1px;
}

@media (max-width: 1100px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-primary,
  .header-cta {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-header.is-open .nav-primary,
  .site-header.is-open .header-cta {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-primary {
    align-items: stretch;
  }

  .nav-primary a {
    padding: 0.75rem 1rem;
  }

  .header-cta {
    top: auto;
    bottom: auto;
    position: static;
    box-shadow: none;
    border: none;
    padding-top: 0;
    width: 100%;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }

  .site-header.is-open .header-cta {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    width: 100%;
    padding: 0 1rem 1rem;
    order: 3;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(165deg, #fb923c 0%, var(--color-primary) 45%, var(--color-primary-hover) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(var(--color-primary-rgb), 0.38);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(var(--color-primary-rgb), 0.42);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--color-bg);
  color: var(--color-dark);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-dark:hover {
  background: #292524;
  color: var(--color-white);
}

.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 85%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--color-primary-rgb), 0.14), transparent 58%),
    radial-gradient(ellipse at 80% 20%, rgba(var(--color-accent-rgb), 0.06), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(231, 229, 228, 0.95);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge strong {
  color: var(--color-accent);
  font-weight: 700;
}

h1,
.h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--color-text);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin: 0 0 1.75rem;
  max-width: 34ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero-figure {
  margin: 0;
}

.hero-figure-cap {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.45;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(231, 229, 228, 0.9);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.hero-card-title {
  font-weight: 700;
  font-size: 0.9375rem;
}

.hero-stat {
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
}

.hero-mock-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.mock-dot.green {
  background: var(--color-accent);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--color-bg-elevated);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin: 0 0 0.5rem;
}

h2,
.h2 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.section-desc {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

/* Grids */
.grid-2 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  gap: 1.25rem;
}

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

.card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--color-primary-rgb), 0.22);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(var(--color-primary-rgb), 0.12);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-dark);
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Testimonial */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, var(--color-white), var(--color-bg));
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.testimonial blockquote {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text);
}

.testimonial cite {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list details {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.65rem;
  padding: 0 1.25rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1.1rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list .faq-body {
  padding: 0 0 1.1rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-band .btn-primary {
  box-shadow: none;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #1c1917 0%, #0c0a09 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 2rem;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.footer-brand p {
  margin: 0.75rem 0 0;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h3 {
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

/* Page header (inner pages) */
.page-hero {
  padding: 3.25rem 0 2.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 250, 249, 0.65) 100%);
  border-bottom: 1px solid rgba(231, 229, 228, 0.9);
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 220px at 18% 0%, rgba(var(--color-primary-rgb), 0.07), transparent 65%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero .lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.125rem;
  max-width: 52ch;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-color: rgba(var(--color-primary-rgb), 0.45);
  box-shadow: 0 12px 36px rgba(var(--color-primary-rgb), 0.14);
}

.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

.price-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.price-card .tier-price {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--color-text);
}

.price-card .tier-price span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.price-card .tier-desc {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.price-card ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex-grow: 1;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.9375rem;
}

.price-card li::before {
  content: "✔";
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* Forms */
.form-wrap {
  max-width: 560px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.18);
}

/* Blog */
.blog-list {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
}

.blog-card a.block {
  display: block;
  padding: 1.5rem;
  color: inherit;
}

.blog-card a.block:hover {
  color: inherit;
}

.blog-card h2 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}

.blog-card .meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.blog-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h1 {
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.prose .article-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.prose h2 {
  font-size: 1.35rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.prose h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose p,
.prose li {
  color: var(--color-text-muted);
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.35rem;
}

.prose strong {
  color: var(--color-text);
}

/* Footer variants */
.footer-bottom--compact {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

/* Values */
.values-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-pill {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  font-weight: 700;
}

/* —— Prévia do sistema (alinhada ao painel web em frontend/) —— */
.browser-frame {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(231, 229, 228, 0.95);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #f5f5f4 0%, #e7e5e4 100%);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  background: #e5e7eb;
  border-bottom: 1px solid #d1d5db;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d1d5db;
}

.browser-dots span:nth-child(1) {
  background: #f87171;
}

.browser-dots span:nth-child(2) {
  background: #fbbf24;
}

.browser-dots span:nth-child(3) {
  background: #34d399;
}

.browser-url {
  flex: 1;
  font-size: 0.6875rem;
  color: #6b7280;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.28rem 0.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pf-app {
  --pf-ink: #111827;
  --pf-muted: #6b7280;
  --pf-border: #e7e5e4;
  --pf-bg: #fafaf9;
  --pf-primary: #ea580c;
  --pf-primary-light: #ffedd5;
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.45;
  color: var(--pf-ink);
  background: var(--pf-bg);
  text-align: left;
}

.pf-app * {
  box-sizing: border-box;
}

.pf-app-layout {
  display: grid;
  grid-template-columns: 52px 1fr;
  min-height: 280px;
}

@media (min-width: 900px) {
  .pf-app-layout--hero {
    min-height: 320px;
  }
}

.pf-app-sidebar {
  background: #fff;
  border-right: 1px solid var(--pf-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.65rem 0;
  gap: 0.5rem;
}

.pf-sb-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--pf-primary-light);
  color: var(--pf-primary);
  display: grid;
  place-items: center;
  font-size: 14px;
}

.pf-sb-icon--muted {
  background: #f3f4f6;
  color: #9ca3af;
}

.pf-app-main {
  padding: 1rem 1rem 1.15rem;
  overflow: hidden;
}

.pf-app-main h3 {
  margin: 0 0 0.15rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pf-ink);
}

.pf-app-main .pf-sub {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  color: var(--pf-muted);
}

.pf-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.pf-kpi {
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: 14px;
  padding: 0.65rem 0.75rem;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
}

.pf-kpi-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pf-muted);
}

.pf-kpi-value {
  margin-top: 0.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pf-ink);
}

.pf-kpi-delta {
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.pf-chart-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  height: 72px;
  margin-top: 0.75rem;
  padding: 0 0.15rem;
}

.pf-chart-bar {
  flex: 1;
  max-width: 22px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, #ea580c, #fb923c);
  opacity: 0.92;
}

.pf-chart-labels {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin-top: 0.35rem;
  padding: 0 0.15rem;
}

.pf-chart-labels span {
  flex: 1;
  text-align: center;
  font-size: 0.5625rem;
  font-weight: 500;
  color: var(--pf-muted);
}

.section-product-ui {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, var(--color-bg) 55%, var(--color-bg) 100%);
}

.product-ui-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .product-ui-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.product-ui-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.product-ui-block > p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  max-width: 42ch;
}

.pf-dash-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 480px) {
  .pf-dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .pf-dash-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pf-dash-split {
  grid-template-columns: 1.2fr 0.8fr;
}

@media (max-width: 599px) {
  .pf-dash-split {
    grid-template-columns: 1fr;
  }
}

.pf-card {
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
}

.pf-card-head {
  border-bottom: 1px solid var(--pf-border);
  padding: 0.65rem 0.85rem;
}

.pf-card-head h4 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--pf-ink);
}

.pf-card-head p {
  margin: 0.15rem 0 0;
  font-size: 0.6875rem;
  color: var(--pf-muted);
}

.pf-card-body {
  padding: 0.75rem 0.85rem;
}

.pf-metric-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.85rem;
}

.pf-metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pf-primary-light);
  color: var(--pf-primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.pf-top-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pf-top-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-top: 1px solid var(--pf-border);
  font-size: 0.8125rem;
}

.pf-top-list li:first-of-type {
  border-top: none;
}

.pf-progress {
  height: 6px;
  width: 72px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
  flex-shrink: 0;
}

.pf-progress > i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--pf-primary);
}

.pf-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--pf-border);
  margin-bottom: 0.65rem;
}

.pf-tab {
  padding: 0.45rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pf-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.pf-tab--active {
  color: var(--pf-primary);
  border-bottom-color: var(--pf-primary);
}

.pf-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.pf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pf-chip {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  background: #f3f4f6;
  color: #4b5563;
  border: 1px solid #e5e7eb;
}

.pf-chip--on {
  background: var(--pf-primary-light);
  color: var(--pf-primary);
  border-color: #fed7aa;
}

.pf-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--pf-primary);
  color: #fff;
  border: none;
  white-space: nowrap;
}

.pf-orders {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 520px) {
  .pf-orders {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pf-order {
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pf-order:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
}

.pf-order-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--pf-border);
}

.pf-order-top > div:first-of-type {
  min-width: 0;
}

.pf-order-meta {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pf-muted);
}

.pf-order-name {
  margin: 0.2rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pf-ink);
}

.pf-order-type {
  margin: 0.1rem 0 0;
  font-size: 0.6875rem;
  color: var(--pf-muted);
}

.pf-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}

.pf-status--preparo {
  background: #ffedd5;
  color: #c2410c;
}

.pf-status--pronto {
  background: #dcfce7;
  color: #15803d;
}

.pf-order-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.75rem;
}

.pf-order-total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pf-ink);
}

.pf-ghost-btn {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--pf-primary);
  border: 1px solid #fed7aa;
  background: #fff;
  border-radius: 8px;
  padding: 0.25rem 0.45rem;
}

.product-ui-caption {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Funcionalidades — grupos do produto real */
.func-bundle {
  margin-bottom: 2.75rem;
}

.func-bundle:last-child {
  margin-bottom: 0;
}

.func-bundle-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(var(--color-primary-rgb), 0.35);
}

.func-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: -0.35rem 0 1.25rem;
  max-width: 62ch;
}

.func-bundle .card h3 {
  font-size: 1.0625rem;
  margin-top: 0;
}

/* Mock do menu lateral (shell) — mesmos itens do painel */
.pf-shell-inner {
  display: grid;
  grid-template-columns: minmax(200px, 240px) 1fr;
  min-height: 260px;
  background: var(--color-bg);
  font-family: var(--font);
  font-size: 13px;
  text-align: left;
}

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

  .pf-shell-placeholder {
    display: none;
  }
}

.pf-shell-aside {
  background: #fff;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.pf-shell-brand {
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #292524 0%, #1c1917 100%);
  color: #fff;
}

.pf-shell-brand strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pf-shell-brand span {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.625rem;
  font-weight: 500;
  opacity: 0.85;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.pf-shell-list {
  padding: 0.35rem 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.pf-shell-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  color: #374151;
  border-left: 3px solid transparent;
}

.pf-shell-item--on {
  background: #fff7ed;
  border-left-color: #ea580c;
  color: #c2410c;
  font-weight: 600;
}

.pf-shell-ic {
  width: 1.25rem;
  text-align: center;
  opacity: 0.85;
  font-size: 0.9rem;
}

.pf-shell-placeholder {
  padding: 1.25rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8125rem;
}

.func-ui-gap {
  margin-bottom: 2.5rem;
}

.func-more-previews-title {
  margin: 2.75rem 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.func-more-previews-desc {
  margin: 0 0 1.35rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  max-width: 54ch;
  line-height: 1.5;
}

.pf-mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.6875rem;
}

.pf-mock-table th {
  text-align: left;
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid var(--pf-border);
  color: var(--pf-muted);
  font-weight: 600;
  background: #f9fafb;
}

.pf-mock-table td {
  padding: 0.45rem 0.5rem;
  border-bottom: 1px solid #f3f4f6;
  color: var(--pf-ink);
}

.pf-mock-date {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.625rem;
  color: var(--pf-muted);
}

.pf-mock-date input {
  margin-top: 0.15rem;
  padding: 0.2rem 0.35rem;
  border: 1px solid var(--pf-border);
  border-radius: 6px;
  font-size: 0.6875rem;
  max-width: 7.2rem;
}

.pf-entrega-card {
  border: 1px solid var(--pf-border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
}

.pf-entrega-card-top {
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--pf-border);
}

.pf-entrega-card-body {
  padding: 0.5rem 0.65rem;
  font-size: 0.6875rem;
  color: var(--pf-muted);
}

.pf-entrega-card-foot {
  padding: 0.5rem 0.65rem;
  border-top: 1px solid var(--pf-border);
}

.pf-entrega-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.45rem;
  border-radius: 10px;
  border: none;
  background: var(--pf-primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
}

.pf-public-bar {
  background: #fff;
  border-bottom: 1px solid var(--pf-border);
  padding: 0.5rem 0.65rem;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--pf-ink);
}

.pf-public-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.65rem;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.75rem;
}

.pf-public-item button {
  font-size: 0.625rem;
  padding: 0.2rem 0.45rem;
  border-radius: 8px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: var(--pf-primary);
  font-weight: 600;
}

/* —— Home (index) v2 —— */
.page-home .hero-highlight {
  color: var(--color-primary);
}

.page-home .hero-home {
  padding-bottom: 2.5rem;
}

.page-home .hero-lead {
  max-width: 42ch;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.hero-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb), 0.12);
  color: var(--color-accent);
  font-size: 0.65rem;
  font-weight: 800;
}

.pf-chart-title {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pf-muted, #6b7280);
}

.btn-wa .btn-wa-icon {
  color: #25d366;
  flex-shrink: 0;
}

.btn-on-dark.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-on-dark.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.feature-strip {
  background: var(--color-white);
  border-block: 1px solid var(--color-border);
  padding: 0.85rem 0;
}

.feature-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.feature-strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d6d3d1;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.section-head--center .section-desc {
  margin-inline: auto;
}

.compare-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.compare-card {
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.65rem;
  border: 1px solid var(--color-border);
}

.compare-card--bad {
  background: #fff;
}

.compare-card--good {
  background: linear-gradient(145deg, #fff7ed 0%, #fff 55%);
  border-color: #fed7aa;
  box-shadow: 0 12px 40px rgba(var(--color-primary-rgb), 0.08);
}

.compare-label {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-card--bad .compare-label {
  color: #b91c1c;
}

.compare-card--good .compare-label {
  color: var(--color-primary);
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.compare-x,
.compare-check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.compare-x {
  background: #fee2e2;
  color: #dc2626;
}

.compare-check {
  background: #d1fae5;
  color: #059669;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.compare-table thead th {
  background: #f8fafc;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table th:nth-child(2),
.compare-table td:nth-child(2) {
  color: var(--color-text-muted);
}

.compare-table th:nth-child(3),
.compare-table td:nth-child(3) {
  background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
}

.compare-table .cell-yes {
  color: #047857;
  font-weight: 600;
}

.compare-table .cell-no {
  color: #b91c1c;
  font-weight: 600;
}

.compare-table .cell-partial {
  color: #b45309;
  font-weight: 600;
}

.steps-home {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .steps-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-home {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 800;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.step-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
}

.benefit-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.benefit-icon--orange { background: #fff7ed; }
.benefit-icon--green { background: #ecfdf5; }
.benefit-icon--blue { background: #eff6ff; }
.benefit-icon--violet { background: #f5f3ff; }
.benefit-icon--amber { background: #fffbeb; }
.benefit-icon--teal { background: #f0fdfa; }

.benefit-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
}

.benefit-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.vision-mockups {
  position: relative;
  min-height: 280px;
  margin: 2rem auto 1.5rem;
  max-width: 720px;
}

.vision-mock {
  position: absolute;
  width: min(92%, 340px);
  transition: transform 0.2s ease;
}

.vision-mock--back {
  left: 0;
  top: 12%;
  transform: rotate(-4deg) scale(0.92);
  opacity: 0.92;
  z-index: 1;
}

.vision-mock--mid {
  left: 50%;
  top: 0;
  transform: translateX(-50%) scale(0.96);
  z-index: 2;
}

.vision-mock--front {
  right: 0;
  bottom: 0;
  transform: rotate(3deg) scale(0.94);
  z-index: 3;
}

@media (max-width: 700px) {
  .vision-mockups {
    min-height: 520px;
    max-width: 100%;
  }

  .vision-mock {
    position: relative;
    width: 100%;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin-bottom: 1rem;
  }
}

.vision-placeholder {
  padding: 1.25rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  background: #f9fafb;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vision-placeholder--orders {
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  text-align: left;
}

.vision-placeholder--orders strong {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text);
  margin-top: 0.15rem;
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.module-tags span {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.vision-cta-wrap {
  text-align: center;
  margin: 0;
}

.diff-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
}

.diff-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.diff-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: #eff6ff;
  color: #2563eb;
  margin-bottom: 0.85rem;
}

.diff-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
}

.diff-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #fb923c, var(--color-primary));
  margin-bottom: 1rem;
}

.testimonial-avatar--2 {
  background: linear-gradient(135deg, #34d399, #059669);
}

.testimonial-avatar--3 {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
  font-style: normal;
}

.testimonial-card cite {
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--color-text-muted);
}

.faq-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 1rem 1.75rem 1rem 0;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-body {
  padding: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.cta-final {
  background: linear-gradient(145deg, #1c1917 0%, #292524 48%, #1c1917 100%);
  color: #fafaf9;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 280px at 85% 50%, rgba(var(--color-primary-rgb), 0.22), transparent 60%),
    radial-gradient(400px 200px at 10% 80%, rgba(var(--color-accent-rgb), 0.12), transparent 55%);
  pointer-events: none;
}

.cta-final-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .cta-final-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.cta-final-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.cta-final-copy p {
  margin: 0 0 1.5rem;
  color: #a8a29e;
  max-width: 38ch;
}

.cta-final-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  min-height: 200px;
}

.cta-phone {
  width: 140px;
  padding: 0.5rem;
  border-radius: 1.25rem;
  background: #44403c;
  border: 3px solid #57534e;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.cta-phone-screen {
  background: #fafaf9;
  border-radius: 0.85rem;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--color-text);
}

.cta-phone-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-primary);
}

.cta-phone-order {
  font-size: 0.7rem;
  font-weight: 600;
}

.cta-phone-total {
  font-size: 1rem;
  font-weight: 800;
}

.cta-printer {
  width: 100px;
  height: 88px;
  background: #e7e5e4;
  border-radius: 8px 8px 4px 4px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.cta-printer::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 8px;
  right: 8px;
  height: 14px;
  background: #d6d3d1;
  border-radius: 4px 4px 0 0;
}

.cta-receipt {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 64px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-receipt::after {
  content: "";
  display: block;
  margin: 10px 8px;
  height: 4px;
  background: #e7e5e4;
  box-shadow: 0 8px 0 #e7e5e4, 0 16px 0 #e7e5e4, 0 24px 0 #fed7aa;
}
