/* ============================================================
   PedeFi — Landing (Hero conversão · identidade oficial)
   Cores: #FF5A3D · #FF1E56 · #0D1117 · #6B7280 · #F2F4F7
   ============================================================ */

body.landing-page {
  --pedefi-brand-orange: #ff5a3d;
  --pedefi-brand-red: #ff1e56;
  --pedefi-brand-dark: #0d1117;
  --pedefi-brand-muted: #6b7280;
  --pedefi-brand-light: #f2f4f7;
  --pedefi-brand-gradient: linear-gradient(135deg, #ff5a3d 0%, #ff1e56 100%);
  --pedefi-brand-gradient-soft: linear-gradient(135deg, rgba(255, 90, 61, 0.16), rgba(255, 30, 86, 0.12));
  --landing-header-h: 72px;
  --landing-radius: 16px;
  --landing-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--pedefi-brand-light);
  background:
    radial-gradient(ellipse 70% 55% at 8% -5%, rgba(255, 90, 61, 0.2), transparent 58%),
    radial-gradient(ellipse 60% 45% at 92% 0%, rgba(255, 30, 86, 0.16), transparent 52%),
    linear-gradient(180deg, #0d1117 0%, #101620 38%, #0d1117 100%) !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--landing-header-h) + 16px);
}

.landing-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--pedefi-brand-dark);
  color: var(--pedefi-brand-light);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(242, 244, 247, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: top 0.15s ease;
}

.landing-skip-link:focus {
  top: 12px;
  outline: none;
}

.landing-page a:focus-visible,
.landing-page button:focus-visible {
  outline: 2px solid var(--pedefi-brand-orange);
  outline-offset: 3px;
}

.landing-page * {
  box-sizing: border-box;
}

/* ---- Header ---- */

.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--landing-header-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 40px);
  background: rgba(13, 17, 23, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(242, 244, 247, 0.07);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.landing-header.is-scrolled {
  background: rgba(13, 17, 23, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.landing-header-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: var(--landing-header-h);
}

.landing-brand {
  grid-column: 1;
}

.landing-nav {
  grid-column: 2;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 22px);
}

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

.landing-btn-header-cta {
  background: var(--pedefi-brand-gradient);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 30, 86, 0.28);
}

.landing-btn-header-cta:hover {
  box-shadow: 0 14px 36px rgba(255, 30, 86, 0.38);
}

.landing-btn-header-cta--mobile {
  min-height: 38px;
  padding: 0 12px;
  font-size: 12px;
}

.landing-btn.landing-btn-header-cta.landing-btn-header-cta--mobile {
  display: none;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.landing-brand img {
  height: 36px;
  width: auto;
  display: block;
}

.landing-nav {
  display: flex;
  align-items: center;
}

.landing-nav a {
  color: rgba(242, 244, 247, 0.78);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
  letter-spacing: -0.01em;
}

.landing-nav a:hover {
  color: var(--pedefi-brand-orange);
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

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

.landing-btn-ghost {
  background: transparent;
  color: var(--pedefi-brand-light);
}

.landing-btn-ghost:hover {
  background: rgba(242, 244, 247, 0.06);
}

.landing-btn-cta {
  background: var(--pedefi-brand-red);
  color: #fff;
  box-shadow: 0 12px 32px rgba(255, 30, 86, 0.35);
}

.landing-btn-cta:hover {
  background: #e0184c;
  box-shadow: 0 16px 40px rgba(255, 30, 86, 0.45);
}

.landing-btn-cta--sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.landing-btn-cta--block {
  width: 100%;
  margin-top: 8px;
}

.landing-btn-outline {
  background: rgba(242, 244, 247, 0.04);
  color: var(--pedefi-brand-light);
  border-color: rgba(242, 244, 247, 0.16);
}

.landing-btn-outline:hover {
  border-color: rgba(242, 244, 247, 0.28);
  background: rgba(242, 244, 247, 0.08);
}

.landing-btn-play {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(242, 244, 247, 0.12);
}

.landing-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 244, 247, 0.14);
  border-radius: 10px;
  background: rgba(242, 244, 247, 0.04);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.landing-menu-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--pedefi-brand-light);
}

/* ---- Hero ---- */

.landing-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--landing-header-h) + 40px) clamp(16px, 4vw, 40px) 64px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.landing-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 38%, rgba(255, 30, 86, 0.16), transparent 44%),
    radial-gradient(circle at 22% 68%, rgba(255, 90, 61, 0.12), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(255, 30, 86, 0.08), transparent 50%);
}

.landing-hero-grid {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.05fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  overflow: visible;
}

.landing-hero-copy {
  max-width: 560px;
}

.landing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 9px 18px 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 90, 61, 0.18), rgba(255, 30, 86, 0.14));
  border: 1px solid rgba(255, 30, 86, 0.38);
  box-shadow:
    0 0 0 1px rgba(255, 30, 86, 0.1) inset,
    0 8px 28px rgba(255, 30, 86, 0.18);
  color: #ffd0c6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-hero-badge-icon {
  font-size: 14px;
  line-height: 1;
}

.landing-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2.35rem, 5.2vw, 3.65rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.landing-hero h1 > span span,
.landing-hero h1 span span {
  background: var(--pedefi-brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-hero-subtitle {
  margin: 0 0 28px;
  font-size: clamp(1.02rem, 1.85vw, 1.14rem);
  line-height: 1.68;
  color: rgba(242, 244, 247, 0.88);
  max-width: 54ch;
}

.landing-hero-subtitle strong {
  color: #fff;
  font-weight: 700;
}

.landing-hero-subtitle--full {
  color: var(--pedefi-brand-muted);
}

.landing-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.landing-hero-founder-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 480px;
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 30, 86, 0.08);
  border: 1px solid rgba(255, 90, 61, 0.28);
  box-shadow: 0 8px 28px rgba(255, 30, 86, 0.1);
}

.landing-hero-founder-note svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--pedefi-brand-orange);
  stroke-width: 2.25;
}

.landing-hero-founder-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(242, 244, 247, 0.88);
}

.landing-hero-founder-note strong {
  color: #fff;
  font-weight: 700;
}

.landing-hero-ctas .landing-btn-cta {
  min-height: 54px;
  padding: 0 26px;
  font-size: 15px;
  letter-spacing: -0.01em;
  box-shadow:
    0 14px 36px rgba(255, 30, 86, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 48px rgba(255, 30, 86, 0.15);
}

.landing-hero-ctas .landing-btn-cta:hover {
  box-shadow:
    0 18px 44px rgba(255, 30, 86, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 56px rgba(255, 30, 86, 0.2);
}

.landing-hero-ctas .landing-btn-outline {
  min-height: 54px;
  padding: 0 22px;
  font-size: 15px;
}

.landing-hero-counter {
  margin: 0 0 20px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(13, 17, 23, 0.72);
  border: 1px solid rgba(255, 90, 61, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 30, 86, 0.08) inset,
    0 12px 40px rgba(255, 30, 86, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.landing-hero-counter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.landing-hero-counter-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffb4a8;
}

.landing-hero-counter-ratio {
  font-size: 12px;
  font-weight: 600;
  color: rgba(242, 244, 247, 0.72);
}

.landing-hero-counter-ratio strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--pedefi-brand-light);
}

.landing-hero-counter-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(242, 244, 247, 0.1);
  overflow: hidden;
  margin-bottom: 10px;
}

.landing-hero-counter-bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--pedefi-brand-gradient);
  box-shadow: 0 0 18px rgba(255, 30, 86, 0.45);
  transition: width 0.45s ease;
}

.landing-hero-counter-remaining {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--pedefi-brand-muted);
}

.landing-hero-counter-remaining strong {
  color: var(--pedefi-brand-orange);
  font-weight: 800;
}

.landing-hero-counter-fallback {
  margin: 0 0 20px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(242, 244, 247, 0.04);
  border: 1px solid rgba(242, 244, 247, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: var(--pedefi-brand-muted);
  text-align: center;
}

.landing-hero-copy.is-founder-full .landing-hero-ctas {
  margin-bottom: 24px;
}

.landing-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(242, 244, 247, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.landing-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.landing-hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--pedefi-brand-orange);
  stroke-width: 2.5;
}

/* ---- Hero visual / Dashboard mockup ---- */

.landing-hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 28px 20px 28px 28px;
  overflow: visible;
  isolation: isolate;
}

.landing-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 0 8% 4%;
  border-radius: 24px;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 90, 61, 0.14), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.landing-dashboard {
  position: relative;
  z-index: 2;
  width: min(100%, 440px);
  border-radius: 14px;
  overflow: hidden;
  background: #161b24;
  border: 1px solid rgba(242, 244, 247, 0.16);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 60px rgba(255, 30, 86, 0.1);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.landing-hero-visual:hover .landing-dashboard {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
}

.landing-dashboard-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(13, 17, 23, 0.85);
  border-bottom: 1px solid rgba(242, 244, 247, 0.06);
}

.landing-dashboard-chrome > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(242, 244, 247, 0.16);
}

.landing-dashboard-chrome > span:first-child { background: #ff5f57; }
.landing-dashboard-chrome > span:nth-child(2) { background: #febc2e; }
.landing-dashboard-chrome > span:nth-child(3) { background: #28c840; }

.landing-dashboard-url {
  flex: 1;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(242, 244, 247, 0.05);
  font-size: 10px;
  font-weight: 600;
  color: var(--pedefi-brand-muted);
  text-align: center;
}

.landing-dashboard-body {
  display: flex;
  min-height: 320px;
}

.landing-dashboard-sidebar {
  width: 44px;
  padding: 12px 8px;
  background: rgba(13, 17, 23, 0.6);
  border-right: 1px solid rgba(242, 244, 247, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.landing-dashboard-logo-dot {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--pedefi-brand-gradient);
  margin-bottom: 4px;
}

.landing-dashboard-sidebar span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(242, 244, 247, 0.06);
}

.landing-dashboard-sidebar span.is-active {
  background: rgba(255, 90, 61, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 90, 61, 0.35);
}

.landing-dashboard-main {
  flex: 1;
  padding: 14px;
  min-width: 0;
}

.landing-dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.landing-dashboard-head small {
  display: block;
  font-size: 10px;
  color: var(--pedefi-brand-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.landing-dashboard-head strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--pedefi-brand-light);
}

.landing-dashboard-live {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: var(--pedefi-brand-red);
  padding: 4px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

.landing-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.landing-dashboard-stat {
  padding: 10px;
  border-radius: 10px;
  background: rgba(13, 17, 23, 0.55);
  border: 1px solid rgba(242, 244, 247, 0.07);
}

.landing-dashboard-stat small {
  display: block;
  font-size: 9px;
  color: var(--pedefi-brand-muted);
  font-weight: 600;
  margin-bottom: 3px;
}

.landing-dashboard-stat b {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--pedefi-brand-light);
  line-height: 1.2;
}

.landing-dashboard-stat em {
  display: block;
  margin-top: 3px;
  font-style: normal;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 90, 61, 0.9);
}

.landing-dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
  padding: 8px 10px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: rgba(13, 17, 23, 0.45);
  border: 1px solid rgba(242, 244, 247, 0.06);
}

.landing-dashboard-chart-bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 2px 2px;
  background: rgba(242, 244, 247, 0.12);
}

.landing-dashboard-chart-bar.is-highlight {
  background: var(--pedefi-brand-gradient);
}

.landing-dashboard-orders-head {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  color: var(--pedefi-brand-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  padding: 0 2px;
}

.landing-dashboard-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(242, 244, 247, 0.03);
  border: 1px solid rgba(242, 244, 247, 0.06);
  margin-bottom: 6px;
}

.landing-dashboard-order:last-child {
  margin-bottom: 0;
}

.landing-dashboard-order b {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(242, 244, 247, 0.92);
  margin-bottom: 2px;
}

.landing-dashboard-order small {
  font-size: 9px;
  color: var(--pedefi-brand-muted);
  font-weight: 500;
}

.landing-status {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 7px;
  border-radius: 999px;
}

.landing-status--new {
  color: #fff;
  background: var(--pedefi-brand-red);
}

.landing-status--prep {
  color: #fff;
  background: var(--pedefi-brand-orange);
}

.landing-status--ready {
  color: #0d1117;
  background: #34d399;
}

/* Phone mockup */

.landing-mockup-phone {
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: 4;
  width: 168px;
  padding: 10px;
  border-radius: 28px;
  background: #0a0e14;
  border: 2px solid rgba(242, 244, 247, 0.14);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  transform: rotate(5deg);
  transition: transform 0.35s ease;
}

.landing-hero-visual:hover .landing-mockup-phone {
  transform: rotate(3deg) translateY(-4px);
}

.landing-mockup-phone-notch {
  width: 56px;
  height: 5px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: rgba(242, 244, 247, 0.2);
}

.landing-mockup-phone-screen {
  border-radius: 18px;
  overflow: hidden;
  background: #f8fafc;
  padding: 10px;
}

.landing-mockup-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.landing-mockup-phone-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
}

.landing-mockup-phone-top small {
  font-size: 8px;
  font-weight: 700;
  color: var(--pedefi-brand-muted);
}

.landing-mockup-phone-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: var(--pedefi-brand-gradient);
  color: #fff;
}

.landing-mockup-phone-banner strong {
  font-size: 10px;
  font-weight: 800;
}

.landing-mockup-phone-banner span {
  font-size: 8px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.landing-mockup-phone-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  margin-bottom: 6px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.landing-mockup-phone-card:last-child {
  margin-bottom: 0;
}

.landing-mockup-phone-thumb {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffb088, #ff5a3d);
  flex-shrink: 0;
}

.landing-mockup-phone-thumb--alt {
  background: linear-gradient(135deg, #ff8a6a, #ff1e56);
}

.landing-mockup-phone-card b {
  display: block;
  font-size: 9px;
  font-weight: 800;
  color: var(--pedefi-brand-dark);
  margin-bottom: 2px;
}

.landing-mockup-phone-card span {
  font-size: 8px;
  font-weight: 700;
  color: var(--pedefi-brand-orange);
}

.landing-mockup-phone-card em {
  margin-left: auto;
  font-style: normal;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--pedefi-brand-red);
}

/* Floating badges */

.landing-float-badge {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.94);
  border: 1px solid rgba(242, 244, 247, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  font-size: 11px;
  font-weight: 700;
  color: var(--pedefi-brand-light);
  white-space: nowrap;
  animation: landing-float 5s ease-in-out infinite;
  max-width: calc(100% - 16px);
}

.landing-float-badge svg {
  width: 14px;
  height: 14px;
  color: var(--pedefi-brand-orange);
}

.landing-float-badge--founder,
.landing-float-badge--future {
  background: linear-gradient(135deg, rgba(255, 90, 61, 0.92), rgba(255, 30, 86, 0.92));
  color: #fff;
  border: none;
  font-weight: 800;
}

.landing-float-badge--price {
  border-color: rgba(255, 90, 61, 0.45);
  background: rgba(13, 17, 23, 0.97);
  box-shadow:
    0 12px 32px rgba(255, 90, 61, 0.22),
    0 0 0 1px rgba(255, 90, 61, 0.15) inset;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.landing-float-badge--founder { top: 6%; left: 6%; animation-delay: 0.1s; }
.landing-float-badge--price { top: 10%; right: 4%; animation-delay: 0.5s; }
.landing-float-badge--future { top: 26%; left: 4%; animation-delay: 0.9s; }
.landing-float-badge--order { bottom: 30%; left: 6%; animation-delay: 0.3s; }
.landing-float-badge--menu { bottom: 12%; right: 8%; animation-delay: 0.7s; }

@keyframes landing-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ---- Pain section (Seção 2) ---- */

.landing-pain {
  position: relative;
  padding: 104px clamp(20px, 4vw, 40px) 112px;
  background: var(--pedefi-brand-light);
  color: var(--pedefi-brand-dark);
  scroll-margin-top: calc(var(--landing-header-h) + 16px);
}

.landing-pain-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.landing-pain-header {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.landing-pain-header h2 {
  margin: 0 0 20px;
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--pedefi-brand-dark);
}

.landing-pain-header h2 span {
  background: var(--pedefi-brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-pain-subtitle {
  margin: 0 0 10px;
  font-size: clamp(1.02rem, 1.85vw, 1.125rem);
  line-height: 1.7;
  color: var(--pedefi-brand-muted);
}

.landing-pain-subtitle--accent {
  margin-bottom: 0;
  font-weight: 600;
  color: rgba(13, 17, 23, 0.72);
}

.landing-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 72px;
}

.landing-pain-card {
  position: relative;
  padding: 30px 28px 30px 32px;
  border-radius: var(--landing-radius);
  background: #fff;
  border: 1px solid rgba(255, 30, 86, 0.1);
  box-shadow:
    0 2px 8px rgba(13, 17, 23, 0.04),
    0 12px 32px rgba(13, 17, 23, 0.05);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.landing-pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--pedefi-brand-gradient);
  opacity: 0.85;
}

.landing-pain-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 61, 0.28);
  box-shadow:
    0 8px 24px rgba(255, 30, 86, 0.1),
    0 20px 48px rgba(13, 17, 23, 0.08);
}

.landing-pain-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 30, 86, 0.1), rgba(255, 90, 61, 0.08));
  border: 1px solid rgba(255, 30, 86, 0.16);
  color: var(--pedefi-brand-red);
}

.landing-pain-card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.landing-pain-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.32;
  color: var(--pedefi-brand-dark);
}

.landing-pain-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.68;
  color: var(--pedefi-brand-muted);
}

.landing-pain-closing {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.landing-pain-closing-title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--pedefi-brand-dark);
}

.landing-pain-closing-lead {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: var(--pedefi-brand-dark);
}

.landing-pain-closing-lead span {
  background: var(--pedefi-brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-pain-closing-text {
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--pedefi-brand-muted);
}

.landing-pain-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 61, 0.25);
  background: rgba(255, 90, 61, 0.08);
  color: var(--pedefi-brand-orange);
  text-decoration: none;
  animation: landing-pain-bounce 2.4s ease-in-out infinite;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.landing-pain-arrow:hover {
  background: rgba(255, 90, 61, 0.14);
  border-color: rgba(255, 90, 61, 0.4);
}

.landing-pain-arrow svg {
  width: 22px;
  height: 22px;
}

@keyframes landing-pain-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Scroll reveal */

[data-pain-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ---- Benefits section (Seção 3) ---- */

.landing-benefits {
  position: relative;
  padding: 104px clamp(20px, 4vw, 40px) 112px;
  background: #fff;
  color: var(--pedefi-brand-dark);
  scroll-margin-top: calc(var(--landing-header-h) + 16px);
}

.landing-benefits-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.landing-benefits-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.landing-benefits-header h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--pedefi-brand-dark);
}

.landing-benefits-subtitle {
  margin: 0;
  font-size: clamp(1.02rem, 1.85vw, 1.125rem);
  line-height: 1.7;
  color: var(--pedefi-brand-muted);
}

.landing-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 72px;
}

.landing-benefits-card {
  position: relative;
  padding: 28px 24px 30px;
  border-radius: var(--landing-radius);
  background: var(--pedefi-brand-light);
  border: 1px solid rgba(13, 17, 23, 0.06);
  box-shadow: 0 4px 20px rgba(13, 17, 23, 0.04);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.landing-benefits-card:hover {
  transform: translateY(-6px);
  background: #fff;
  border-color: rgba(255, 90, 61, 0.2);
  box-shadow:
    0 12px 40px rgba(255, 90, 61, 0.1),
    0 24px 56px rgba(13, 17, 23, 0.07);
}

.landing-benefits-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--pedefi-brand-gradient-soft);
  border: 1px solid rgba(255, 90, 61, 0.14);
  color: var(--pedefi-brand-orange);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.landing-benefits-card:hover .landing-benefits-card-icon {
  background: var(--pedefi-brand-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 30, 86, 0.28);
}

.landing-benefits-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.landing-benefits-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--pedefi-brand-dark);
}

.landing-benefits-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--pedefi-brand-muted);
}

.landing-benefits-closing {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.landing-benefits-closing-title {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: var(--pedefi-brand-dark);
}

.landing-benefits-closing-text {
  margin: 0 0 32px;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: var(--pedefi-brand-muted);
}

.landing-benefits-cta {
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
}

[data-benefit-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ---- Showcase section (Seção 4) ---- */

.landing-showcase {
  position: relative;
  padding: 112px clamp(20px, 4vw, 40px) 104px;
  background:
    radial-gradient(ellipse 80% 50% at 15% 0%, rgba(255, 90, 61, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 10%, rgba(255, 30, 86, 0.1), transparent 50%),
    linear-gradient(180deg, #0a0e14 0%, #0d1117 45%, #101620 100%);
  color: var(--pedefi-brand-light);
  scroll-margin-top: calc(var(--landing-header-h) + 16px);
  overflow: hidden;
}

.landing-showcase-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 40%, rgba(255, 30, 86, 0.06), transparent 55%);
}

.landing-showcase-inner {
  position: relative;
  z-index: 1;
  width: min(1400px, 100%);
  margin: 0 auto;
}

.landing-showcase-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.landing-showcase-header h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--pedefi-brand-light);
}

.landing-showcase-subtitle {
  margin: 0;
  font-size: clamp(1.02rem, 1.85vw, 1.125rem);
  line-height: 1.7;
  color: var(--pedefi-brand-muted);
}

.landing-showcase-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  margin-bottom: 72px;
}

.landing-showcase-visual {
  position: relative;
  min-height: 420px;
  padding: 24px 16px 24px 24px;
  overflow: visible;
}

.landing-showcase-devices {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
}

.landing-showcase-laptop {
  position: relative;
  z-index: 2;
  width: min(100%, 640px);
  border-radius: 16px 16px 12px 12px;
  background: #161b24;
  border: 1px solid rgba(242, 244, 247, 0.1);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.landing-showcase-devices:hover .landing-showcase-laptop {
  transform: perspective(1400px) rotateY(-1.5deg) rotateX(1deg) translateY(-6px);
  box-shadow:
    0 48px 120px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(255, 30, 86, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.landing-showcase-phone {
  position: absolute;
  right: 0;
  bottom: 24px;
  z-index: 4;
  width: 156px;
  padding: 10px;
  border-radius: 26px;
  background: #0a0e14;
  border: 2px solid rgba(242, 244, 247, 0.14);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
  transform: rotate(5deg);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.landing-showcase-devices:hover .landing-showcase-phone {
  transform: rotate(3deg) translateY(-4px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.55);
}

.landing-showcase-laptop-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(242, 244, 247, 0.06);
}

.landing-showcase-laptop-chrome > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.landing-showcase-laptop-chrome > span:first-child { background: #ff5f57; }
.landing-showcase-laptop-chrome > span:nth-child(2) { background: #febc2e; }
.landing-showcase-laptop-chrome > span:nth-child(3) { background: #28c840; }

.landing-showcase-laptop-url {
  flex: 1;
  margin-left: 8px;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(242, 244, 247, 0.05);
  font-size: 11px;
  font-weight: 600;
  color: var(--pedefi-brand-muted);
  text-align: center;
}

.landing-showcase-laptop-screen {
  position: relative;
  min-height: 340px;
  padding: 14px;
  background: #0d1117;
}

.landing-showcase-screen {
  position: absolute;
  inset: 14px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.985);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease;
  pointer-events: none;
}

.landing-showcase-screen.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.landing-showcase-screen.has-shot .landing-showcase-ui {
  display: none;
}

.landing-showcase-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(242, 244, 247, 0.08);
}

.landing-showcase-phone-notch {
  width: 52px;
  height: 5px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: rgba(242, 244, 247, 0.2);
}

.landing-showcase-phone-screen {
  border-radius: 18px;
  overflow: hidden;
  background: #f8fafc;
  min-height: 220px;
}

.landing-showcase-phone-screen.has-shot .landing-showcase-ui {
  display: none;
}

.landing-showcase-ui {
  padding: 12px;
  border-radius: 10px;
  background: rgba(13, 17, 23, 0.92);
  border: 1px solid rgba(242, 244, 247, 0.08);
  min-height: 300px;
}

.landing-showcase-ui--cardapio {
  background: #f8fafc;
  border: none;
  min-height: 220px;
  padding: 10px;
}

.landing-showcase-ui-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.landing-showcase-ui-head strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--pedefi-brand-light);
}

.landing-showcase-ui-head span {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: var(--pedefi-brand-red);
  padding: 4px 8px;
  border-radius: 999px;
}

.landing-showcase-ui-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: rgba(242, 244, 247, 0.04);
  border: 1px solid rgba(242, 244, 247, 0.06);
}

.landing-showcase-ui-row.is-highlight {
  border-color: rgba(255, 90, 61, 0.28);
  background: rgba(255, 90, 61, 0.08);
}

.landing-showcase-ui-row b {
  font-size: 11px;
  font-weight: 700;
  color: rgba(242, 244, 247, 0.9);
}

.landing-showcase-ui-row em {
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  background: var(--pedefi-brand-gradient);
  padding: 4px 7px;
  border-radius: 999px;
}

.landing-showcase-ui-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: rgba(242, 244, 247, 0.04);
  border: 1px solid rgba(242, 244, 247, 0.06);
}

.landing-showcase-ui-product > span {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--pedefi-brand-gradient);
  flex-shrink: 0;
}

.landing-showcase-ui-product b {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(242, 244, 247, 0.92);
  margin-bottom: 2px;
}

.landing-showcase-ui-product small {
  font-size: 10px;
  font-weight: 700;
  color: var(--pedefi-brand-orange);
}

.landing-showcase-ui--cardapio .landing-showcase-ui-product b {
  color: var(--pedefi-brand-dark);
}

.landing-showcase-ui-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: var(--pedefi-brand-gradient);
  color: #fff;
}

.landing-showcase-ui-banner strong {
  font-size: 10px;
  font-weight: 800;
}

.landing-showcase-ui-banner span {
  font-size: 8px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.landing-showcase-ui-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.landing-showcase-ui-stats div {
  padding: 10px;
  border-radius: 10px;
  background: rgba(242, 244, 247, 0.04);
  border: 1px solid rgba(242, 244, 247, 0.06);
}

.landing-showcase-ui-stats small {
  display: block;
  font-size: 9px;
  color: var(--pedefi-brand-muted);
  font-weight: 600;
  margin-bottom: 3px;
}

.landing-showcase-ui-stats b {
  font-size: 14px;
  font-weight: 800;
  color: var(--pedefi-brand-light);
}

.landing-showcase-ui-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(242, 244, 247, 0.03);
  border: 1px solid rgba(242, 244, 247, 0.06);
}

.landing-showcase-ui-chart span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 2px 2px;
  background: rgba(242, 244, 247, 0.12);
}

.landing-showcase-ui-chart span.is-highlight {
  background: var(--pedefi-brand-gradient);
}

.landing-showcase-float {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.94);
  border: 1px solid rgba(242, 244, 247, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  font-size: 11px;
  font-weight: 700;
  color: var(--pedefi-brand-light);
  white-space: nowrap;
  animation: landing-float 5s ease-in-out infinite;
}

.landing-showcase-float svg {
  width: 14px;
  height: 14px;
  color: var(--pedefi-brand-orange);
}

.landing-showcase-float--live {
  background: var(--pedefi-brand-gradient);
  color: #fff;
  border: none;
}

.landing-showcase-float--live svg { color: #fff; }

.landing-showcase-float--order { top: 4%; left: 4%; }
.landing-showcase-float--whatsapp { top: 22%; left: 2%; animation-delay: 0.5s; }
.landing-showcase-float--qr { bottom: 32%; left: 6%; animation-delay: 1s; }
.landing-showcase-float--menu { top: 8%; right: 4%; animation-delay: 0.3s; }
.landing-showcase-float--live { bottom: 8%; right: 6%; animation-delay: 0.7s; }

.landing-showcase-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.landing-showcase-step {
  position: relative;
  width: 100%;
  padding: 22px 22px 22px 24px;
  border-radius: var(--landing-radius);
  background: rgba(242, 244, 247, 0.03);
  border: 1px solid rgba(242, 244, 247, 0.08);
  text-align: left;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.landing-showcase-step::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: transparent;
  transition: background 0.25s ease;
}

.landing-showcase-step:hover {
  background: rgba(242, 244, 247, 0.05);
  border-color: rgba(255, 90, 61, 0.2);
  transform: translateX(4px);
}

.landing-showcase-step.is-active {
  background: rgba(255, 90, 61, 0.08);
  border-color: rgba(255, 90, 61, 0.32);
  box-shadow: 0 12px 40px rgba(255, 30, 86, 0.12);
}

.landing-showcase-step.is-active::before {
  background: var(--pedefi-brand-gradient);
}

.landing-showcase-step-num {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pedefi-brand-orange);
}

.landing-showcase-step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--pedefi-brand-light);
}

.landing-showcase-step p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--pedefi-brand-muted);
}

.landing-showcase-closing {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.landing-showcase-closing-text {
  margin: 0 0 28px;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: rgba(242, 244, 247, 0.9);
}

.landing-showcase-cta {
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
}

/* ---- Pricing section (Seção 5) ---- */

.landing-pricing {
  position: relative;
  padding: 112px clamp(20px, 4vw, 40px) 120px;
  background: #fff;
  color: var(--pedefi-brand-dark);
  scroll-margin-top: calc(var(--landing-header-h) + 16px);
}

.landing-pricing-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.landing-pricing-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.landing-pricing-header h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--pedefi-brand-dark);
}

.landing-pricing-subtitle {
  margin: 0 0 8px;
  font-size: clamp(1.05rem, 1.9vw, 1.15rem);
  line-height: 1.65;
  color: var(--pedefi-brand-muted);
}

.landing-pricing-subtitle strong {
  color: var(--pedefi-brand-dark);
  font-weight: 700;
}

.landing-pricing-subtitle--muted {
  margin-bottom: 0;
  font-size: 1rem;
}

.landing-pricing-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 36px 36px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(13, 17, 23, 0.08);
  box-shadow:
    0 4px 24px rgba(13, 17, 23, 0.04),
    0 24px 80px rgba(13, 17, 23, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 32px rgba(255, 30, 86, 0.08),
    0 32px 96px rgba(13, 17, 23, 0.1);
}

.landing-pricing-card-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 120%;
  height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 90, 61, 0.12), transparent 70%);
  pointer-events: none;
}

.landing-pricing-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--pedefi-brand-gradient-soft);
  border: 1px solid rgba(255, 90, 61, 0.28);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pedefi-brand-red);
}

.landing-pricing-price-block {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(13, 17, 23, 0.08);
}

.landing-pricing-value {
  margin: 0 0 16px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--pedefi-brand-muted);
  font-style: italic;
}

.landing-pricing-brand {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--pedefi-brand-dark);
}

.landing-pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.landing-pricing-currency {
  margin-top: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pedefi-brand-muted);
}

.landing-pricing-amount {
  font-size: clamp(3rem, 8vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--pedefi-brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-pricing-period {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pedefi-brand-muted);
}

.landing-pricing-trial {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(13, 17, 23, 0.72);
}

.landing-pricing-features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.landing-pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(13, 17, 23, 0.78);
}

.landing-pricing-features svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--pedefi-brand-orange);
  stroke-width: 2.5;
}

.landing-pricing-founder {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  padding: 22px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 90, 61, 0.06), rgba(255, 30, 86, 0.05));
  border: 1px solid rgba(255, 90, 61, 0.2);
}

.landing-pricing-founder h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--pedefi-brand-dark);
}

.landing-pricing-founder p {
  margin: 0 0 10px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--pedefi-brand-muted);
}

.landing-pricing-founder p:last-child {
  margin-bottom: 0;
}

.landing-pricing-founder strong {
  color: var(--pedefi-brand-dark);
  font-weight: 700;
}

.landing-pricing-founder-note {
  font-size: 0.82rem !important;
  font-weight: 600;
  color: rgba(13, 17, 23, 0.55) !important;
}

.landing-pricing-cta {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 56px;
  margin-bottom: 20px;
  font-size: 16px;
  box-shadow: 0 16px 40px rgba(255, 30, 86, 0.32);
}

.landing-pricing-guarantee {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-pricing-guarantee li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pedefi-brand-muted);
}

.landing-pricing-guarantee svg {
  width: 15px;
  height: 15px;
  color: var(--pedefi-brand-orange);
  stroke-width: 2.5;
}

[data-pricing-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

[data-showcase-reveal],
[data-founder-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-showcase-reveal].is-visible,
[data-founder-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Founder section ---- */

.landing-founder {
  position: relative;
  padding: 88px clamp(16px, 4vw, 40px);
  scroll-margin-top: calc(var(--landing-header-h) + 16px);
  border-top: 1px solid rgba(242, 244, 247, 0.06);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 30, 86, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(16, 22, 32, 0.95), rgba(13, 17, 23, 1));
}

.landing-founder-inner {
  width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}

.landing-founder-label {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 30, 86, 0.12);
  border: 1px solid rgba(255, 30, 86, 0.28);
  color: #ff9eb5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-founder h2 {
  margin: 0 0 20px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--pedefi-brand-light);
}

.landing-founder-lead {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(242, 244, 247, 0.82);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.landing-founder-text {
  margin: 0 0 40px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--pedefi-brand-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.landing-founder-text strong,
.landing-founder-lead strong {
  color: rgba(242, 244, 247, 0.95);
}

.landing-founder-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  text-align: left;
}

.landing-founder-card {
  padding: 28px;
  border-radius: var(--landing-radius);
  background: rgba(242, 244, 247, 0.03);
  border: 1px solid rgba(242, 244, 247, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.landing-founder-card h3 {
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pedefi-brand-light);
  line-height: 1.35;
}

.landing-founder-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.landing-founder-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(242, 244, 247, 0.85);
  line-height: 1.45;
}

.landing-founder-card li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--pedefi-brand-orange);
}

.landing-founder-scarcity {
  padding: 28px;
  border-radius: var(--landing-radius);
  background: linear-gradient(160deg, rgba(255, 90, 61, 0.1), rgba(255, 30, 86, 0.08));
  border: 1px solid rgba(255, 90, 61, 0.22);
  box-shadow: 0 20px 60px rgba(255, 30, 86, 0.12);
}

.landing-founder-scarcity h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--pedefi-brand-light);
}

.landing-founder-price {
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(242, 244, 247, 0.1);
}

.landing-founder-price span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--pedefi-brand-muted);
  margin-bottom: 4px;
}

.landing-founder-price strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--pedefi-brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-founder-price small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--pedefi-brand-muted);
}

.landing-spots-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(242, 244, 247, 0.78);
}

.landing-spots-head strong {
  color: var(--pedefi-brand-light);
}

.landing-spots-blocks {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  margin-bottom: 10px;
}

.landing-spots-segment {
  height: 8px;
  border-radius: 3px;
  background: rgba(242, 244, 247, 0.12);
}

.landing-spots-segment.is-filled {
  background: var(--pedefi-brand-gradient);
}

.landing-spots-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(242, 244, 247, 0.1);
  overflow: hidden;
}

.landing-spots-bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--pedefi-brand-gradient);
  transition: width 0.4s ease;
}

/* ---- Testimonials section ---- */

.landing-testimonials {
  position: relative;
  padding: 112px clamp(20px, 4vw, 40px) 120px;
  background: #fff;
  color: var(--pedefi-brand-dark);
  scroll-margin-top: calc(var(--landing-header-h) + 16px);
}

.landing-testimonials-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.landing-testimonials-header {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.landing-testimonials-header h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--pedefi-brand-dark);
}

.landing-testimonials-subtitle {
  margin: 0;
  font-size: clamp(1rem, 1.85vw, 1.1rem);
  line-height: 1.65;
  color: var(--pedefi-brand-muted);
}

.landing-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.landing-testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 26px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(13, 17, 23, 0.08);
  box-shadow:
    0 4px 20px rgba(13, 17, 23, 0.04),
    0 16px 48px rgba(13, 17, 23, 0.05);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.landing-testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 61, 0.22);
  box-shadow:
    0 8px 28px rgba(255, 30, 86, 0.08),
    0 24px 64px rgba(13, 17, 23, 0.1);
}

.landing-testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.landing-testimonial-avatar {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--pedefi-brand-gradient-soft);
  border: 2px solid rgba(255, 90, 61, 0.2);
  box-shadow: 0 8px 24px rgba(255, 30, 86, 0.12);
}

.landing-testimonial-avatar img[data-testimonial-photo] {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-testimonial-avatar:has(img[data-testimonial-photo][src]:not([src=""])) .landing-testimonial-avatar-placeholder {
  display: none;
}

.landing-testimonial-avatar-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 90, 61, 0.14), rgba(255, 30, 86, 0.1));
}

.landing-testimonial-avatar-placeholder svg {
  width: 24px;
  height: 24px;
  color: var(--pedefi-brand-orange);
  stroke-width: 2;
}

.landing-testimonial-meta {
  min-width: 0;
}

.landing-testimonial-name {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--pedefi-brand-dark);
}

.landing-testimonial-type {
  margin: 0 0 2px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--pedefi-brand-muted);
}

.landing-testimonial-city {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(13, 17, 23, 0.45);
}

.landing-testimonial-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.landing-testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
  fill: #f59e0b;
  stroke: #f59e0b;
  stroke-width: 1.5;
}

.landing-testimonial-quote {
  margin: 0;
  flex: 1;
}

.landing-testimonial-quote p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(13, 17, 23, 0.72);
  font-style: italic;
}

.landing-testimonial-quote p::before {
  content: "\201C";
  color: var(--pedefi-brand-orange);
  font-weight: 800;
  font-style: normal;
}

.landing-testimonials-closing {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.landing-testimonials-closing-text {
  margin: 0 0 24px;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--pedefi-brand-dark);
}

.landing-testimonials-cta {
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
  box-shadow: 0 16px 40px rgba(255, 30, 86, 0.28);
}

/* ---- FAQ section ---- */

.landing-faq {
  position: relative;
  padding: 112px clamp(20px, 4vw, 40px) 120px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 30, 86, 0.08), transparent 58%),
    linear-gradient(180deg, #101620 0%, #0d1117 100%);
  color: var(--pedefi-brand-light);
  scroll-margin-top: calc(var(--landing-header-h) + 16px);
}

.landing-faq-inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.landing-faq-header {
  margin-bottom: 48px;
  text-align: center;
}

.landing-faq-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--pedefi-brand-light);
}

.landing-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-faq-item {
  border-radius: 16px;
  background: rgba(242, 244, 247, 0.03);
  border: 1px solid rgba(242, 244, 247, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.landing-faq-item:hover {
  border-color: rgba(255, 90, 61, 0.22);
  background: rgba(242, 244, 247, 0.045);
}

.landing-faq-item[open] {
  border-color: rgba(255, 90, 61, 0.32);
  background: rgba(255, 30, 86, 0.06);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 30, 86, 0.08) inset;
}

.landing-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  list-style: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--pedefi-brand-light);
  user-select: none;
  transition: color 0.2s ease;
}

.landing-faq-question::-webkit-details-marker {
  display: none;
}

.landing-faq-question::marker {
  content: "";
}

.landing-faq-item[open] .landing-faq-question {
  color: #fff;
}

.landing-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--pedefi-brand-orange);
  stroke-width: 2.5;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-faq-item[open] .landing-faq-icon {
  transform: rotate(180deg);
  color: var(--pedefi-brand-red);
}

.landing-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-faq-item[open] .landing-faq-panel {
  grid-template-rows: 1fr;
}

.landing-faq-panel-inner {
  overflow: hidden;
}

.landing-faq-panel-inner p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(242, 244, 247, 0.78);
}

.landing-faq-question:focus-visible {
  outline: 2px solid var(--pedefi-brand-orange);
  outline-offset: -2px;
  border-radius: 14px;
}

/* ---- Generic sections ---- */

.landing-section {
  padding: 72px clamp(16px, 4vw, 40px);
  scroll-margin-top: calc(var(--landing-header-h) + 16px);
  border-top: 1px solid rgba(242, 244, 247, 0.06);
}

.landing-section-inner {
  width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}

.landing-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--pedefi-brand-light);
}

.landing-section p {
  margin: 0;
  color: var(--pedefi-brand-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.landing-section--muted {
  background: rgba(242, 244, 247, 0.02);
}

.landing-footer-mini {
  padding: 24px clamp(16px, 4vw, 40px) 32px;
  text-align: center;
  color: var(--pedefi-brand-muted);
  font-size: 13px;
  border-top: 1px solid rgba(242, 244, 247, 0.06);
}

/* ---- Responsive ---- */

@media (max-width: 1100px) {
  .landing-nav a {
    font-size: 12px;
  }

  .landing-nav {
    gap: clamp(8px, 1.5vw, 16px);
  }

  .landing-header-actions .landing-btn-ghost {
    display: none;
  }
}

@media (max-width: 1024px) {
  .landing-showcase-stage {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .landing-showcase-visual {
    order: 1;
    min-height: 380px;
  }

  .landing-showcase-steps {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .landing-showcase-step {
    flex: 0 0 min(85%, 320px);
    scroll-snap-align: start;
  }

  .landing-showcase-step:hover {
    transform: none;
  }

  .landing-showcase-laptop {
    transform: none;
    width: 100%;
  }

  .landing-showcase-phone {
    right: 4px;
    width: 140px;
  }

  .landing-showcase {
    padding: 88px clamp(20px, 4vw, 32px) 96px;
  }

  .landing-pricing {
    padding: 88px clamp(20px, 4vw, 32px) 96px;
  }

  .landing-pricing-features {
    grid-template-columns: 1fr;
  }

  .landing-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .landing-testimonials {
    padding: 88px clamp(20px, 4vw, 32px) 96px;
  }

  .landing-faq {
    padding: 88px clamp(20px, 4vw, 32px) 96px;
  }

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

  .landing-benefits {
    padding: 88px clamp(20px, 4vw, 32px) 96px;
  }

  .landing-pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .landing-pain {
    padding: 80px clamp(20px, 4vw, 32px) 88px;
  }

  .landing-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .landing-hero-copy {
    max-width: none;
    text-align: center;
  }

  .landing-hero-subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-hero-ctas,
  .landing-hero-trust {
    justify-content: center;
  }

  .landing-hero-founder-note {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .landing-hero-visual {
    max-width: min(520px, 100%);
    margin: 0 auto;
    padding: 24px 16px;
  }

  .landing-float-badge--menu {
    right: 4%;
  }

  .landing-founder-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.landing-page {
    --landing-header-h: 64px;
  }

  .landing-header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
  }

  .landing-nav {
    grid-column: 1 / -1;
    position: fixed;
    top: var(--landing-header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 16px;
    background: rgba(13, 17, 23, 0.98);
    border-bottom: 1px solid rgba(242, 244, 247, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .landing-menu-toggle {
    display: inline-flex;
    grid-column: 4;
  }

  .landing-btn.landing-btn-header-cta.landing-btn-header-cta--mobile {
    display: inline-flex;
    grid-column: 3;
  }

  .landing-header-actions {
    display: none;
  }

  .landing-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .landing-nav a {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(242, 244, 247, 0.06);
    font-size: 14px;
  }

  .landing-header-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding-top: 8px;
  }

  .landing-header-actions-mobile .landing-btn {
    width: 100%;
    display: inline-flex;
  }

  .landing-hero {
    padding-top: calc(var(--landing-header-h) + 24px);
    min-height: auto;
  }

  .landing-hero-ctas {
    flex-direction: column;
  }

  .landing-hero-ctas .landing-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .landing-dashboard {
    transform: none;
  }

  .landing-hero-visual:hover .landing-dashboard {
    transform: none;
  }

  .landing-mockup-phone {
    width: 148px;
    right: 4px;
    bottom: 12px;
    transform: rotate(4deg);
  }

  .landing-float-badge--founder {
    left: 2%;
    top: 4%;
  }

  .landing-float-badge--future {
    left: 2%;
    max-width: 88%;
    white-space: normal;
    text-align: left;
    line-height: 1.3;
  }

  .landing-float-badge {
    font-size: 10px;
    padding: 6px 10px;
  }

  .landing-float-badge--future,
  .landing-float-badge--price {
    display: none;
  }

  .landing-hero-counter-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-pain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }

  .landing-pain-header {
    margin-bottom: 40px;
  }

  .landing-pain-card {
    padding: 24px 22px;
  }

  .landing-pain {
    padding: 64px 16px 72px;
  }

  .landing-benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 56px;
  }

  .landing-benefits-header {
    margin-bottom: 44px;
  }

  .landing-benefits-card {
    padding: 24px 22px;
  }

  .landing-benefits {
    padding: 64px 16px 72px;
  }

  .landing-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 44px;
  }

  .landing-testimonials-header {
    margin-bottom: 40px;
  }

  .landing-testimonial-card {
    padding: 24px 22px;
  }

  .landing-testimonials {
    padding: 64px 16px 72px;
  }

  .landing-testimonials-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .landing-faq {
    padding: 64px 16px 72px;
  }

  .landing-faq-header {
    margin-bottom: 36px;
  }

  .landing-faq-question {
    padding: 18px 18px;
    font-size: 0.95rem;
  }

  .landing-faq-panel-inner p {
    padding: 0 18px 18px;
    font-size: 0.92rem;
  }

  .landing-benefits-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .landing-showcase {
    padding: 64px 16px 72px;
  }

  .landing-showcase-header {
    margin-bottom: 40px;
  }

  .landing-showcase-stage {
    margin-bottom: 48px;
  }

  .landing-showcase-float--whatsapp,
  .landing-showcase-float--qr {
    display: none;
  }

  .landing-showcase-phone {
    width: 128px;
    right: 0;
    bottom: 16px;
  }

  .landing-showcase-laptop-screen {
    min-height: 280px;
  }

  .landing-showcase-ui {
    min-height: 250px;
  }

  .landing-showcase-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .landing-pricing {
    padding: 64px 16px 72px;
  }

  .landing-pricing-card {
    padding: 32px 22px 28px;
    border-radius: 20px;
  }

  .landing-pricing-header h2 br {
    display: none;
  }

  .landing-pricing-guarantee {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .landing-founder {
    padding: 64px 16px;
  }

  .landing-founder-card,
  .landing-founder-scarcity {
    padding: 22px;
  }
}

@media (min-width: 761px) {
  .landing-header-actions-mobile {
    display: none;
  }

  .landing-btn.landing-btn-header-cta.landing-btn-header-cta--mobile {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-float-badge { animation: none; }
  .landing-btn:hover,
  .landing-hero-visual:hover .landing-dashboard,
  .landing-hero-visual:hover .landing-mockup-phone { transform: none; }
  .landing-spots-bar { transition: none; }
  [data-pain-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .landing-pain-card:hover { transform: none; }
  .landing-pain-arrow { animation: none; }
  .landing-benefits-card:hover { transform: none; }
  [data-benefit-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .landing-showcase-step:hover { transform: none; }
  .landing-showcase-float { animation: none; }
  .landing-pricing-card:hover { transform: none; }
  .landing-testimonial-card:hover { transform: none; }
  .landing-faq-panel { transition: none; }
  .landing-faq-icon { transition: none; }
  [data-pricing-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  [data-showcase-reveal],
  [data-founder-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .landing-showcase-devices:hover .landing-showcase-laptop,
  .landing-showcase-devices:hover .landing-showcase-phone {
    transform: none;
  }
}
