/* =========================
   VARS
   ========================= */
:root {
  --bg-dark: #010314;
  --bg-white: #FFFFFF;
  --bg-orange: #FF8A00;
  --bg-card: #F5F7FA;
  --orange: #FF8A00;
  --orange-hover: #e07a00;
  --text-dark: #010314;
  --text-white: #FFFFFF;
  --text-muted: #6B7280;
  --border: rgba(1, 3, 20, 0.10);
  --container: 1200px;
  --t: 0.2s ease;
}

/* =========================
   RESET
   ========================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
}
h1 { font-size: 36px; letter-spacing: -0.03em; }
h2 { font-size: 28px; letter-spacing: -0.02em; }
h3 { font-size: 22px; letter-spacing: -0.01em; }
@media (min-width: 1024px) {
  h1 { font-size: 64px; }
  h2 { font-size: 48px; }
  h3 { font-size: 24px; }
}

/* =========================
   LAYOUT
   ========================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .container { padding: 0 40px; }
}

section { padding: 80px 0; }
@media (min-width: 1024px) { section { padding: 120px 0; } }

.bg-dark  { background: var(--bg-dark);   color: var(--text-white); }
.bg-white { background: var(--bg-white);  color: var(--text-dark);  }
.bg-orange{ background: var(--bg-orange); color: var(--text-dark);  }

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 32px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--text-dark);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 138, 0, 0.35);
}
.btn-ghost {
  background: transparent;
  border-color: currentColor;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.btn-dark {
  background: var(--bg-dark);
  color: var(--orange);
  border-color: var(--bg-dark);
}
.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(1, 3, 20, 0.35);
}
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-full { width: 100%; }

/* =========================
   BADGES
   ========================= */
.badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge-orange { background: var(--orange); color: var(--text-dark); }
.badge-dark   { background: var(--bg-dark); color: var(--orange);    }
.badge-outline-light {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-white);
  background: rgba(255,255,255,0.05);
}

/* =========================
   REVEAL ANIMATION
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-children > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-children.revealed > *            { opacity: 1; transform: translateY(0); }
.reveal-children.revealed > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-children.revealed > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-children.revealed > *:nth-child(3) { transition-delay: 0.20s; }
.reveal-children.revealed > *:nth-child(4) { transition-delay: 0.30s; }
.reveal-children.revealed > *:nth-child(5) { transition-delay: 0.40s; }

/* =========================
   NAVBAR
   ========================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(1, 3, 20, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
}
.navbar.scrolled {
  background: rgba(1, 3, 20, 0.96);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 40px; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-white);
}
.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; align-items: center; gap: 8px; }
.nav-logo .badge { padding: 3px 9px; font-size: 10px; letter-spacing: 0.1em; }
@media (max-width: 768px) {
  .nav-logo img { height: 28px; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--t);
}
.nav-links a:hover { color: var(--text-white); }

.nav-ctas {
  display: none;
  align-items: center;
  gap: 12px;
}
.nav-ctas .btn { padding: 10px 20px; font-size: 14px; }
.nav-ghost-sm {
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  transition: border-color var(--t), background var(--t);
}
.nav-ghost-sm:hover { border-color: var(--text-white); background: rgba(255,255,255,0.05); }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background var(--t);
}
.nav-hamburger:hover { background: rgba(255,255,255,0.06); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: absolute;
  top: 72px;
  left: 0; right: 0;
  background: rgba(1, 3, 20, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-drawer.open { max-height: 520px; }
.nav-drawer-inner {
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-drawer-inner a.drawer-link {
  color: var(--text-white);
  font-size: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-drawer-inner .drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.nav-drawer-inner .drawer-ctas .btn { width: 100%; }
.nav-drawer-inner .nav-ghost-sm { width: 100%; text-align: center; }

@media (min-width: 1024px) {
  .nav-links, .nav-ctas { display: flex; }
  .nav-hamburger, .nav-drawer { display: none; }
}

/* =========================
   HERO
   ========================= */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero { padding-top: 180px; padding-bottom: 140px; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1.15fr;
    grid-template-rows: auto 1fr;
    gap: 0 64px;
    align-items: start;
  }
  .hero-badge-wrap { grid-column: 1; grid-row: 1; padding-bottom: 20px; }
  .hero-copy       { grid-column: 1; grid-row: 2; align-self: start; }
  .hero-image      { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
}
@media (max-width: 1023px) {
  .hero-grid { display: flex; flex-direction: column; gap: 0; }
  .hero-badge-wrap { order: 1; margin-bottom: 24px; }
  .hero-image      { order: 2; width: 100%; margin: 24px 0; }
  .hero-copy       { order: 3; }
}
.hero h1 {
  color: var(--text-white);
  margin-bottom: 24px;
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.hero-ctas .btn-ghost { color: var(--text-white); }
.hero-note {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.hero-image {
  position: relative;
}

/* =========================
   HERO STACK
   ========================= */
.hero-stack {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stack-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.hero-stack-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.hero-stack-img--back {
  width: 72%;
  top: 0;
  right: 0;
  transform: rotate(2deg) translateY(-20px);
  z-index: 1;
  opacity: 0.75;
}
.hero-stack-img--mid {
  width: 78%;
  top: 50%;
  right: 4%;
  transform: translateY(-50%) rotate(-1.5deg) translateX(20px);
  z-index: 2;
  opacity: 0.88;
}
.hero-stack-img--front {
  width: 88%;
  bottom: 0;
  right: 0;
  transform: rotate(0.5deg) translateY(10px);
  z-index: 3;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,138,0,0.12);
}
@media (max-width: 1023px) {
  .hero-stack {
    position: relative;
    min-height: unset;
    height: auto;
  }
  .hero-stack-img--back,
  .hero-stack-img--mid { display: none; }
  .hero-stack-img--front {
    position: relative;
    width: 100%;
    transform: none;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  }
}
@media (min-width: 1024px) {
  .hero-image { min-height: 560px; display: flex; align-items: stretch; }
  .hero-stack  { min-height: 560px; }
}

/* =========================
   MARQUEE
   ========================= */
.marquee-section {
  padding: 56px 0;
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  color: var(--text-dark);
  opacity: 0.85;
}
.marquee-strip {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}
.marquee-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.marquee-item img {
  height: 36px;
  width: auto;
  filter: brightness(0);
}
.marquee-sep {
  color: rgba(1, 3, 20, 0.4);
  font-size: 20px;
  flex-shrink: 0;
}
.magalu-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.em-breve {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(1, 3, 20, 0.6);
}

/* =========================
   SOCIAL PROOF
   ========================= */
.proof-head { text-align: center; margin-bottom: 56px; }
.proof-head h2 { color: var(--text-dark); }
.metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .metrics { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.metric { text-align: center; }
.metric-number {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}
@media (min-width: 1024px) { .metric-number { font-size: 64px; } }
.metric-label {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.5;
}

/* =========================
   DEMO
   ========================= */
.demo-head {
  text-align: center;
  margin-bottom: 48px;
}
.demo-head h2 { color: var(--text-white); margin-bottom: 16px; }
.demo-head p {
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
}
.demo-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.demo-form input,
.demo-form select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-white);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  transition: border-color var(--t), background var(--t);
}
.demo-form input::placeholder { color: rgba(255,255,255,0.35); }
.demo-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.6' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.demo-form select option { background: var(--bg-dark); color: var(--text-white); }
.demo-form select:invalid { color: rgba(255,255,255,0.35); }
.demo-form input:focus,
.demo-form select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.08);
}
.demo-form .btn { margin-top: 10px; }

/* =========================
   PILARES
   ========================= */

/* Mobile: flex column com order explícito */
.pilar-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pilar-label  { order: 1; }
.pilar-image  { order: 2; }
.pilar-content { order: 3; }

/* Desktop: grid 2 colunas, label acima do content */
@media (min-width: 1024px) {
  .pilar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 80px;
    align-items: start;
  }
  .pilar-label   { grid-column: 1; grid-row: 1; padding-bottom: 24px; }
  .pilar-content { grid-column: 1; grid-row: 2; align-self: start; }
  .pilar-image   { grid-column: 2; grid-row: 1 / span 2; align-self: center; }

  /* Reversed (pilar 2) */
  .pilar-grid.reverse .pilar-label   { grid-column: 2; grid-row: 1; }
  .pilar-grid.reverse .pilar-content { grid-column: 2; grid-row: 2; }
  .pilar-grid.reverse .pilar-image   { grid-column: 1; grid-row: 1 / span 2; }
}

.pilar-content h2 { margin-bottom: 24px; color: var(--text-dark); }
.pilar-content p {
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
}
.pilar-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(1, 3, 20, 0.18);
}
.bg-orange .pilar-image { box-shadow: 0 24px 60px rgba(1, 3, 20, 0.28); }
.pilar-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  display: block;
  height: auto;
}
@media (min-width: 1024px) {
  .pilar-image img { max-width: 680px; }
}

/* =========================
   PLANOS
   ========================= */
.planos-head { text-align: center; margin-bottom: 56px; }
.planos-head h2 { color: var(--text-white); margin-bottom: 16px; }
.planos-head p { color: rgba(255,255,255,0.65); }

.planos-wrap { position: relative; }
.planos-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.planos-carousel::-webkit-scrollbar { display: none; }
.plan-card {
  flex: 0 0 min(85%, 360px);
  scroll-snap-align: start;
  background: #191E28;
  border: 1px solid rgba(255, 138, 0, 0.15);
  border-radius: 16px;
  padding: 32px;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), border-color var(--t);
}
.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 0, 0.35);
}
.plan-card.featured {
  border-color: rgba(255, 138, 0, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 138, 0, 0.25), 0 20px 50px rgba(255, 138, 0, 0.12);
}
.plan-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.plan-badge {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.15);
  color: var(--orange);
}
.plan-badge.featured { background: var(--orange); color: var(--text-dark); }
.plan-badge.green { background: rgba(34, 197, 94, 0.15); color: #22c55e; }

.plan-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-white);
}
.plan-items {
  margin-bottom: 28px;
  flex: 1;
}
.plan-items li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.plan-items li:last-child { border-bottom: none; }
.item-name  { color: rgba(255,255,255,0.92); }
.item-price { color: var(--orange); font-weight: 700; white-space: nowrap; }
.item-sub   { display: block; font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 400; margin-top: 2px; }

.plan-price-big {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 6px;
  color: var(--text-white);
  letter-spacing: -0.02em;
}
.plan-price-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.plan-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  line-height: 1.6;
  flex: 1;
}
.plan-card .btn { width: 100%; }

.planos-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.planos-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-white);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}
.planos-nav button:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* =========================
   ROI
   ========================= */
.roi h2 { max-width: 900px; margin-bottom: 24px; color: var(--text-dark); }
.roi p  { font-size: 17px; margin-bottom: 40px; line-height: 1.7; color: var(--text-dark); max-width: 860px; }
.roi-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  padding: 0;
}
@media (min-width: 1024px) {
  .roi-checks { flex-direction: row; gap: 32px; flex-wrap: wrap; }
  .roi-checks li { flex: 1; min-width: 240px; }
}
.roi-checks li {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .roi-cta {
    white-space: normal;
    word-break: break-word;
    text-align: center;
    padding: 16px 24px;
    max-width: 280px;
    line-height: 1.4;
  }
}

/* =========================
   FAQ
   ========================= */
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head h2 { color: var(--text-dark); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  padding: 20px 0;
  gap: 20px;
  transition: color var(--t);
}
.faq-q:hover { color: var(--orange); }
.faq-q .arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.12);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s ease, background var(--t);
}
.faq-item.open .faq-q .arrow { transform: rotate(180deg); background: var(--orange); color: var(--text-white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 4px 0 20px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 85%;
}
.faq-item.open .faq-a { max-height: 320px; }

/* =========================
   CTA FINAL
   ========================= */
.cta-final { text-align: center; }
.cta-final h2 {
  color: var(--text-white);
  margin-bottom: 16px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final .lead {
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  font-size: 18px;
}
.cta-final .ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cta-final .btn-ghost { color: var(--text-white); }

/* =========================
   FOOTER
   ========================= */
.footer {
  padding: 40px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-white);
}
.footer-logo .badge { padding: 3px 9px; font-size: 10px; letter-spacing: 0.1em; }
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  font-size: 14px;
}
.footer-links a {
  color: rgba(255,255,255,0.72);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--text-white); }

/* =========================
   ACCESSIBILITY
   ========================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
  .hero-stack-img { transform: none !important; opacity: 1 !important; }
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* =========================
   PRELOADER
   ========================= */
#preloader {
  position: fixed;
  inset: 0;
  background: #010314;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.preloader-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.preloader-logo img { height: 48px; width: auto; }
.preloader-ai {
  background: #FF8A00;
  color: #010314;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.preloader-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.preloader-bar-wrap {
  width: 220px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar {
  height: 100%;
  width: 0%;
  background: #FF8A00;
  border-radius: 2px;
  transition: width 0.05s linear;
}
.preloader-count {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}
