:root {
  /* Colors */
  --bg: #f6f6f6;
  --card: #ffffff;
  --muted: #6b7280;
  --text: #0B0D00;
  --primary: #0B0D00;
  --primary-highlight: #D0F308;
  --tertiary: #5227ff;
  --border: #e5e7eb;
  --sidebar: #f6f6f6;
  --sidebar-muted: #9ca3af;
  --sidebar-active: #D0F308;
  --pill: #f3f4f6;
  --accent: #D0F308;
  --sidebar-text: #0B0D00;
  --sidebar-hover: #e5e7eb;

  /* Typography */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;

  /* Layout */
  --max-w: 1120px;
  --section-gap: 120px;
}

/* Extra tokens (for non-specified UI details) */
:root {
  --btn-primary-hover-bg: #1a1d00;
  --btn-primary-shadow: 0 4px 20px rgba(11, 13, 0, 0.15);
  --btn-primary-hover-raise: -1px;
  --btn-secondary-hover-bg: #fafafa;
  --btn-secondary-hover-border: #d1d5db;

  --tag-rapido-bg: #22c55e;
  --tag-bonito-bg: #f59e0b;
  --tag-vivo-bg: #4f46e5;
  --overlay-dot-bg: var(--tag-rapido-bg);

  --social-rad-lime: rgba(208, 243, 8, 0.12);
  --social-rad-purple: rgba(82, 39, 255, 0.12);

  --card-hover-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  --mockup-product-shadow: 0 1px 0 rgba(11, 13, 0, 0.02), 0 14px 40px rgba(0, 0, 0, 0.05),
    0 8px 22px rgba(0, 0, 0, 0.04);

  --phone-gradient-a: rgba(82, 39, 255, 0.16);
  --phone-gradient-b: rgba(208, 243, 8, 0.18);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

section {
  padding: 0 24px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 12px;
  background: var(--card);
  color: var(--text);
  border-radius: 12px;
  border: 1px solid var(--border);
  transform: translateY(-200%);
  transition: transform 0.2s ease;
  z-index: 100000;
}
.skip-link:focus {
  transform: translateY(0);
}

/* 3. Film Grain Texture Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* 4. Reusable Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: -0.01em;
}

.btn-primary .btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
  color: currentColor;
}

.btn-primary .btn-primary-nav-cta {
  background: var(--accent);
  color: var(--text);
}

.btn-primary:hover {
  background: var(--btn-primary-hover-bg);
  transform: translateY(var(--btn-primary-hover-raise));
  box-shadow: var(--btn-primary-shadow);
}

.btn-primary:hover .btn-icon {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: -0.01em;
}

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

/* 5. Keyframe Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

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

@keyframes mockupDimIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes progressFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* 6. Scroll Reveal System */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Typography helpers */
.section-intro {
  padding-top: 0;
  padding-bottom: 0;
}

.section-intro.centered {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--border);
}

.section-line {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 14px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.55;
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

/* 7. Section-Specific Styles */
/* 1. Fixed Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
}

.header-inner {
  height: 64px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(229, 231, 235, 0.6);
  border-radius: 16px;
  padding: 0 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.logo-text {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.0em;
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
}

.hero-inner {
  position: relative;
}

.hero-entrance {
  animation-name: fadeUp;
  animation-duration: 0.7s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
}

.delay-0 {
  animation-delay: 0s;
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}
.delay-5 {
  animation-delay: 0.5s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--muted);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin: 20px auto 0;
}

.hero-title em {
  font-style: italic;
  position: relative;
  z-index: 0;
}

.hero-title em::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.1em;
  height: 8px;
  background: var(--accent);
  opacity: 0.5;
  border-radius: 4px;
  z-index: -1;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 540px;
  margin: 16px auto 0;
  line-height: 1.55;
}

.hero-ctas {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.trust-line {
  margin-top: 14px;
  font-size: 13px;
  color: var(--sidebar-muted);
}

/* Mockup */
.hero-visual {
  margin-top: 64px;
}

.mockup-browser {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--mockup-product-shadow);
  overflow: hidden;
}

.mockup-product-frame {
  position: relative;
  line-height: 0;
}

.mockup-product-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(11, 13, 0, 0.22);
  opacity: 0;
  animation: mockupDimIn 0.85s ease 3s forwards;
}

.mockup-product-img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: block;
}

/* Floating phone — device frame + screenshot; float animation on wrapper */
.floating-phone {
  position: absolute;
  right: clamp(10px, 3.6vw, 36px);
  bottom: calc(20px + clamp(-6px, -1.2vw, 6px));
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.phone-frame {
  position: relative;
  width: 168px;
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  border-radius: 26px;
  padding: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px #0a0a0a,
    0 14px 29px -7px rgba(0, 0, 0, 0.35),
    0 5px 10px -2px rgba(0, 0, 0, 0.2);
  isolation: isolate;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 22%;
  left: -1px;
  width: 1px;
  height: 24%;
  background: #0a0a0a;
  border-radius: 1px 0 0 1px;
}

.phone-frame::after {
  content: '';
  position: absolute;
  top: 24%;
  right: -1px;
  width: 1px;
  height: 12%;
  background: #0a0a0a;
  border-radius: 0 1px 1px 0;
}

.phone-frame__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.04);
}

.phone-frame__island {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 16px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.04);
}

.phone-frame__content {
  width: 100%;
  height: 100%;
  background: var(--card);
  position: relative;
  overflow-y: auto;
  scrollbar-width: none;
}

.phone-frame__content::-webkit-scrollbar {
  display: none;
}

.floating-phone-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1439px) {
  .phone-frame {
    width: 144px;
  }
}

@media (max-width: 767px) {
  .phone-frame {
    width: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mockup-product-frame::after {
    animation: none;
    opacity: 0;
  }

  .floating-phone {
    animation: none;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 3. Video Demo Section */
.video-section {
  padding-top: var(--section-gap);
  padding-bottom: 100px;
}

.video-embed {
  margin: 44px auto 0;
  max-width: 840px;
}

.demo-video-facade {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background: var(--card);
}

.demo-video-facade img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--card);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--card-hover-shadow);
  transition: all 0.25s ease;
}

.demo-play-btn svg {
  transition: transform 0.25s ease;
}

.demo-video-facade:hover .demo-play-btn {
  transform: translate(-50%, -50%) scale(1.04);
}

.demo-video-facade:hover .demo-play-btn svg {
  transform: translateX(2px);
}

.demo-video-facade:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.demo-video-facade.is-playing {
  cursor: default;
}

.demo-video-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .demo-play-btn,
  .demo-play-btn svg {
    transition: none;
  }

  .demo-video-facade:hover .demo-play-btn {
    transform: translate(-50%, -50%);
  }

  .demo-video-facade:hover .demo-play-btn svg {
    transform: none;
  }
}

/* 4. How It Works */
.how-section {
  padding-top: var(--section-gap);
}

.features-grid {
  perspective: 1200px;
  display: grid;
  gap: 24px;
  padding-bottom: 0;
  padding-top: 20px;
}

.feature-row {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(0.92);
  opacity: 0.5;
  filter: blur(1px);
  will-change: transform, opacity, filter;
}

.feature-row.in-view {
  transform: scale(1);
  opacity: 1;
  filter: blur(0px);
}

.feature-row:nth-child(even) {
  direction: rtl;
}

.feature-row:nth-child(even) .feature-text,
.feature-row:nth-child(even) .feature-image {
  direction: ltr;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #052e16;
}

.tag-rapido {
  background: var(--tag-rapido-bg);
}
.tag-bonito {
  background: var(--tag-bonito-bg);
}
.tag-vivo {
  background: var(--tag-vivo-bg);
  color: rgba(255, 255, 255, 0.95);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--pill);
  border: 1px solid var(--border);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-top: 16px;
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-top: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.feature-text p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 10px;
}

.feature-image {
  border-radius: 14px;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(208, 243, 8, 0.11), rgba(82, 39, 255, 0.09));
  position: relative;
  overflow: hidden;
}

.feature-image-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
  color: var(--muted);
}

.feature-image-placeholder--video {
  padding: 0;
}

.feature-image-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 60% 50%;
  background: #000;
}

.placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(229, 231, 235, 0.8);
  display: grid;
  place-items: center;
  color: var(--primary);
}

.placeholder-text {
  font-size: 13px;
  color: var(--muted);
}

.feature-image-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 12px;
  color: var(--primary);
}

.overlay-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--overlay-dot-bg);
}

/* 5. Social Proof Section */
.social-proof {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.proof-container {
  background: var(--primary);
  border-radius: 24px;
  padding: 72px 48px;
  border: 1px solid rgba(229, 231, 235, 0.18);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.proof-container::before {
  content: '';
  position: absolute;
  inset: -120px;
  background: radial-gradient(circle at 20% 20%, var(--social-rad-lime), transparent 55%),
    radial-gradient(circle at 70% 80%, var(--social-rad-purple), transparent 55%);
  pointer-events: none;
}

.proof-container > * {
  position: relative;
}

.proof-section-label {
  margin: 0 0 40px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.proof-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-photo {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 40px rgba(208, 243, 8, 0.12);
}

.proof-quote {
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  border: none;
  position: relative;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.proof-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: -36px;
  left: -20px;
  line-height: 1;
  pointer-events: none;
}

.proof-attribution {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.proof-attribution-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.proof-attribution-company {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

.proof-divider {
  width: 48px;
  height: 1px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.12);
}

.proof-metrics {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
}

.proof-metric {
  text-align: center;
}

.proof-metric-value {
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.02em;
}

.proof-metric-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
}

/* 6. Platform Complete (Beyond) */
.beyond {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.beyond-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 30px;
}

.beyond-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.beyond-tab {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  overflow: hidden;
}

.beyond-tab:hover {
  border-color: #d1d5db;
}

.beyond-tab .beyond-indicator {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.indicator-lime {
  background: var(--accent);
}
.indicator-purple {
  background: var(--tertiary);
}
.indicator-amber {
  background: var(--tag-bonito-bg);
}
.indicator-green {
  background: var(--tag-rapido-bg);
}

.beyond-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 4px;
}

.beyond-icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: var(--pill);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--primary);
  transition: background 0.25s ease, color 0.25s ease;
}

.beyond-head h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.beyond-desc {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.beyond-tab.active {
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.beyond-tab.active .beyond-indicator {
  opacity: 1;
}

.beyond-tab.active .beyond-desc {
  max-height: 80px;
}

.beyond-tab.active .beyond-icon {
  background: var(--accent);
  border-color: rgba(0, 0, 0, 0.06);
}

.beyond-tab.active .beyond-icon {
  color: var(--primary);
}

.beyond-tab-progress {
  position: absolute;
  left: 0;
  bottom: 12px;
  height: 2px;
  width: 0;
  background: var(--accent);
  border-radius: 999px;
}

.beyond-tab.active .beyond-tab-progress {
  animation: progressFill 5s linear forwards;
}

.beyond-tab.paused .beyond-tab-progress {
  animation-play-state: paused;
}

/* Mobile accordion inline image */
.beyond-inline-image {
  display: none;
}

.beyond-inline-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--mockup-product-shadow);
  line-height: 0;
}

.beyond-inline-frame img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.beyond-preview {
  width: 100%;
  align-self: start;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--mockup-product-shadow);
  overflow: hidden;
  line-height: 0;
}

.beyond-preview-slide {
  display: none;
  width: 100%;
}

.beyond-preview-slide.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.beyond-preview-media {
  width: 100%;
  background: var(--card);
}

.beyond-preview-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* 7. Pricing */
.pricing {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
  border-color: #d1d5db;
  box-shadow: var(--card-hover-shadow);
}

.plan-name {
  font-size: 18px;
  font-weight: 700;
}

.plan-desc {
  font-size: 13px;
  color: var(--muted);
}

.plan-price {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -0.02em;
}

.plan-currency,
.plan-per {
  font-size: 16px;
  color: var(--muted);
}

.plan-users {
  font-size: 13px;
  color: var(--sidebar-muted);
}

.plan-features {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 6px;
  padding: 0;
}

.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text);
}

.check-icon {
  color: #22c55e;
  margin-top: 1px;
}

.plan-cta {
  margin-top: auto;
  justify-content: center;
}

.price-card .plan-cta {
  background: var(--text);
  color: var(--accent);
  border: none;
}

.price-card .plan-cta:hover {
  background: var(--btn-primary-hover-bg);
  color: var(--accent);
  border: none;
  transform: translateY(var(--btn-primary-hover-raise));
  box-shadow: var(--btn-primary-shadow);
}

.pricing-note {
  margin: 26px auto 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 600px;
  text-align: center;
}

/* FAQ Section */
.faq {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.faq-container {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-group + .faq-group {
  margin-top: 28px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-group--product .faq-item::before {
  background: var(--accent);
}

.faq-group--platform .faq-item::before {
  background: var(--tertiary);
}

.faq-group--trust .faq-item::before {
  background: #10b981;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
}

.faq-question:hover {
  background: transparent;
}

.faq-question-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--text);
}

.faq-chevron {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pill);
  border-radius: 8px;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-chevron path {
  transform-origin: center;
  transform-box: fill-box;
  transform: scale(0.68);
}

.faq-item:not(.open) .faq-question:hover .faq-chevron {
  background: var(--border);
}

.faq-item.open .faq-chevron {
  background: var(--primary);
  color: var(--accent);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-content {
  padding: 0 24px 20px 24px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

.faq-item:hover::before {
  opacity: 0.4;
}

.faq-item.open::before {
  opacity: 1;
}

.faq-item.open {
  background: var(--bg);
  border-color: transparent;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* 8. Final CTA */
.final-cta {
  padding-top: var(--section-gap);
  padding-bottom: 90px;
}

.final-card {
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-card::before {
  content: '';
  position: absolute;
  inset: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(208, 243, 8, 0.16), transparent 60%);
  pointer-events: none;
}

.final-card > * {
  position: relative;
}

.final-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 40px);
  letter-spacing: -0.02em;
}

.final-subtitle {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.final-button {
  margin-top: 26px;
  padding: 16px 32px;
  font-size: 16px;
}

/* 9. Footer */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-left {
  font-size: 13px;
  color: var(--sidebar-muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Responsive Breakpoints */
@media (max-width: 900px) {
  :root {
    --section-gap: 80px;
  }

  .nav-text {
    display: none;
  }

  .hero {
    padding-bottom: 60px;
  }

  .hero-mockup-sidebar-wrap {
    flex-wrap: wrap;
  }

  .floating-phone {
    display: none;
  }

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

  .feature-row {
    grid-template-columns: 1fr;
    direction: ltr;
    padding: 28px 20px;
  }

  .feature-row:nth-child(even) {
    direction: ltr;
  }

  .beyond-layout {
    grid-template-columns: 1fr;
  }

  .beyond-preview {
    display: none;
  }

  .beyond-tabs {
    gap: 10px;
  }

  .beyond-tab {
    width: 100%;
  }

  .beyond-inline-image {
    display: block;
    margin-top: 12px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
  }

  .beyond-tab.active .beyond-inline-image {
    max-height: 12000px;
    opacity: 1;
  }

  .beyond-tab .beyond-desc {
    max-height: 80px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-card {
    padding: 64px 32px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .trip-cards {
    gap: 10px;
  }

  .trip-card {
    grid-template-columns: 1fr;
  }

  .trip-image {
    height: 76px;
  }

  .price-card.featured {
    order: -1;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .faq-answer-content {
    padding: 0 20px 16px;
  }

  .final-card {
    padding: 48px 24px;
  }

  .proof-container {
    padding: 48px 24px;
  }

  .proof-photo {
    width: 56px;
    height: 56px;
  }

  .proof-quote {
    font-size: 22px;
  }

  .proof-quote::before {
    font-size: 60px;
    top: -28px;
    left: -8px;
  }

  .proof-metrics {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

/* --------------------------------------------------------------------------
 * Legal static pages (/termos, /privacidade)
 * -------------------------------------------------------------------------- */

.legal-doc-page {
  padding-top: 96px;
  padding-bottom: 56px;
}

.legal-doc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 24px 0;
  background: var(--bg);
}

.legal-doc-header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(229, 231, 235, 0.6);
  border-radius: 16px;
  padding: 0 16px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.legal-doc-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.legal-doc-back {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

.legal-doc-back:hover {
  color: var(--primary);
}

.legal-doc-main {
  max-width: 720px;
  margin: 0 auto;
}

.legal-doc-article .legal-doc-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}

.legal-doc-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.legal-doc-version {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.legal-doc-body h2 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-doc-body h2:first-child {
  margin-top: 0;
}

.legal-doc-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 10px;
  color: var(--text);
}

.legal-doc-body p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-doc-body a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-doc-footer {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

