/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --bg-base: #030305;
  --bg-surface: #08080D;
  --bg-card: #0C0C13;
  --bg-card-2: #111118;

  --primary: #FF9900;
  --primary-light: #FFB733;
  --primary-dark: #CC7A00;
  --primary-glow: rgba(255, 153, 0, 0.18);
  --primary-border: rgba(255, 153, 0, 0.22);
  --success: #22C55E;

  /* AI section purple accent */
  --purple: #A855F7;
  --purple-light: #C084FC;
  --purple-dark: #7C3AED;
  --purple-glow: rgba(168, 85, 247, 0.2);
  --purple-border: rgba(168, 85, 247, 0.25);

  --text-main: #F4F4F5;
  --text-body: #A1A1AA;
  --text-muted: #52525B;

  --border: rgba(255, 255, 255, 0.07);
  --border-med: rgba(255, 255, 255, 0.12);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 9999px;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ═══════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
  z-index: 999;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
}

/* ═══════════════════════════════════════
   NOISE TEXTURE OVERLAY
═══════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  opacity: 0.025;
  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: 128px;
}

/* ═══════════════════════════════════════
   SPOTLIGHT CARDS
═══════════════════════════════════════ */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 153, 0, 0.06),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}

.spotlight-card:hover::after {
  opacity: 1
}

/* Purple spotlight for AI features */
.spotlight-purple::after {
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%),
      rgba(168, 85, 247, 0.08),
      transparent 40%);
}

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

html {
  scroll-behavior: smooth
}

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

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

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

ul {
  list-style: none
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Section spacing */
section {
  padding: 100px 0
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--text-main);
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 153, 0, 0.07);
  border: 1px solid rgba(255, 153, 0, 0.18);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.section-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.6)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255, 153, 0, 0)
  }
}

/* Animated orange gradient text */
.grad-text {
  background: linear-gradient(90deg, #FFB733, #FF9900, #FF5A00, #FFB733);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: grad-shift 4s linear infinite;
}

@keyframes grad-shift {
  0% {
    background-position: 0% 50%
  }

  100% {
    background-position: 300% 50%
  }
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s;
  background: rgba(255, 255, 255, 0.08);
}

.btn:hover::after {
  opacity: 1
}

.btn:hover {
  transform: translateY(-2px)
}

.btn:active {
  transform: translateY(0)
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem
}

.btn-md {
  padding: 13px 28px;
  font-size: 0.9rem
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #110B00;
  border-color: rgba(255, 153, 0, 0.5);
  box-shadow: 0 0 0 0 var(--primary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 30px var(--primary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary-glow {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #110B00;
  border-color: rgba(255, 153, 0, 0.5);
  box-shadow: 0 0 40px rgba(255, 153, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary-glow:hover {
  box-shadow: 0 0 60px rgba(255, 153, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text-main);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-med);
}

.btn-outline-orange {
  background: transparent;
  border-color: var(--primary-border);
  color: var(--primary);
}

.btn-outline-orange:hover {
  background: rgba(255, 153, 0, 0.07);
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.1);
}

/* ═══════════════════════════════════════
   SCROLL PROGRESS
═══════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
  z-index: 999;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
  pointer-events: none;
  will-change: width;
}

/* ═══════════════════════════════════════
   NOISE TEXTURE
═══════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

/* ═══════════════════════════════════════
   SECTION HEADING ACCENT LINE
═══════════════════════════════════════ */
.section-header.center h2::after,
.faq-left h2::after,
.ai-text h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin-top: 14px;
  border-radius: 2px;
}

.section-header.center h2::after {
  margin-left: auto;
  margin-right: auto;
  width: 48px;
}

/* ═══════════════════════════════════════
   SPOTLIGHT CARDS (mouse-tracking glow)
═══════════════════════════════════════ */
.spotlight {
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(500px circle at var(--mx, 200%) var(--my, 200%),
      rgba(255, 153, 0, 0.055),
      transparent 40%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.2s;
}

.spotlight>* {
  position: relative;
  z-index: 1
}

.spotlight-purple::before {
  background: radial-gradient(400px circle at var(--mx, 200%) var(--my, 200%),
      rgba(168, 85, 247, 0.07),
      transparent 40%);
}

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo)
}

.reveal.active {
  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
}

/* ═══════════════════════════════════════
   1. HEADER / NAV
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: 0 24px;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(3, 3, 5, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav-logo img {
  height: 44px;
  border-radius: 10px
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-logo span em {
  font-style: normal;
  font-weight: 300
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05)
}

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

/* Mobile */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
}

/* ═══════════════════════════════════════
   2. HERO SECTION
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  text-align: center;
  overflow: hidden;
}

/* Perspective grid — stronger 3D */
.hero-grid {
  position: absolute;
  bottom: 0;
  left: -30%;
  width: 160%;
  height: 85%;
  background-image:
    linear-gradient(rgba(255, 153, 0, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 153, 0, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(360px) rotateX(68deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, black 0%, black 20%, rgba(0, 0, 0, 0.7) 50%, transparent 80%);
  -webkit-mask-image: linear-gradient(to top, black 0%, black 20%, rgba(0, 0, 0, 0.7) 50%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 153, 0, 0.9) 35%, rgba(255, 183, 51, 1) 50%, rgba(255, 153, 0, 0.9) 65%, transparent 100%);
  filter: blur(1px);
}

/* Aurora animated background */
.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.aurora-orb-1 {
  width: 700px;
  height: 500px;
  top: -15%;
  left: 30%;
  background: radial-gradient(ellipse, rgba(255, 153, 0, 0.22), transparent 70%);
  animation: aurora-drift-1 12s ease-in-out infinite;
}

.aurora-orb-2 {
  width: 600px;
  height: 600px;
  top: 10%;
  left: -15%;
  background: radial-gradient(ellipse, rgba(255, 90, 0, 0.14), transparent 70%);
  animation: aurora-drift-2 16s ease-in-out infinite;
}

.aurora-orb-3 {
  width: 500px;
  height: 500px;
  top: 5%;
  right: -10%;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.1), transparent 70%);
  animation: aurora-drift-3 14s ease-in-out infinite;
}

@keyframes aurora-drift-1 {

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

  33% {
    transform: translate(-80px, 60px) scale(1.1)
  }

  66% {
    transform: translate(60px, -40px) scale(0.95)
  }
}

@keyframes aurora-drift-2 {

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

  50% {
    transform: translate(100px, 80px) scale(1.15)
  }
}

@keyframes aurora-drift-3 {

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

  40% {
    transform: translate(-60px, 100px) scale(1.08)
  }

  80% {
    transform: translate(40px, -50px) scale(0.92)
  }
}

/* Perspective grid */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 153, 0, 0.07);
  border: 1px solid rgba(255, 153, 0, 0.2);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  max-width: 580px;
  margin: 0 auto 0;
  line-height: 1.65;
  padding-top: 28px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* VSL */
.hero-vsl {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 153, 0, 0.15);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255, 153, 0, 0.08);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: float-vsl 6s ease-in-out infinite;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes float-vsl {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0.01deg)
  }

  50% {
    transform: translate3d(0, -16px, 0) rotate(0.01deg)
  }
}

@media (max-width:768px) {
  .hero-vsl {
    animation: none;
    transform: none;
    will-change: auto
  }
}

@media (prefers-reduced-motion:reduce) {
  .hero-vsl {
    animation: none;
    transform: none;
    will-change: auto
  }
}

/* glow removido */

.hero-vsl iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════
   3. INTEGRATIONS MARQUEE
═══════════════════════════════════════ */
.integrations-section {
  padding: 48px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.integrations-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
}

/* Fade edges */
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-base), transparent)
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-base), transparent)
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 0;
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  opacity: 0.4;
  filter: grayscale(1);
  transition: all 0.3s ease;
  cursor: default;
  white-space: nowrap;
}

.integration-item:hover {
  opacity: 1;
  filter: grayscale(0)
}

.integration-item img {
  height: 28px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.integration-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
}

/* ═══════════════════════════════════════
   4. STATS (HUD/NEO-BRUTALIST)
═══════════════════════════════════════ */
.stats-section {
  padding: 80px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.stat-box {
  position: relative;
  background: var(--bg-card);
  padding: 52px 36px 44px;
  text-align: center;
  overflow: hidden;
  transition: background 0.4s;
}

/* Ambient top glow */
.stat-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 153, 0, 0.07), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}

/* Beam scan line */
.stat-box::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.08), transparent);
  animation: beam-sweep 4s ease-in-out infinite;
}

.stat-box:nth-child(2)::after {
  animation-delay: 1.3s
}

.stat-box:nth-child(3)::after {
  animation-delay: 2.6s
}

@keyframes beam-sweep {
  0% {
    left: -60%;
    opacity: 0
  }

  10% {
    opacity: 1
  }

  60% {
    left: 100%;
    opacity: 0.8
  }

  100% {
    left: 100%;
    opacity: 0
  }
}

.stat-box:hover {
  background: var(--bg-card-2)
}

.stat-box:hover::before {
  opacity: 1
}

/* Crosshair corners */
.stat-box .ch {
  position: absolute;
  width: 12px;
  height: 12px
}

.stat-box .ch::before,
.stat-box .ch::after {
  content: '';
  position: absolute;
  background: rgba(255, 153, 0, 0.35);
}

.stat-box .ch::before {
  width: 1px;
  height: 100%
}

.stat-box .ch::after {
  height: 1px;
  width: 100%
}

.stat-box .ch.tl {
  top: 12px;
  left: 12px
}

.stat-box .ch.tr {
  top: 12px;
  right: 12px
}

.stat-box .ch.bl {
  bottom: 12px;
  left: 12px
}

.stat-box .ch.br {
  bottom: 12px;
  right: 12px
}

.stat-box .ch.tl::before {
  left: 0;
  top: 0
}

.stat-box .ch.tl::after {
  left: 0;
  top: 0
}

.stat-box .ch.tr::before {
  right: 0;
  top: 0
}

.stat-box .ch.tr::after {
  right: 0;
  top: 0
}

.stat-box .ch.bl::before {
  left: 0;
  bottom: 0
}

.stat-box .ch.bl::after {
  left: 0;
  bottom: 0
}

.stat-box .ch.br::before {
  right: 0;
  bottom: 0
}

.stat-box .ch.br::after {
  right: 0;
  bottom: 0
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   5. NICHES
═══════════════════════════════════════ */
.niches-section {
  padding: 100px 0
}

.section-header {
  margin-bottom: 56px
}

.section-header.center {
  text-align: center
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.niches-grid.niches-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.niche-stat {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.niche-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.18), rgba(255, 90, 0, 0.1), transparent 55%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s;
}

.niche-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 0, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.niche-card:hover::after {
  opacity: 1
}

.niche-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(255, 153, 0, 0.1);
  border: 1px solid rgba(255, 153, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: box-shadow 0.3s;
}

.niche-card:hover .niche-icon-wrap {
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.3);
}

.niche-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--primary)
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.niche-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6
}

/* ═══════════════════════════════════════
   6. AI SECTION
═══════════════════════════════════════ */
.ai-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255, 153, 0, 0.05), transparent 65%);
  pointer-events: none;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ai-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AI section purple override */
.ai-section {
  --ai-color: var(--purple);
  --ai-glow: var(--purple-glow);
  --ai-border: var(--purple-border);
}

/* Abstract AI node visual */
.ai-node {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
}

.ai-node-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.12);
  animation: ring-spin 20s linear infinite;
}

.ai-node-ring:nth-child(2) {
  inset: 10%;
  animation-duration: 15s;
  animation-direction: reverse;
  border-color: rgba(168, 85, 247, 0.08)
}

.ai-node-ring:nth-child(3) {
  inset: 25%;
  animation-duration: 25s;
  border-color: rgba(124, 58, 237, 0.1)
}

@keyframes ring-spin {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.ai-node-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25), rgba(124, 58, 237, 0.1), transparent);
  border: 1px solid rgba(168, 85, 247, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.2), inset 0 0 40px rgba(168, 85, 247, 0.08);
  animation: node-pulse 3s ease-in-out infinite;
}

@keyframes node-pulse {

  0%,
  100% {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.2), inset 0 0 30px rgba(168, 85, 247, 0.08)
  }

  50% {
    box-shadow: 0 0 80px rgba(168, 85, 247, 0.4), inset 0 0 50px rgba(168, 85, 247, 0.18)
  }
}

.ai-node-center svg {
  width: 48px;
  height: 48px;
  color: var(--purple-light);
  opacity: 0.95
}

/* Data nodes orbiting */
.ai-orbit-node {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--bg-card-2);
  border: 1px solid rgba(168, 85, 247, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.12);
}

.ai-orbit-node svg {
  width: 20px;
  height: 20px;
  color: var(--purple-light)
}

.aon-1 {
  top: 8%;
  left: 50%;
  transform: translateX(-50%)
}

.aon-2 {
  top: 50%;
  right: 4%;
  transform: translateY(-50%)
}

.aon-3 {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%)
}

.aon-4 {
  top: 50%;
  left: 4%;
  transform: translateY(-50%)
}

/* Connecting lines */
.ai-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 153, 0, 0.5), rgba(255, 153, 0, 0.1));
  transform-origin: left center;
}

.ac-0 {
  transform: rotate(0deg);
  top: calc(50% + 0px)
}

.ac-1 {
  transform: rotate(90deg);
  transform-origin: left center;
  top: 50%;
  left: 50%
}

.ac-2 {
  transform: rotate(180deg)
}

.ac-3 {
  transform: rotate(270deg);
  top: 50%;
  left: 50%
}

/* Mockup image */
.ai-mockup-img {
  width: 100%;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 153, 0, 0.15);
  box-shadow: 0 0 80px rgba(255, 153, 0, 0.15), 0 40px 80px rgba(0, 0, 0, 0.5);
}

.ai-text .section-eyebrow {
  margin-bottom: 20px;
  color: var(--purple-light);
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.22);
}

.ai-text .section-eyebrow .dot {
  background: var(--purple-light)
}

.ai-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
  line-height: 1.15;
}

/* purple grad text in AI section */
.ai-text .grad-text {
  background: linear-gradient(90deg, #C084FC, #A855F7, #7C3AED, #C084FC);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: grad-shift 4s linear infinite;
}

.ai-text p {
  font-size: 0.975rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 28px
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ai-feature-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color 0.3s;
}

.ai-feature-item:hover {
  border-color: rgba(168, 85, 247, 0.3)
}

.ai-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-feature-icon svg {
  width: 18px;
  height: 18px;
  color: var(--purple-light)
}

.ai-feature-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.ai-feature-text span {
  font-size: 0.825rem;
  color: var(--text-body);
  line-height: 1.55
}

/* ═══════════════════════════════════════
   7. WORKFLOW (redesign)
═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   7. WORKFLOW — Staggered Premium Layout
═══════════════════════════════════════ */
.workflow-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Spotlight radial de fundo */
.workflow-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(ellipse at center,
      rgba(90, 40, 160, 0.13) 0%,
      rgba(255, 153, 0, 0.04) 45%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.workflow-section .container {
  position: relative;
  z-index: 1;
}

/* Título "4 Passos" em gradiente */
.wf-title-accent {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Grid staggered: steps + connectors SVG */
.workflow-track {
  display: grid;
  grid-template-columns: 1fr 72px 1fr 72px 1fr 72px 1fr;
  align-items: start;
  gap: 0;
  margin-top: 64px;
  padding-bottom: 0;
}

.workflow-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 24px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Watermark numérico atrás do conteúdo */
.workflow-step::before {
  content: attr(data-num);
  position: absolute;
  top: -8px;
  right: 8px;
  font-size: 96px;
  font-weight: 900;
  font-family: var(--font-display);
  color: #fff;
  opacity: 0.025;
  line-height: 1;
  letter-spacing: -4px;
  pointer-events: none;
  z-index: 0;
}

/* Linha brilhante no topo do card */
.workflow-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  pointer-events: none;
}

.workflow-step>* {
  position: relative;
  z-index: 1;
}

/* Posicionamento vertical alternado */
.workflow-step.step-top {
  margin-top: 0;
}

.workflow-step.step-bottom {
  margin-top: 130px;
}

.workflow-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.workflow-step.highlight {
  border-color: rgba(255, 153, 0, 0.45);
  box-shadow: 0 0 50px rgba(255, 153, 0, 0.1), 0 0 0 1px rgba(255, 153, 0, 0.12);
  background: linear-gradient(160deg, rgba(255, 153, 0, 0.06), var(--bg-card));
}

.workflow-step.highlight::after {
  background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.3), transparent);
}

.workflow-step.success {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.08), 0 0 0 1px rgba(34, 197, 94, 0.1);
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.05), var(--bg-card));
}

.workflow-step.success::after {
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.22), transparent);
}

/* Badge numérico — oculto */
.step-num {
  display: none;
}

/* Caixa do ícone */
.step-icon-box {
  width: 80px;
  height: 80px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.04);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.35s;
}

.step-icon-box svg {
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.workflow-step:hover .step-icon-box {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.workflow-step.highlight .step-icon-box {
  background: rgba(255, 153, 0, 0.12);
  border-color: rgba(255, 153, 0, 0.35);
  animation: highlight-pulse 2.5s ease-in-out infinite;
}

.workflow-step.highlight .step-icon-box svg {
  color: var(--primary);
}

.workflow-step.highlight:hover .step-icon-box {
  box-shadow: 0 0 40px rgba(255, 153, 0, 0.28);
}

@keyframes highlight-pulse {

  0%,
  100% {
    box-shadow: 0 0 18px rgba(255, 153, 0, 0.15), 0 0 0 0 rgba(255, 153, 0, 0.2);
  }

  50% {
    box-shadow: 0 0 28px rgba(255, 153, 0, 0.22), 0 0 0 8px rgba(255, 153, 0, 0);
  }
}

.workflow-step.success .step-icon-box {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

.workflow-step.success .step-icon-box svg {
  color: var(--success);
}

.workflow-step.success:hover .step-icon-box {
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.25);
}

.workflow-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.workflow-step p {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 175px;
}

/* Conectores SVG curvos */
.workflow-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: start;
}

.wf-curve {
  width: 72px;
  height: 280px;
  overflow: visible;
}

/* Mobile: coluna simples */
@media (max-width: 900px) {
  .workflow-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-bottom: 0;
  }

  .workflow-step {
    width: 100%;
    max-width: 380px;
    margin-top: 0 !important;
  }

  .workflow-connector {
    display: none;
  }
}

/* ═══════════════════════════════════════
   8. AUTOPILOT
═══════════════════════════════════════ */
.autopilot-section {
  padding: 100px 0
}

.autopilot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.autopilot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 36px;
  transition: border-color 0.3s, transform 0.3s var(--ease-spring);
}

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

.autopilot-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.autopilot-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary)
}

.autopilot-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.autopilot-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75
}

/* ═══════════════════════════════════════
   9. PRICING
═══════════════════════════════════════ */
.pricing-section {
  padding: 100px 0
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 56px;
}

.pricing-grid.pricing-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

/* The outer wrapper adds padding-top for the badge;
   offset it so all cards start at the same visual top */
.premium-outer {
  position: relative;
  padding-top: 18px;
  margin-top: -18px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  transition: border-color 0.3s;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pricing-card .plan-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  margin-bottom: 24px
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.price-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-body)
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-body)
}

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

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px
}

.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-body);
}

.pf-item .pf-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pf-item .pf-check svg {
  width: 10px;
  height: 10px;
  color: var(--text-muted)
}

.pf-item.active .pf-check {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.3);
}

.pf-item.active .pf-check svg {
  color: var(--success)
}

.pf-item.active {
  color: var(--text-main)
}

/* Premium card wrapper — GPU-smooth spinning border */
.pricing-card-premium-wrap {
  position: relative;
  border-radius: calc(var(--r-xl) + 2px);
  padding: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card-premium-wrap::before {
  content: '';
  position: absolute;
  inset: -100%;
  width: 300%;
  height: 300%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 153, 0, 0) 60deg, #FFB733 120deg, #FF9900 180deg, rgba(255, 153, 0, 0) 240deg, transparent 300deg);
  animation: smooth-border-spin 2.5s linear infinite;
  transform-origin: center;
}

@keyframes smooth-border-spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.pricing-card-premium-wrap .pricing-card.premium {
  position: relative;
  z-index: 1;
  flex: 1;
}

.pricing-card.premium {
  background: linear-gradient(160deg, #131320, #0e0e1a);
  border: none;
  border-radius: var(--r-xl);
  position: relative;
}

/* Spinning border wrap */
.pricing-card-premium-wrap {
  display: flex;
  flex-direction: column;
}

.pricing-card-premium-wrap .pricing-card.premium {
  flex: 1;
}

.premium-outer .popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  margin: 0;
  width: max-content;
}

.popular-badge {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #110B00;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 28px;
  border-radius: var(--r-pill);
  width: fit-content;
  margin: 0 auto 32px;
  box-shadow: 0 0 28px rgba(255, 153, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pricing-card.premium .price-amount {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ═══════════════════════════════════════
   9.5 GUARANTEE CARD (hexágonos aninhados)
═══════════════════════════════════════ */
.guarantee-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px 44px;
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(ellipse at center top, rgba(34, 197, 94, 0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.guarantee-card > * {
  position: relative;
  z-index: 1;
}

.guarantee-hex-wrap {
  width: 220px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.28));
}

.guarantee-hex {
  display: block;
  width: 100%;
  height: auto;
}

.guarantee-hex .hex-center {
  animation: guarantee-hex-pulse 3.2s ease-in-out infinite;
}

@keyframes guarantee-hex-pulse {
  0%, 100% { opacity: 0.92; }
  50% { opacity: 1; }
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-highlight {
  background: linear-gradient(90deg, #86EFAC, #22C55E, #15803D, #22C55E, #86EFAC);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: guarantee-grad-shift 4s linear infinite;
  font-weight: 900;
}

@keyframes guarantee-grad-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.guarantee-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

.guarantee-desc strong {
  color: var(--text-main);
  font-weight: 700;
}

.guarantee-desc strong.guarantee-highlight {
  color: transparent;
}

@media (max-width: 768px) {
  .guarantee-card {
    padding: 36px 24px 32px;
  }
  .guarantee-hex-wrap {
    width: 180px;
    margin-bottom: 20px;
  }
  .guarantee-title {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }
  .guarantee-desc {
    font-size: 0.875rem;
    line-height: 1.65;
  }
}

/* ═══════════════════════════════════════
   10. FAQ
═══════════════════════════════════════ */
.faq-section {
  padding: 100px 0
}

.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.faq-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.faq-left p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.65
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px
}

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

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

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
}

.faq-trigger h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  flex: 1;
}

.faq-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out-expo), background 0.3s;
}

.faq-chevron svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: color 0.2s
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(255, 153, 0, 0.1);
  border-color: rgba(255, 153, 0, 0.3);
}

.faq-item.open .faq-chevron svg {
  color: var(--primary)
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}

.faq-item.open .faq-body {
  max-height: 200px
}

.faq-body-inner {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ═══════════════════════════════════════
   11. FINAL CTA
═══════════════════════════════════════ */
.final-cta {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center bottom, rgba(255, 153, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 153, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 153, 0, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

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

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 40px;
  line-height: 1.65
}

.cta-guarantee {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 36px;
  border-radius: 8px
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-logo span em {
  font-style: normal;
  font-weight: 300
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px
}

.footer-copy {
  font-size: 0.775rem;
  color: var(--text-muted);
  opacity: 0.6
}

.footer-links {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-body);
  text-decoration: none;
  transition: color .2s;
}

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

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   RESPONSIVE — COMPREHENSIVE MOBILE PASS
═══════════════════════════════════════ */
@media(max-width:1024px) {
  .niches-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .niches-grid.niches-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .ai-visual-wrap {
    order: -1
  }

  .workflow-track {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .workflow-connector {
    display: none
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .aurora-orb-1 {
    width: 400px;
    height: 300px
  }

  .aurora-orb-2 {
    width: 350px;
    height: 350px
  }

  .aurora-orb-3 {
    display: none
  }
}

@media(max-width:768px) {
  section {
    padding: 64px 0
  }

  .container {
    padding: 0 20px
  }

  /* Nav */
  .nav-links,
  .nav-actions {
    display: none
  }

  .mobile-toggle {
    display: flex
  }

  .nav-logo span {
    font-size: 1.15rem
  }

  .nav-inner {
    height: 60px
  }

  /* Hero */
  .hero {
    padding: 110px 20px 60px;
    min-height: auto
  }

  .hero-title {
    font-size: 2.2rem;
    letter-spacing: -0.03em
  }

  .hero-sub {
    font-size: 0.95rem
  }

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

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px
  }

  .hero-live-notif {
    padding: 8px 14px 8px 10px
  }

  .hero-vsl {
    margin-top: 36px
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    border-radius: var(--r-lg)
  }

  .stat-box {
    padding: 20px 8px
  }

  .stat-box::after {
    display: none
  }

  .stat-box .ch {
    display: none
  }

  .stat-num {
    font-size: 1.5rem
  }

  .stat-label {
    font-size: 0.72rem;
    line-height: 1.35
  }

  /* Niches */
  .niches-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .niches-grid.niches-grid-3 {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .niche-card {
    padding: 24px 20px
  }

  .niche-icon-wrap {
    width: 44px;
    height: 44px;
    margin-bottom: 16px
  }

  .niche-stat {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }

  /* AI */
  .ai-grid {
    gap: 32px
  }

  .ai-text h2 {
    font-size: 1.6rem
  }

  /* Workflow */
  .workflow-step {
    padding: 24px 20px
  }

  .workflow-connector {
    height: 28px
  }

  /* Autopilot */
  .autopilot-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .autopilot-card {
    padding: 28px 24px
  }

  /* Pricing */
  .pricing-grid {
    max-width: 100%;
    gap: 32px;
  }

  .pricing-card {
    padding: 28px 24px
  }

  .price-amount {
    font-size: 2.4rem
  }

  /* FAQ */
  .faq-left h2 {
    font-size: 2rem
  }

  .faq-trigger h3 {
    font-size: 0.9rem
  }

  /* Final CTA */
  .final-cta {
    padding: 80px 20px
  }

  .final-cta h2 {
    font-size: 1.8rem
  }

  .final-cta .btn {
    width: 100%;
    justify-content: center
  }

  /* Footer */
  .footer {
    padding: 36px 20px
  }

  /* Aurora */
  .hero-aurora {
    display: none
  }

  .hero-grid {
    height: 45%
  }
}

@media(max-width:480px) {
  .hero-title {
    font-size: 1.9rem
  }

  .niches-grid {
    grid-template-columns: 1fr
  }

  .niche-card {
    padding: 20px 18px
  }

  .section-header h2 {
    font-size: 1.6rem
  }

  .display-2 {
    font-size: 1.6rem
  }

  .autopilot-card h3 {
    font-size: 1.1rem
  }

  .btn-lg {
    padding: 15px 24px;
    font-size: 0.9rem
  }
}
