/* =========================================
   99agency — Design System
   Stack: Pure CSS + Plus Jakarta Sans
   Palette: Black #060608 / Electric Lime #C6FF00
   =========================================*/

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* === CSS VARIABLES === */
:root {
  --bg: #060608;
  --bg-2: #0C0C10;
  --bg-3: #13131A;
  --bg-card: #0F0F14;
  --accent: #C6FF00;
  --accent-2: #AADD00;
  --accent-dim: rgba(198, 255, 0, 0.07);
  --accent-glow: rgba(198, 255, 0, 0.18);
  --white: #F2F2F4;
  --white-90: rgba(242, 242, 244, 0.9);
  --muted: #7A7A8E;
  --muted-2: #52525F;
  --border: rgba(255, 255, 255, 0.06);
  --border-md: rgba(255, 255, 255, 0.10);
  --border-accent: rgba(198, 255, 0, 0.30);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.25s var(--ease);

  --max-w: 1200px;
  --max-w-sm: 780px;
  --section-py: 100px;
  --section-py-sm: 64px;
}

/* === BASE === */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === UTILITY === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--muted);
}

/* Fade-in animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* === TYPOGRAPHY === */
.display {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.body-lg {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
}

.body {
  font-size: 16px;
  line-height: 1.7;
}

.body-sm {
  font-size: 14px;
  line-height: 1.6;
}

.label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #060608;
}

.btn-primary:hover {
  background: #d4ff1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border-md);
}

.btn-ghost:hover {
  border-color: var(--border-accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* === BADGE / PILL === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(198, 255, 0, 0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

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

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

/* === SECTION LABEL === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 16px;
}

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

/* === DIVIDER === */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ============================================================
   NAVIGATION
   ============================================================*/
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(6, 6, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.nav-logo .logo-99 {
  color: var(--accent);
}

.nav-logo .logo-agency {
  color: var(--white);
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 6px;
  /* A logo tem fundo preto, que combina com o fundo do nav */
  transition: opacity 0.2s;
}

.nav-logo-img:hover {
  opacity: 0.85;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius-xs);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--white);
  background: var(--border);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-xs);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  padding: 32px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  font-size: 18px;
  padding: 16px;
  border-radius: var(--radius-sm);
}

.mobile-menu .nav-link:hover {
  background: var(--bg-3);
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

/* ============================================================
   HERO SECTION
   ============================================================*/
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Giant "99" watermark */
.hero-bg::before {
  content: '99';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-size: clamp(300px, 45vw, 700px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(198, 255, 0, 0.028);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Radial glow */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(198, 255, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  align-self: flex-start;
}

.hero-title {
  color: var(--white);
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-subtitle {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 8px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.hero-trust-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* Hero Visual — Marketing Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.mockup-phone {
  width: 220px;
  margin: 0 auto;
  background: var(--bg-3);
  border: 1.5px solid var(--border-md);
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
  position: relative;
  z-index: 3;
}

.phone-notch {
  width: 60px;
  height: 8px;
  background: var(--muted-2);
  border-radius: 4px;
  margin: 0 auto 12px;
  opacity: 0.4;
}

.phone-post {
  background: var(--bg-2);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
}

.phone-post-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
}

.phone-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  font-size: 10px;
  font-weight: 800;
  color: #060608;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-username {
  font-size: 11px;
  font-weight: 600;
}

.phone-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a22 0%, #0f0f16 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.phone-img-inner {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  text-align: center;
}

.phone-img-sub {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
}

.phone-stats {
  display: flex;
  gap: 12px;
  padding: 10px;
}

.phone-stat {
  font-size: 10px;
  color: var(--muted);
}

.phone-stat strong {
  color: var(--accent);
  font-weight: 700;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  z-index: 5;
  animation: float 5s ease-in-out infinite;
}

.float-card-1 {
  top: -20px;
  left: -40px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 20px;
  right: -50px;
  animation-delay: 2.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.float-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ============================================================
   TRUST STRIP
   ============================================================*/
.trust-strip {
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border-md);
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s;
  padding: 4px 12px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
}

.trust-logo:hover {
  opacity: 1;
  filter: none;
}

.trust-logo-icon {
  width: 24px;
  height: 24px;
  background: var(--bg-3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ============================================================
   STATS ROW
   ============================================================*/
.stats-row {
  padding: var(--section-py) 24px;
  background: var(--bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}

.stat-suffix {
  font-size: 0.5em;
  vertical-align: super;
}

.stat-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}

.stats-divider {
  width: 1px;
  background: var(--border-md);
}

/* ============================================================
   PAIN SECTION
   ============================================================*/
.pain-section {
  padding: var(--section-py) 24px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.pain-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(198, 255, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.pain-header {
  text-align: center;
  margin-bottom: 64px;
}

.pain-header p {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--muted);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.pain-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 8px 40px rgba(198, 255, 0, 0.06);
  transform: translateY(-3px);
}

.pain-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 12px;
  color: var(--accent);
}

.pain-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.pain-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   WHY 99AGENCY
   ============================================================*/
.why-section {
  padding: var(--section-py) 24px;
  background: var(--bg);
}

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(198, 255, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 13px;
  margin-top: 2px;
}

.why-item-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item-text p {
  font-size: 14px;
  color: var(--muted);
}

/* Comparison table */
.why-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 16px 20px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.why-table-header .col-1 {
  color: var(--accent);
}

.why-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  align-items: center;
  transition: background 0.2s;
}

.why-table-row:last-child {
  border-bottom: none;
}

.why-table-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.why-table-row .row-label {
  color: var(--white-90);
  font-weight: 600;
}

.check-y {
  color: var(--accent);
  font-size: 16px;
  text-align: center;
}

.check-n {
  color: var(--muted-2);
  font-size: 16px;
  text-align: center;
}

.check-meh {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* ============================================================
   SERVICES SECTION
   ============================================================*/
.services-section {
  padding: var(--section-py) 24px;
  background: var(--bg-2);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header p {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s;
}

.service-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 12px 48px rgba(198, 255, 0, 0.07);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(198, 255, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
}

.service-title {
  font-size: 18px;
  font-weight: 700;
}

.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.service-tag {
  padding: 4px 10px;
  background: var(--bg-3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
}

/* ============================================================
   PRICING SECTION
   ============================================================*/
.pricing-section {
  padding: var(--section-py) 24px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '99';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(200px, 60vw, 800px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(198, 255, 0, 0.018);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.pricing-header p {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.toggle-label.active {
  color: var(--white);
}

.toggle-track {
  width: 44px;
  height: 24px;
  background: var(--bg-3);
  border-radius: 100px;
  border: 1px solid var(--border-md);
  position: relative;
  cursor: pointer;
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--muted);
  border-radius: 50%;
  transition: 0.2s;
}

.toggle-track.active .toggle-thumb {
  left: calc(100% - 19px);
  background: var(--accent);
}

.toggle-save {
  padding: 3px 10px;
  background: var(--accent-dim);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(198, 255, 0, 0.15);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-md);
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: var(--border-accent);
  box-shadow: 0 0 0 1px rgba(198, 255, 0, 0.15), 0 24px 80px rgba(198, 255, 0, 0.08);
  background: #0E0F0A;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--accent);
  color: #060608;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 6px;
}

.price-dollar {
  font-size: 20px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 10px;
}

.price-amount {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}

.pricing-card.popular .price-amount {
  color: var(--accent);
}

.price-brl {
  display: inline-block;
  font-size: 0.72em;
  color: #7A7A8E;
  font-weight: 400;
  margin-left: 4px;
  white-space: nowrap;
}

.price-period {
  font-size: 13px;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 8px;
}

.plan-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  transition: var(--transition);
  border: 1.5px solid var(--border-md);
  color: var(--white);
}

.plan-btn:hover {
  border-color: var(--border-accent);
  color: var(--accent);
}

.pricing-card.popular .plan-btn {
  background: var(--accent);
  color: #060608;
  border-color: var(--accent);
}

.pricing-card.popular .plan-btn:hover {
  background: #d4ff1a;
  box-shadow: 0 6px 24px var(--accent-glow);
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.plan-feature.included {
  color: var(--white-90);
}

.feature-icon {
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px;
}

.feature-icon.yes {
  color: var(--accent);
}

.feature-icon.no {
  color: var(--muted-2);
}

.plan-cta-note {
  font-size: 11px;
  color: var(--muted-2);
  text-align: center;
  margin-top: auto;
  padding-top: 16px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================*/
.how-section {
  padding: var(--section-py) 24px;
  background: var(--bg-2);
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header p {
  max-width: 480px;
  margin: 16px auto 0;
  color: var(--muted);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.how-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, var(--border-accent) 50%, var(--border) 100%);
  z-index: 0;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  transition: var(--transition);
}

.how-step:hover .step-number {
  border-color: var(--border-accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   RESULTS SECTION
   ============================================================*/
.results-section {
  padding: var(--section-py) 24px;
  background: var(--bg);
}

.results-header {
  text-align: center;
  margin-bottom: 64px;
}

.results-header p {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--muted);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-card:hover {
  border-color: var(--border-md);
  transform: translateY(-3px);
}

.result-metric {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}

.result-desc {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.result-context {
  font-size: 13px;
  color: var(--muted);
}

.result-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  align-self: flex-start;
}

/* ============================================================
   INDUSTRIES SECTION
   ============================================================*/
.industries-section {
  padding: var(--section-py) 24px;
  background: var(--bg-2);
}

.industries-header {
  text-align: center;
  margin-bottom: 64px;
}

.industries-header p {
  max-width: 520px;
  margin: 16px auto 0;
  color: var(--muted);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}

.industry-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 8px 32px rgba(198, 255, 0, 0.05);
  transform: translateY(-3px);
}

.industry-emoji {
  font-size: 32px;
  line-height: 1;
}

.industry-name {
  font-size: 17px;
  font-weight: 700;
}

.industry-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================*/
.testimonials-section {
  padding: var(--section-py) 24px;
  background: var(--bg);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header p {
  max-width: 480px;
  margin: 16px auto 0;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s, transform 0.25s;
}

.testimonial-card:hover {
  border-color: var(--border-md);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-q {
  font-size: 15px;
  line-height: 1.65;
  color: var(--white-90);
  flex: 1;
  font-style: italic;
}

.testimonial-q::before {
  content: '"';
  color: var(--accent);
  font-style: normal;
}

.testimonial-q::after {
  content: '"';
  color: var(--accent);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid rgba(198, 255, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
}

.author-biz {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   FAQ SECTION
   ============================================================*/
.faq-section {
  padding: var(--section-py) 24px;
  background: var(--bg-2);
}

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

.faq-header p {
  max-width: 480px;
  margin: 16px auto 0;
  color: var(--muted);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--border-accent);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  color: var(--white);
  background: none;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-item.open .faq-question {
  color: var(--accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  transition: transform 0.3s, border-color 0.2s, background 0.2s;
  color: var(--muted);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: rgba(198, 255, 0, 0.3);
  background: var(--accent-dim);
  color: var(--accent);
}

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

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA
   ============================================================*/
.final-cta {
  padding: 120px 24px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(198, 255, 0, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  margin-bottom: 20px;
}

.final-cta h2 em {
  font-style: normal;
  color: var(--accent);
}

.final-cta p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 20px;
}

.price-highlight {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--accent);
  font-weight: 800;
}

/* ============================================================
   FOOTER
   ============================================================*/
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-logo .logo-99 {
  color: var(--accent);
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-link:hover {
  border-color: var(--border-accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--muted-2);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================*/
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .how-grid::before {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 100px 24px 64px;
  }

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

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

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

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

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

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .why-table-header,
  .why-table-row {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    font-size: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip-inner {
    flex-direction: column;
    gap: 16px;
  }

  .trust-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}