/* =====================================================
   Landing Page — Diagnóstico & Estratégia de IA
   Template independente · Dark Mode · PAS Framework
   Paleta: Teal #00C4C4 | Azul #1B3BB5 | Roxo #8B30B2
   ===================================================== */

/* --- Variables (scoped to LP) --- */
.lp-body {
  --lp-bg:          #050A18;
  --lp-bg-alt:      #0A1025;
  --lp-bg-card:     rgba(255,255,255,.04);
  --lp-border:      rgba(255,255,255,.08);
  --lp-border-hover:rgba(255,255,255,.16);
  --lp-text:        #FFFFFF;
  --lp-text-sec:    rgba(255,255,255,.65);
  --lp-text-muted:  rgba(255,255,255,.40);

  --teal:           #00C4C4;
  --teal-dark:      #008E9E;
  --azul:           #1B3BB5;
  --azul-medio:     #2A4CC8;
  --roxo:           #8B30B2;
  --roxo-claro:     #A84CC8;
  --magenta:        #C040C0;

  --grad-principal:  linear-gradient(135deg, #00C4C4 0%, #1B3BB5 52%, #8B30B2 100%);
  --grad-horizontal: linear-gradient(90deg, #00C4C4 0%, #1B3BB5 52%, #8B30B2 100%);

  --shadow-glow:    0 0 60px rgba(0,196,196,.12);
  --shadow-card:    0 4px 30px rgba(0,0,0,.40);

  --radius:     12px;
  --radius-lg:  20px;
  --radius-pill: 50px;
  --transition: .3s cubic-bezier(.4,0,.2,1);

  --font-title: 'Poppins', sans-serif;
  --font-body:  'Montserrat', sans-serif;
}

/* --- Base --- */
.lp-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--lp-text-sec);
  background: var(--lp-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.lp-body h1, .lp-body h2, .lp-body h3, .lp-body h4, .lp-body h5, .lp-body h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1.15;
}

.lp-body a { color: var(--teal); transition: color var(--transition); }
.lp-body a:hover { color: var(--roxo-claro); }

.lp-body img { max-width: 100%; height: auto; }

.lp-gradient-text {
  background: var(--grad-horizontal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-section {
  padding: 6rem 0;
  position: relative;
}

/* --- Scrollbar --- */
.lp-body::-webkit-scrollbar { width: 6px; }
.lp-body::-webkit-scrollbar-track { background: var(--lp-bg); }
.lp-body::-webkit-scrollbar-thumb { background: var(--grad-principal); border-radius: 3px; }

/* =====================================================
   NAVBAR (minimal)
   ===================================================== */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: .75rem 0;
  background: rgba(5,10,24,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lp-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.lp-nav.scrolled {
  background: rgba(5,10,24,.95);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.lp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-nav__logo img {
  height: 40px;
  width: auto;
}

.lp-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.5rem;
  background: var(--grad-principal);
  color: #fff !important;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .875rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.lp-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,196,196,.35);
  color: #fff !important;
}

/* =====================================================
   HERO
   ===================================================== */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #030813 0%, #08142E 45%, #120828 100%);
  z-index: 0;
}

.lp-hero__bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,196,196,.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: lpOrbFloat 8s ease-in-out infinite;
}

.lp-hero__bg::after {
  content: '';
  position: absolute;
  bottom: -15%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,48,178,.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: lpOrbFloat 10s ease-in-out infinite reverse;
}

@keyframes lpOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -40px) scale(1.05); }
}

.lp-hero__content {
  position: relative;
  z-index: 1;
}

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  background: rgba(0,196,196,.1);
  border: 1px solid rgba(0,196,196,.25);
  border-radius: var(--radius-pill);
  color: var(--teal);
  font-family: var(--font-title);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.lp-hero__badge i { font-size: .7rem; }

.lp-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.lp-hero__sub {
  font-size: 1.15rem;
  color: var(--lp-text-sec);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.lp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.lp-hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.lp-hero__metric {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.lp-hero__metric-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,196,196,.1);
  border: 1px solid rgba(0,196,196,.2);
  border-radius: 10px;
  color: var(--teal);
  font-size: 1rem;
  margin-bottom: .25rem;
}

.lp-hero__metric-label {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .9rem;
  color: var(--lp-text);
}

.lp-hero__metric-sub {
  font-size: .8rem;
  color: var(--lp-text-muted);
}

/* Hero visual (right column) */
.lp-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.lp-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.lp-hero__ring--1 {
  width: 340px; height: 340px;
  border-color: rgba(0,196,196,.15);
  animation: lpRingSpin 20s linear infinite;
}

.lp-hero__ring--2 {
  width: 260px; height: 260px;
  border-color: rgba(27,59,181,.2);
  animation: lpRingSpin 15s linear infinite reverse;
}

.lp-hero__ring--3 {
  width: 180px; height: 180px;
  border-color: rgba(139,48,178,.2);
  animation: lpRingSpin 25s linear infinite;
}

@keyframes lpRingSpin {
  to { transform: rotate(360deg); }
}

.lp-hero__center-icon {
  position: relative;
  z-index: 2;
  width: 90px; height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-principal);
  border-radius: 24px;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 0 60px rgba(0,196,196,.3);
}

.lp-hero__float-card {
  position: absolute;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  animation: lpCardFloat 6s ease-in-out infinite;
  white-space: nowrap;
}

.lp-hero__float-card--a { top: 10%; right: 0; animation-delay: 0s; }
.lp-hero__float-card--b { bottom: 20%; left: 0; animation-delay: 2s; }
.lp-hero__float-card--c { bottom: 5%; right: 10%; animation-delay: 4s; }

@keyframes lpCardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.lp-hero__float-card .fc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-hero__float-card .fc-dot--teal { background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.lp-hero__float-card .fc-dot--azul { background: var(--azul); box-shadow: 0 0 8px var(--azul); }
.lp-hero__float-card .fc-dot--roxo { background: var(--roxo); box-shadow: 0 0 8px var(--roxo); }

.lp-hero__float-card strong {
  font-family: var(--font-title);
  font-size: .85rem;
  color: var(--lp-text);
}

.lp-hero__float-card span {
  font-size: .75rem;
  color: var(--lp-text-muted);
}

.lp-hero__float-card .fc-value {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  margin-left: auto;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  background: var(--grad-principal);
  color: #fff !important;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.lp-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,196,196,.35);
  color: #fff !important;
}

.lp-btn-primary:hover::before { opacity: 1; }

.lp-btn-primary i { font-size: .9rem; transition: transform var(--transition); }
.lp-btn-primary:hover i { transform: translateX(4px); }

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2rem;
  background: transparent;
  color: var(--lp-text) !important;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--lp-border-hover);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}

.lp-btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal) !important;
  background: rgba(0,196,196,.05);
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.lp-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.lp-section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem 1rem;
  background: rgba(0,196,196,.08);
  border: 1px solid rgba(0,196,196,.2);
  border-radius: var(--radius-pill);
  color: var(--teal);
  font-family: var(--font-title);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.lp-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  margin-bottom: .75rem;
}

.lp-section-sub {
  font-size: 1.05rem;
  color: var(--lp-text-sec);
  max-width: 600px;
  margin: 0 auto;
}

/* =====================================================
   GLASS CARD (utility)
   ===================================================== */
.lp-glass {
  background: var(--lp-bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.lp-glass:hover {
  border-color: var(--lp-border-hover);
  box-shadow: var(--shadow-glow);
}

/* =====================================================
   SECTION DIVIDERS
   ===================================================== */
.lp-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  background: transparent;
}

.lp-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lp-divider--flip svg {
  transform: scaleY(-1);
  top: 0;
  bottom: auto;
}

.lp-divider--hero-problems {
  background: linear-gradient(140deg, #061028, #111D3A);
}

.lp-divider--problems-agitate {
  background: linear-gradient(165deg, #101830, #0C1830);
}

.lp-divider--agitate-solution {
  background: linear-gradient(180deg, #1A1238, #101C38);
}

.lp-divider--solution-process {
  background: linear-gradient(200deg, #151234, #0B1630);
}

.lp-divider--process-forwho {
  background: linear-gradient(160deg, #111530, #121E3A);
}

.lp-divider--forwho-faq {
  background: linear-gradient(185deg, #101830, #0C1830);
}

.lp-divider--faq-form {
  background: linear-gradient(170deg, #0E1830, #111D3A);
}

/* =====================================================
   PROBLEMS SECTION
   ===================================================== */
.lp-problems {
  background: linear-gradient(165deg, #111D3A 0%, #142040 50%, #101830 100%);
  position: relative;
  overflow: hidden;
}

.lp-problems::before {
  content: '';
  position: absolute;
  top: -100px; left: -150px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(239,68,68,.07) 0%, transparent 70%);
  border-radius: 50%;
}

.lp-problems::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,158,11,.06) 0%, transparent 70%);
  border-radius: 50%;
}

.lp-problem-card {
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.lp-problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--grad-principal);
  opacity: 0;
  transition: opacity var(--transition);
}

.lp-problem-card:hover::before { opacity: 1; }

.lp-problem-card__icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.lp-problem-card__icon--red {
  background: rgba(239,68,68,.1);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,.2);
}

.lp-problem-card__icon--orange {
  background: rgba(245,158,11,.1);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,.2);
}

.lp-problem-card__icon--yellow {
  background: rgba(234,179,8,.1);
  color: #eab308;
  border: 1px solid rgba(234,179,8,.2);
}

.lp-problem-card__icon--pink {
  background: rgba(236,72,153,.1);
  color: #ec4899;
  border: 1px solid rgba(236,72,153,.2);
}

.lp-problem-card h4 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.lp-problem-card p {
  font-size: .9rem;
  color: var(--lp-text-muted);
  margin: 0;
}

/* =====================================================
   AGITATE SECTION
   ===================================================== */
.lp-agitate {
  position: relative;
  background: linear-gradient(180deg, #0C1830 0%, #142044 40%, #1A1238 100%);
  overflow: hidden;
}

.lp-agitate::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(27,59,181,.16) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(139,48,178,.12) 0%, transparent 60%);
}

.lp-agitate::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-horizontal);
  opacity: .15;
}

.lp-agitate__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.lp-agitate__stat {
  font-family: var(--font-title);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  background: var(--grad-horizontal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.lp-agitate__text {
  font-size: 1.2rem;
  color: var(--lp-text-sec);
  margin-bottom: 1.5rem;
}

.lp-agitate__hook {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--lp-text);
}

/* =====================================================
   SOLUTION / BENTO GRID
   ===================================================== */
.lp-solution {
  background: linear-gradient(200deg, #101C38 0%, #132040 40%, #151234 100%);
  position: relative;
  overflow: hidden;
}

.lp-solution::before {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,196,196,.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
}

.lp-solution::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-horizontal);
  opacity: .1;
}

.lp-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.lp-bento__item {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.lp-bento__item--wide {
  grid-column: span 2;
}

.lp-bento__item__num {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.04);
  line-height: 1;
}

.lp-bento__item__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.lp-bento__item__icon--teal {
  background: rgba(0,196,196,.1);
  color: var(--teal);
  border: 1px solid rgba(0,196,196,.2);
}

.lp-bento__item__icon--azul {
  background: rgba(27,59,181,.12);
  color: var(--azul-medio);
  border: 1px solid rgba(27,59,181,.25);
}

.lp-bento__item__icon--roxo {
  background: rgba(139,48,178,.1);
  color: var(--roxo-claro);
  border: 1px solid rgba(139,48,178,.2);
}

.lp-bento__item h4 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.lp-bento__item p {
  font-size: .9rem;
  color: var(--lp-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* =====================================================
   PROCESS STEPS
   ===================================================== */
.lp-process {
  background: linear-gradient(160deg, #0B1630 0%, #0F1A38 50%, #111530 100%);
  position: relative;
  overflow: hidden;
}

.lp-process::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,196,196,.08) 0%, transparent 70%);
  transform: translateX(-50%);
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.lp-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: var(--grad-horizontal);
  opacity: .3;
}

.lp-step {
  text-align: center;
  position: relative;
}

.lp-step__num {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--lp-bg-card);
  border: 2px solid var(--lp-border);
  border-radius: 50%;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}

.lp-step:hover .lp-step__num {
  background: var(--grad-principal);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 30px rgba(0,196,196,.3);
}

.lp-step__icon {
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: .75rem;
}

.lp-step h4 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.lp-step p {
  font-size: .9rem;
  color: var(--lp-text-muted);
  max-width: 280px;
  margin: 0 auto;
}

/* =====================================================
   FOR WHO SECTION
   ===================================================== */
.lp-for-who {
  background: linear-gradient(185deg, #121E3A 0%, #161240 50%, #101830 100%);
  position: relative;
  overflow: hidden;
}

.lp-for-who::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-horizontal);
  opacity: .15;
}

.lp-for-who::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,48,178,.09) 0%, transparent 70%);
  border-radius: 50%;
}

.lp-for-who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-for-who__item {
  padding: 2rem;
  text-align: center;
}

.lp-for-who__item i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.lp-for-who__item i.text-teal { color: var(--teal); }
.lp-for-who__item i.text-azul { color: var(--azul-medio); }
.lp-for-who__item i.text-roxo { color: var(--roxo-claro); }

.lp-for-who__item h4 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.lp-for-who__item p {
  font-size: .9rem;
  color: var(--lp-text-muted);
  margin: 0;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.lp-faq {
  background: linear-gradient(170deg, #0C1830 0%, #101E3A 50%, #0E1830 100%);
  position: relative;
  overflow: hidden;
}

.lp-faq::before {
  content: '';
  position: absolute;
  top: 50%; right: -180px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,59,181,.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
}

.lp-faq::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-horizontal);
  opacity: .12;
}

.lp-faq .accordion {
  max-width: 780px;
  margin: 0 auto;
}

.lp-faq .accordion-item {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}

.lp-faq .accordion-button {
  background: transparent;
  color: var(--lp-text);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.lp-faq .accordion-button:not(.collapsed) {
  color: var(--teal);
  background: rgba(0,196,196,.04);
}

.lp-faq .accordion-button::after {
  filter: brightness(0) invert(1);
  opacity: .5;
}

.lp-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(65%) sepia(90%) saturate(500%) hue-rotate(135deg);
  opacity: 1;
}

.lp-faq .accordion-body {
  color: var(--lp-text-sec);
  padding: 0 1.5rem 1.25rem;
  font-size: .95rem;
  line-height: 1.7;
}

/* =====================================================
   FORM SECTION
   ===================================================== */
.lp-form-section {
  position: relative;
  background: linear-gradient(195deg, #111D3A 0%, #142244 40%, #1A1238 100%);
  overflow: hidden;
}

.lp-form-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,196,196,.06) 0%, transparent 70%);
  border-radius: 50%;
}

.lp-form-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,48,178,.06) 0%, transparent 70%);
  border-radius: 50%;
}

.lp-form-copy {
  position: relative;
  z-index: 1;
}

.lp-form-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.lp-form-copy > p {
  font-size: 1.05rem;
  color: var(--lp-text-sec);
  margin-bottom: 2rem;
}

.lp-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(0,196,196,.06);
  border: 1px solid rgba(0,196,196,.15);
  margin-bottom: 2rem;
}

.lp-guarantee__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,196,196,.15);
  border-radius: 12px;
  color: var(--teal);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.lp-guarantee__text strong {
  display: block;
  font-family: var(--font-title);
  font-size: .95rem;
  color: var(--lp-text);
  margin-bottom: .25rem;
}

.lp-guarantee__text span {
  font-size: .85rem;
  color: var(--lp-text-sec);
}

.lp-form-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-form-checklist li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 0;
  font-size: .95rem;
  color: var(--lp-text-sec);
}

.lp-form-checklist li i {
  color: var(--teal);
  font-size: .9rem;
  flex-shrink: 0;
}

/* Form Card */
.lp-form-card {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
}

.lp-form-card__title {
  font-size: 1.3rem;
  margin-bottom: .5rem;
  text-align: center;
}

/* Scarcity — Hero */
.lp-scarcity-hero {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: var(--radius);
  font-size: .9rem;
  color: #f59e0b;
  margin-bottom: 1.5rem;
}

.lp-scarcity-hero strong { color: #fbbf24; }

/* Pricing — Form Card */
.lp-form-card__pricing {
  text-align: center;
  margin-bottom: .5rem;
}

.lp-form-card__old-price {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--lp-text-muted);
  text-decoration: line-through;
  margin-bottom: .15rem;
}

.lp-form-card__price-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 600;
  color: #f59e0b;
  margin-top: .15rem;
}

.lp-form-card__price {
  text-align: center;
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--grad-horizontal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .25rem;
}

.lp-form-card__price small {
  font-size: 1.1rem;
  font-weight: 600;
}

.lp-form-card__sub {
  text-align: center;
  font-size: .9rem;
  color: var(--lp-text-muted);
  margin-bottom: 1.75rem;
}

.lp-form-card .form-label {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: .85rem;
  color: var(--lp-text-sec);
  margin-bottom: .4rem;
}

.lp-form-card .form-control,
.lp-form-card .form-select {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--lp-border);
  color: var(--lp-text);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.lp-form-card .form-control:focus,
.lp-form-card .form-select:focus {
  background: rgba(255,255,255,.07);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,196,196,.12);
  color: var(--lp-text);
}

.lp-form-card .form-control::placeholder {
  color: var(--lp-text-muted);
}

.lp-form-card .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(255,255,255,.5)' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.lp-form-card .form-select option {
  background: #1a1f35;
  color: #fff;
}

.lp-form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1.05rem;
}

.lp-form-privacy {
  text-align: center;
  font-size: .8rem;
  color: var(--lp-text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}

.lp-form-privacy i { margin-right: .3rem; }

.lp-form-error {
  font-size: .8rem;
  color: #ef4444;
  margin-top: .3rem;
}

/* =====================================================
   SUCCESS STATE
   ===================================================== */
.lp-success {
  text-align: center;
  padding: 3rem 2rem;
}

.lp-success__icon {
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(0,196,196,.12);
  border: 2px solid rgba(0,196,196,.3);
  border-radius: 50%;
  color: var(--teal);
  font-size: 2.5rem;
}

.lp-success h3 {
  font-size: 1.5rem;
  margin-bottom: .75rem;
}

.lp-success p {
  color: var(--lp-text-sec);
  max-width: 400px;
  margin: 0 auto 1.5rem;
}

/* =====================================================
   FOOTER (minimal)
   ===================================================== */
.lp-footer {
  background: #030813;
  border-top: 1px solid var(--lp-border);
  padding: 2rem 0;
}

.lp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.lp-footer__logo img {
  height: 32px;
  width: auto;
  opacity: .7;
}

.lp-footer__copy {
  font-size: .8rem;
  color: var(--lp-text-muted);
  margin: 0;
}

.lp-footer__social {
  display: flex;
  gap: .75rem;
}

.lp-footer__social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  color: var(--lp-text-sec) !important;
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}

.lp-footer__social a:hover {
  background: rgba(0,196,196,.1);
  border-color: rgba(0,196,196,.3);
  color: var(--teal) !important;
}

/* =====================================================
   WHATSAPP BUTTON (override for dark mode)
   ===================================================== */
.lp-body .whatsapp-float {
  z-index: 999;
}

/* =====================================================
   MESSAGES (Django messages)
   ===================================================== */
.lp-messages {
  position: fixed;
  top: 80px;
  right: 1rem;
  z-index: 9999;
  max-width: 400px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991.98px) {
  .lp-hero__visual { display: none; }

  .lp-bento {
    grid-template-columns: 1fr 1fr;
  }

  .lp-bento__item--wide {
    grid-column: span 2;
  }

  .lp-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lp-steps::before { display: none; }

  .lp-for-who__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .lp-section { padding: 4rem 0; }

  .lp-hero { padding: 6rem 0 3rem; min-height: auto; }
  .lp-hero__title { font-size: 2rem; }

  .lp-hero__metrics { gap: 1.25rem; }

  .lp-bento {
    grid-template-columns: 1fr;
  }

  .lp-bento__item--wide {
    grid-column: span 1;
  }

  .lp-form-card { padding: 1.5rem; }

  .lp-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .lp-nav__cta span { display: none; }
  .lp-nav__cta i { margin: 0; }
}

@media (max-width: 575.98px) {
  .lp-hero__ctas {
    flex-direction: column;
  }

  .lp-hero__ctas .lp-btn-primary,
  .lp-hero__ctas .lp-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .lp-agitate__stat {
    font-size: 3.5rem;
  }
}
