/* ==========================================================================
   ParejaCheck - Design System & Stylesheet
   Palette: Premium Deep Obsidian, Crimson Ruby Gradient, Tactical Emerald
   ========================================================================== */

:root {
  --bg-main: #090c12;
  --bg-card: #111622;
  --bg-card-hover: #171e2e;
  --bg-card-glass: rgba(17, 22, 34, 0.75);
  
  --crimson-primary: #e11d48;
  --crimson-hover: #be123c;
  --crimson-dark: #9f1239;
  --crimson-gradient: linear-gradient(135deg, #f43f5e 0%, #e11d48 50%, #9f1239 100%);
  --crimson-glow: rgba(225, 29, 72, 0.4);

  --emerald-accent: #10b981;
  --emerald-soft: rgba(16, 185, 129, 0.15);
  --amber-accent: #f59e0b;

  --text-white: #ffffff;
  --text-gray-100: #f1f5f9;
  --text-gray-300: #cbd5e1;
  --text-gray-400: #94a3b8;
  --text-gray-500: #64748b;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-crimson: rgba(225, 29, 72, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 25px var(--crimson-glow);
}

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

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-gray-100);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Base Typography */
h1, h2, h3, h4 {
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

/* SPA Sections switcher */
.app-section-view {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(6px);
}

.app-section-view.active-view {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

/* Containers */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-sm {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header & Ticker Bar */
/* Top Ticker Marquee Crimson Strip */
.top-ticker-bar {
  background: rgba(14, 18, 27, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.45rem 0;
  overflow: hidden;
  position: relative;
  font-size: 0.8rem;
  color: var(--text-gray-300);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  gap: 2.5rem;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-time {
  color: var(--emerald-accent);
  font-size: 0.75rem;
}

/* Secondary Marquee Ribbon (Modelado do topo da foto 1) */
.sub-ticker-ribbon {
  background: var(--crimson-gradient);
  color: #fff;
  padding: 0.35rem 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.sub-ticker-track {
  display: flex;
  gap: 2rem;
  animation: marquee 22s linear infinite;
}

/* ==========================================================================
   GLOBAL BRAND NAVIGATION & LOGO
   ========================================================================== */
.main-nav-bar {
  background: rgba(9, 12, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  user-select: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand-logo:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.brand-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.25) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1.5px solid rgba(225, 29, 72, 0.6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(225, 29, 72, 0.35);
  position: relative;
}

.brand-accent {
  background: var(--crimson-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.brand-badge-tm {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fb7185;
  vertical-align: super;
  margin-left: 2px;
}

/* Country & Currency Widget in Navbar */
.nav-country-widget {
  display: flex;
  align-items: center;
}

.geo-country-picker {
  background: #111726;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.geo-country-picker:hover,
.geo-country-picker:focus {
  border-color: var(--crimson-primary);
  background: #161f33;
  box-shadow: 0 0 12px rgba(225, 29, 72, 0.3);
}

/* ==========================================================================
   LANDING PAGE (LP) HERO COM BACKGROUND CINEMATOGRÁFICO
   ========================================================================== */

.hero-lp-section {
  position: relative;
  padding: 3.5rem 0 5rem 0;
  text-align: center;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(9, 12, 18, 0.72) 0%, rgba(9, 12, 18, 0.88) 50%, rgba(9, 12, 18, 1) 100%), url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
}

.hero-glow-bg {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.28) 0%, rgba(9, 12, 18, 0) 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.badge-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(225, 29, 72, 0.18);
  border: 1px solid rgba(225, 29, 72, 0.45);
  color: #fecdd3;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
}

.pulse-dot-red {
  width: 8px;
  height: 8px;
  background-color: var(--crimson-primary);
  border-radius: 50%;
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.8); }
  70% { box-shadow: 0 0 0 10px rgba(225, 29, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.hero-main-title {
  font-size: 2.4rem;
  line-height: 1.15;
  max-width: 720px;
  margin: 0 auto 1.35rem auto;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .hero-main-title {
    font-size: 3.5rem;
  }
}

.highlight-crimson {
  background: var(--crimson-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-gray-200);
  max-width: 600px;
  margin: 0 auto 2.25rem auto;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Call To Action Buttons */
.btn-primary-glow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--crimson-gradient);
  color: #ffffff;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px var(--crimson-glow);
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(225, 29, 72, 0.6);
  filter: brightness(1.08);
}

.btn-primary-glow:active {
  transform: translateY(1px);
}

.trust-micro-guarantees {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-gray-400);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-item svg {
  color: var(--emerald-accent);
}

/* Features Grid */
.features-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-subtle);
}

.section-head-title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2.25rem;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.feature-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(225, 29, 72, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fb7185;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-gray-400);
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-gray-300);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list li::before {
  content: "•";
  color: var(--crimson-primary);
  font-size: 1.2rem;
}

.fact-highlight-box {
  margin-top: 1.25rem;
  background: rgba(16, 185, 129, 0.08);
  border-left: 3px solid var(--emerald-accent);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.8rem;
  color: #a7f3d0;
}

/* Mockup previews inside Feature Cards (Modelados das fotos 2, 3 e 4) */
.feature-mockup-wrapper {
  background: #090d14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  margin-top: 1.25rem;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Card 1: 2-column scan + 3 found profiles (Modelado de lp 2) */
.lp2-card1-preview {
  background: #090d15;
  padding: 0.75rem;
}

.lp2-card1-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 0.75rem;
  align-items: center;
}

.lp2-target-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #111726;
  border-radius: 8px;
  padding: 0.6rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lp2-mini-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 0.4rem;
}

.lp2-mini-label.highlight-red {
  color: #fb7185;
}

.lp2-target-photo-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--crimson-primary);
  margin-bottom: 0.5rem;
  box-shadow: 0 0 12px rgba(225, 29, 72, 0.4);
}

.lp2-target-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp2-apps-scanned-icons {
  display: flex;
  gap: 4px;
  font-size: 0.75rem;
}

.lp2-found-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lp2-found-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #131929;
  border: 1px solid rgba(225, 29, 72, 0.25);
  border-radius: 6px;
  padding: 0.35rem 0.5rem;
}

.lp2-found-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.lp2-found-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.lp2-found-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}

.lp2-found-meta {
  font-size: 0.62rem;
  color: #94a3b8;
}

/* Card 2: Biometric faces with viewfinder frame (Modelado de lp 2) */
.lp2-face-mockup-wrap {
  background: #090d15;
  padding: 0.85rem;
}

.lp2-faces-row {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.lp2-face-box {
  position: relative;
  width: 110px;
  height: 125px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(16, 185, 129, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.lp2-face-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp2-biometric-corner-frame {
  position: absolute;
  inset: 6px;
  border: 2px solid #34d399;
  border-radius: 6px;
  pointer-events: none;
}

.lp2-face-tag {
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  background: rgba(6, 78, 59, 0.9);
  color: #a7f3d0;
  font-size: 0.65rem;
  font-weight: 800;
  text-align: center;
  padding: 2px 0;
  border-radius: 4px;
}

.card-mockup-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.card-feature-preview-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.card-feature-preview-img:hover {
  transform: scale(1.02);
}

.card-mockup-overlay-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(225, 29, 72, 0.4);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.live-dot-red {
  width: 8px;
  height: 8px;
  background: #e11d48;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #e11d48;
  animation: pulseGlow 1.5s infinite;
}

/* Real Instagram DM Mockup with Blur */
.ig-dm-mockup-container {
  background: #000000;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.ig-dm-header {
  background: #121212;
  border-bottom: 1px solid #262626;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ig-dm-user-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.ig-avatar-status {
  position: relative;
  width: 34px;
  height: 34px;
}

.ig-dm-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #262626;
}

.ig-online-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  border: 1.5px solid #121212;
}

.ig-dm-user-info {
  display: flex;
  flex-direction: column;
}

.ig-dm-username {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ig-dm-activity {
  font-size: 0.68rem;
  color: #a8a8a8;
}

.ig-dm-actions {
  color: #a8a8a8;
  cursor: pointer;
}

.ig-dm-body {
  padding: 0.85rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #000000;
  min-height: 180px;
}

.ig-dm-bubble {
  max-width: 82%;
  padding: 0.55rem 0.8rem;
  border-radius: 18px;
  font-size: 0.76rem;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  position: relative;
}

.ig-bubble-received {
  background: #262626;
  color: #f5f5f5;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.ig-bubble-sent {
  background: linear-gradient(135deg, #7c3aed 0%, #db2777 50%, #e11d48 100%);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ig-bubble-time {
  font-size: 0.6rem;
  opacity: 0.65;
  align-self: flex-end;
  margin-top: 2px;
}

/* Efecto de texto borrado e intrigante */
.ig-bubble-blur .ig-bubble-text {
  filter: blur(4.5px);
  user-select: none;
  transition: filter 0.3s ease;
}

.ig-dm-mockup-container:hover .ig-bubble-blur .ig-bubble-text {
  filter: blur(2.5px);
}

.ig-dm-evidence-overlay {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  z-index: 2;
}

.evidence-lock-pill {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(225, 29, 72, 0.6);
  backdrop-filter: blur(8px);
  color: #fecdd3;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

/* DateSafe Dossier Mockup */
.datesafe-dossier-preview {
  background: #0b0f19;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.datesafe-header-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
}

.datesafe-stamp {
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid var(--crimson-primary);
  color: #fb7185;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.datesafe-id {
  font-size: 0.7rem;
  font-family: monospace;
  color: var(--text-gray-400);
}

.datesafe-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}

.datesafe-label {
  color: var(--text-gray-400);
}

.datesafe-value.warning-text {
  color: #fb7185;
  font-weight: 800;
}

.datesafe-value.alert-text {
  color: #f43f5e;
}

.datesafe-value.score-high {
  color: #ef4444;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.datesafe-bar-wrap {
  width: 100%;
  height: 6px;
  background: #1e293b;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.2rem;
}

.datesafe-bar-fill {
  height: 100%;
  background: var(--crimson-gradient);
  border-radius: 999px;
}

.chat-bubble-mock {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.chat-msg-received {
  background: #1e2638;
  color: #e2e8f0;
  padding: 0.55rem 0.85rem;
  border-radius: 12px 12px 12px 2px;
  align-self: flex-start;
  max-width: 85%;
}

.chat-msg-sent {
  background: var(--crimson-primary);
  color: #fff;
  padding: 0.55rem 0.85rem;
  border-radius: 12px 12px 2px 12px;
  align-self: flex-end;
  max-width: 85%;
}

.avatar-face-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.face-box-scan {
  position: relative;
  width: 75px;
  height: 75px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--emerald-accent);
}

.face-box-scan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.face-scan-brackets {
  position: absolute;
  inset: 4px;
  border: 2px dashed rgba(16, 185, 129, 0.8);
  border-radius: 6px;
  pointer-events: none;
}

.problem-solution-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(9, 12, 18, 0.94) 0%, rgba(9, 12, 18, 0.82) 45%, rgba(9, 12, 18, 0.95) 100%), url('../img/problems-bg.jpg');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .problem-solution-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.emotional-quote-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.emotional-quote-card {
  background: rgba(17, 22, 34, 0.85);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--crimson-primary);
}

.quote-title {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.quote-truth {
  font-size: 0.84rem;
  color: var(--text-gray-300);
}

.problem-bullet-card {
  background: var(--crimson-gradient);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  color: #fff;
  box-shadow: 0 15px 35px rgba(225, 29, 72, 0.35);
}

.problem-bullet-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.problem-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.problem-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.problem-bullets li::before {
  content: "•";
  color: #ffe4e6;
  font-size: 1.4rem;
  line-height: 1;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comparison-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.comparison-card.card-gain {
  border-top: 4px solid var(--emerald-accent);
}

.comparison-card.card-avoid {
  border-top: 4px solid var(--crimson-primary);
}

.comparison-header {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.comparison-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-gray-300);
}

/* Testimonials / Social Proof LATAM */
.testimonials-section {
  padding: 3.5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
}

.testi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.testi-author {
  font-weight: 700;
  font-size: 0.95rem;
}

.testi-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 0.85rem;
  color: var(--text-gray-300);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.testi-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-gray-500);
}

/* Bottom Urgency CTA Section (Modelado da Foto 8 com imagem de fundo) */
.bottom-cta-section {
  padding: 4.5rem 0 5rem 0;
  position: relative;
  background-image: linear-gradient(180deg, rgba(9, 12, 18, 0.94) 0%, rgba(15, 23, 42, 0.90) 50%, rgba(9, 12, 18, 0.98) 100%), url('../img/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border-subtle);
}

.bottom-cta-card {
  background: var(--crimson-gradient);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(225, 29, 72, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 820px;
  margin: 0 auto;
}

.bottom-cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.bottom-cta-sub {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bottom-cta-title {
    font-size: 1.7rem;
  }
  .bottom-cta-card {
    padding: 2rem 1.25rem;
  }
}

/* ==========================================================================
   QUIZ ENGINE STYLES
   ========================================================================== */

.quiz-main-wrapper {
  padding: 1.5rem 0 3rem 0;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
}

.quiz-top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.btn-icon-back {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-gray-300);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-icon-back:hover {
  background: rgba(255, 255, 255, 0.12);
}

.quiz-progress-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 2rem auto;
}

.quiz-progress-track {
  width: 100%;
  height: 6px;
  background: #171d2b;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.quiz-progress-fill {
  height: 100%;
  width: 10%;
  background: var(--crimson-gradient);
  transition: width 0.3s ease;
  border-radius: var(--radius-full);
}

.quiz-step-indicator-text {
  text-align: right;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-gray-400);
}

/* Quiz Steps Pane */
.quiz-step-pane {
  display: none;
  animation: fadeInStep 0.28s ease forwards;
}

.quiz-step-pane.active-step {
  display: block;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question-title {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.quiz-question-sub {
  font-size: 0.85rem;
  color: var(--text-gray-400);
  text-align: center;
  margin-bottom: 2rem;
}

/* Step 1: Gender Selection Cards */
.gender-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gender-select-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gender-select-btn:hover {
  border-color: var(--crimson-primary);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.gender-avatar-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 2px solid var(--border-subtle);
}

.gender-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gender-label-badge {
  background: #1e2638;
  color: var(--text-white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.gender-select-btn:hover .gender-label-badge {
  background: var(--crimson-primary);
}

/* Form Inputs within Quiz */
.quiz-input-field {
  width: 100%;
  background: #141926;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--text-white);
  font-size: 1.1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 1.5rem;
}

.quiz-input-field:focus {
  border-color: var(--crimson-primary);
  box-shadow: 0 0 15px rgba(225, 29, 72, 0.25);
}

/* Yes / No Choices Buttons */
.bool-options-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quiz-bool-btn {
  flex: 1;
  background: #161c2b;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.quiz-bool-btn:hover {
  border-color: var(--crimson-primary);
  background: var(--bg-card-hover);
}

.quiz-bool-btn.primary-option {
  background: var(--crimson-gradient);
  border: none;
  box-shadow: 0 4px 15px var(--crimson-glow);
}

/* Step 4: Suspect Platforms Interactive List & SVGs */
.platforms-selection-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.platform-check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #121724;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.platform-check-item:hover {
  background: #171e2e;
  border-color: rgba(225, 29, 72, 0.4);
  transform: translateY(-1px);
}

.platform-check-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.platform-check-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-check-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.platform-check-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

.platform-check-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: rgba(0, 0, 0, 0.2);
}

.platform-check-checkbox svg {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
  color: #fff;
}

/* Selected state with active Crimson border and glowing checkmark */
.platform-check-item.selected-platform {
  background: linear-gradient(90deg, rgba(225, 29, 72, 0.15) 0%, rgba(18, 23, 36, 0.9) 100%);
  border-color: var(--crimson-primary);
  box-shadow: 0 0 16px rgba(225, 29, 72, 0.25);
}

.platform-check-item.selected-platform .platform-check-checkbox {
  background: var(--crimson-primary);
  border-color: var(--crimson-primary);
}

.platform-check-item.selected-platform .platform-check-checkbox svg {
  opacity: 1;
  transform: scale(1);
}

/* App Dot Brand Icons in Card 1 */
.app-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.app-dot svg {
  width: 14px;
  height: 14px;
}

/* City Autocomplete Dropdown */
.city-autocomplete-wrapper {
  position: relative;
  width: 100%;
}

.city-suggestions-dropdown {
  position: absolute;
  top: calc(100% - 1.2rem);
  left: 0;
  right: 0;
  background: #111624;
  border: 1px solid var(--border-crimson);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  z-index: 1000;
  max-height: 220px;
  overflow-y: auto;
}

.city-suggestion-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.15s ease, color 0.15s ease;
  font-size: 0.9rem;
  color: var(--text-gray-200);
}

.city-suggestion-item:last-child {
  border-bottom: none;
}

.city-suggestion-item:hover, .city-suggestion-item.active {
  background: #1c2438;
  color: #fff;
}

.city-item-icon {
  color: var(--crimson-primary);
  font-size: 1rem;
}

.city-item-title {
  font-weight: 700;
  color: #fff;
}

.city-item-subtitle {
  font-size: 0.75rem;
  color: var(--text-gray-400);
  margin-left: auto;
}

/* Tactical Map in Quiz (Step 8) */
.tactical-map-container {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(225, 29, 72, 0.4);
  margin-bottom: 1.5rem;
  background: #111622;
}

#tactical-map, #offer-dossier-map {
  width: 100%;
  height: 100%;
  background: #111622;
}

/* Ensure Leaflet tiles stay naturally dark and crisp */
.leaflet-container {
  background: #090c12 !important;
}

.dark-tactical-tiles {
  filter: brightness(0.65) invert(1) contrast(2.8) hue-rotate(200deg) saturate(0.25);
}

/* Sonar / Radar Pulse on Leaflet */
.tactical-radar-wrapper {
  position: relative;
}

.radar-hud-tag {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid #fb7185;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 0 10px rgba(225, 29, 72, 0.5);
  z-index: 100;
  pointer-events: none;
}

.radar-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.radar-center-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #e11d48;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px #fb7185, 0 0 20px rgba(225, 29, 72, 0.8);
  z-index: 10;
  border: 2px solid #fff;
}

.radar-sonar-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(225, 29, 72, 0.75);
  border-radius: 50%;
  animation: radarSonarPulse 2.6s infinite cubic-bezier(0.1, 0.2, 0.4, 1);
  pointer-events: none;
}

.wave-1 { width: 44px; height: 44px; animation-delay: 0s; }
.wave-2 { width: 96px; height: 96px; animation-delay: 0.85s; }
.wave-3 { width: 148px; height: 148px; animation-delay: 1.7s; }

@keyframes radarSonarPulse {
  0% { transform: translate(-50%, -50%) scale(0.15); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.radar-sweep-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  margin-top: -70px;
  margin-left: -70px;
  border-radius: 50%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(225, 29, 72, 0.5) 0deg, rgba(225, 29, 72, 0.05) 55deg, transparent 65deg);
  animation: radarSweepRotate 2.8s linear infinite;
  pointer-events: none;
}

@keyframes radarSweepRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hotspot-badge {
  background: rgba(14, 18, 27, 0.92);
  border: 1px solid #ff4458;
  border-radius: var(--radius-full);
  padding: 3px 8px;
  font-size: 0.68rem;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Step 9 / 10: Photo Drop & Face Scanner */
.photo-upload-box {
  background: #131825;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.photo-upload-box:hover {
  border-color: var(--crimson-primary);
  background: #171e2e;
}

.photo-preview-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.photo-preview-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Face Mesh Scanner Overlay */
.face-scanner-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.face-laser-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fb7185;
  box-shadow: 0 0 12px #fb7185, 0 0 24px #e11d48;
  animation: laserScan 1.6s infinite ease-in-out alternate;
}

@keyframes laserScan {
  0% { top: 5%; }
  100% { top: 92%; }
}

.face-mesh-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(225, 29, 72, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 29, 72, 0.25) 1px, transparent 1px);
  background-size: 18px 18px;
}

/* Mini Scan Overlay Popup */
.mini-scan-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.mini-scan-modal.active {
  display: flex;
}

.mini-scan-card {
  background: #131825;
  border: 1px solid var(--border-crimson);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 90%;
  max-width: 380px;
  text-align: center;
}

/* Deep Scan Screen (Step 11) */
.deep-scan-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.radar-spinner-wrap {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-spinner-ring {
  width: 100%;
  height: 100%;
  border: 3px solid rgba(225, 29, 72, 0.15);
  border-top-color: var(--crimson-primary);
  border-radius: 50%;
  animation: spinRing 1s linear infinite;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.deep-scan-checklist {
  text-align: left;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-gray-300);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.deep-check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #161c2a;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
}

/* Lead Capture Form Card */
.lead-capture-card {
  background: var(--bg-card);
  border: 1px solid var(--border-crimson);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.lead-evidence-alert {
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(225, 29, 72, 0.3);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  color: #fb7185;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ==========================================================================
   OFFER & PAYWALL SECTION
   ========================================================================== */

.offer-header-banner {
  background: linear-gradient(90deg, #881337 0%, #be123c 50%, #881337 100%);
  color: #ffffff;
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.offer-timer-val {
  background: #000;
  padding: 2px 7px;
  border-radius: 4px;
  color: #f43f5e;
  font-family: monospace;
  font-size: 0.95rem;
}

.offer-content-wrap {
  padding: 2.5rem 0 4rem 0;
}

.offer-main-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.offer-main-subtitle {
  text-align: center;
  color: var(--text-gray-400);
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto 2rem auto;
}

/* Forensic Dossier Card */
.forensic-dossier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-crimson);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.dossier-header-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-gray-400);
}

.status-badge-risk {
  background: rgba(225, 29, 72, 0.15);
  color: #fb7185;
  border: 1px solid rgba(225, 29, 72, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.dossier-target-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.dossier-photo-frame {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--crimson-primary);
  position: relative;
}

.dossier-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
}

.dossier-lock-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  color: #fb7185;
}

.dossier-details h4 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.dossier-details p {
  font-size: 0.85rem;
  color: var(--text-gray-400);
}

/* Match Accuracy Meter */
.accuracy-meter-box {
  background: #141926;
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.accuracy-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.accuracy-track {
  width: 100%;
  height: 8px;
  background: #202738;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.accuracy-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #f43f5e);
}

/* Offer Blurred Matches Row (Modelado da Imagem 2 da pasta 3- offer) */
.offer-blurred-matches-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.offer-match-card {
  background: #111520;
  border: 1px solid rgba(225, 29, 72, 0.25);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  text-align: center;
}

.offer-match-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0.45rem;
}

.offer-match-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.1);
}

.offer-match-lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fb7185;
}

.offer-match-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-gray-300);
}

/* Deception Signals Alert Box (Modelado da Imagem 2 da pasta 3- offer) */
.offer-deception-warning-box {
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(225, 29, 72, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.offer-deception-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fb7185;
  margin-bottom: 0.4rem;
}

.offer-deception-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #e2e8f0;
  margin: 0;
}

/* Pricing Cards Table */
.pricing-options-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .pricing-options-container {
    grid-template-columns: 1fr 1fr;
  }
}

.plan-selection-card {
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-selection-card:hover {
  border-color: rgba(225, 29, 72, 0.4);
  transform: translateY(-3px);
}

.plan-selection-card.active-plan {
  border-color: var(--crimson-primary);
  background: linear-gradient(180deg, #161b2a 0%, #1a1624 100%);
  box-shadow: 0 0 25px rgba(225, 29, 72, 0.2);
}

.plan-badge-top {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--crimson-gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.plan-price-current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
}

.plan-price-old {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--text-gray-500);
}

.plan-features-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-gray-300);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.plan-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-features-list li svg {
  color: var(--emerald-accent);
  flex-shrink: 0;
}

/* Paywall Guaranteed Badges */
.paywall-security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--text-gray-400);
}

/* Modal Checkout */
.checkout-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.checkout-modal-backdrop.modal-open {
  display: flex;
}

.checkout-modal-card {
  background: #111622;
  border: 1px solid var(--border-crimson);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.btn-close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-gray-400);
  font-size: 1.5rem;
  cursor: pointer;
}

.crypto-invoice-card {
  background: #0d121c;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1rem;
  text-align: center;
}

.crypto-invoice-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.qr-mockup-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 1.25rem auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  padding: 8px;
}

.qr-mockup-wrapper img {
  width: 100%;
  height: 100%;
}

.copy-field {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.85rem;
}

.copy-field input {
  flex: 1;
  background: #171d2b;
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  outline: none;
}

.copy-field button {
  background: var(--crimson-primary);
  border: none;
  color: #fff;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
}

.crypto-confirm-notice {
  font-size: 0.75rem;
  color: var(--text-gray-400);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.pulse-dot-green {
  width: 7px;
  height: 7px;
  background-color: var(--emerald-accent);
  border-radius: 50%;
  animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   LOVERADAR REFINED STYLES: SYSTEM STATUS, PHOTO SLOTS, OFFERS & RADAR
   ========================================================================== */

/* System Status (Quiz Step 0) */
.system-status-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 420px;
  margin: 0 auto 2rem auto;
}

.system-status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease;
}

.system-status-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
}

.system-status-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-gray-100);
}

/* Fact Callout Cards (LoveRadar Green & Crimson Notes) */
.fact-callout-card {
  background: #111726;
  border-left: 3px solid #10b981;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: var(--text-gray-300);
  line-height: 1.45;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.fact-tag-green {
  color: #10b981;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

/* Map Laser Scan Banner */
.map-scan-laser-banner {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(9, 12, 18, 0.85);
  border: 1px solid #e11d48;
  color: #fb7185;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 500;
  box-shadow: 0 0 12px rgba(225, 29, 72, 0.5);
  letter-spacing: 0.05em;
  pointer-events: none;
}

/* 6-Photo Slots Grid (Step 9) */
.photo-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 380px;
  margin: 0 auto 1.75rem auto;
}

.photo-slot-item {
  aspect-ratio: 1;
  background: #111624;
  border: 1.5px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.photo-slot-item:hover {
  border-color: #fb7185;
  background: #161e30;
}

.photo-slot-item.primary-slot {
  border-color: rgba(225, 29, 72, 0.5);
  border-style: solid;
}

.slot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-empty-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fb7185;
}

.slot-placeholder {
  font-size: 1.5rem;
  color: var(--text-gray-500);
  font-weight: 300;
}

.slot-remove-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.75);
  border: none;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Face confirmed step 10 */
.face-confirmed-card {
  max-width: 260px;
  margin: 0 auto 1.5rem auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
  border: 2px solid #10b981;
}

.face-confirmed-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.face-confirmed-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.face-biometric-reticle {
  position: absolute;
  inset: 10px;
  border: 2px solid #34d399;
  border-radius: 8px;
  pointer-events: none;
}

/* Deep Radar Multi-ring Pulse (Step 11) */
.radar-scan-multi-ring {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem auto;
}

.radar-ring-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.15);
  border: 1.5px solid rgba(225, 29, 72, 0.5);
  animation: radarMultiPulse 2.5s infinite ease-out;
}

.radar-ring-pulse.r1 { animation-delay: 0s; }
.radar-ring-pulse.r2 { animation-delay: 0.8s; }
.radar-ring-pulse.r3 { animation-delay: 1.6s; }

.radar-center-blip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #e11d48;
  border-radius: 50%;
  box-shadow: 0 0 15px #e11d48;
}

@keyframes radarMultiPulse {
  0% { transform: scale(0.3); opacity: 0.9; }
  100% { transform: scale(1.3); opacity: 0; }
}

.scan-progress-pill-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
}

.platform-scan-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  max-width: 320px;
  margin: 0 auto;
}

.app-status-badge {
  background: #111726;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.app-status-badge.scanned {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.08);
}

.app-scan-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64748b;
  display: inline-block;
}

.app-status-badge.scanned .app-scan-dot {
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

/* Privacy Lock Banner (Lead Gate) */
.privacy-lock-banner {
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.4);
  color: #fb7185;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.lead-evidence-alert-card {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid #fb7185;
  color: #fecdd3;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

/* Offer Red Deliverables Card (LoveRadar Foto 3) */
.offer-red-deliverables-card {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 50%, #881337 100%);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  color: #fff;
  box-shadow: 0 20px 45px rgba(225, 29, 72, 0.45);
  margin-bottom: 3rem;
}

.offer-red-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.offer-red-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.offer-red-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.offer-red-btn {
  width: 100%;
  background: #0f172a !important;
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  font-weight: 800;
}

.offer-red-btn:hover {
  background: #1e293b !important;
  transform: translateY(-2px);
}

/* Refined Pricing Table Styles (Foto 4 & Stack Irresistível) */
.plan-category-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.vip-tag {
  color: #fb7185;
  background: rgba(225, 29, 72, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid rgba(225, 29, 72, 0.3);
}

.plan-summary-note {
  font-size: 0.8rem;
  color: var(--text-gray-400);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.vip-note {
  color: #fda4af;
  font-weight: 600;
}

.plan-badge-top-wrap {
  position: absolute;
  top: -14px;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.plan-badge-top.glow-badge {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.6);
  letter-spacing: 0.03em;
}

.plan-badge-save {
  background: #10b981;
  color: #064e3b;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.vip-highlight-card {
  border: 2px solid #e11d48 !important;
  background: linear-gradient(180deg, #1a1526 0%, #151222 100%) !important;
  box-shadow: 0 10px 40px rgba(225, 29, 72, 0.3), 0 0 0 1px rgba(251, 113, 133, 0.2) !important;
  transform: scale(1.02);
  z-index: 2;
}

.vip-highlight-card:hover {
  box-shadow: 0 15px 50px rgba(225, 29, 72, 0.45), 0 0 0 1px rgba(251, 113, 133, 0.4) !important;
}

.bullet-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
}

.bullet-check.green {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.bullet-check.red {
  background: rgba(225, 29, 72, 0.25);
  color: #fb7185;
}

.bullet-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(100, 116, 139, 0.15);
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.bullet-disabled {
  opacity: 0.45;
}

.text-dim {
  color: var(--text-gray-500);
  text-decoration: line-through;
}

.vip-bullets li {
  color: #f1f5f9;
  font-size: 0.86rem;
}

.vip-bonus-item {
  background: rgba(225, 29, 72, 0.08);
  border: 1px dashed rgba(225, 29, 72, 0.4);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
  font-size: 0.82rem !important;
  color: #fecdd3 !important;
  line-height: 1.4;
}

.bonus-pill {
  display: inline-block;
  background: #e11d48;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 4px;
  letter-spacing: 0.04em;
}

.pulse-btn {
  animation: pulsePlanBtn 2.2s infinite ease-in-out;
}

@keyframes pulsePlanBtn {
  0% { transform: scale(1); box-shadow: 0 6px 20px rgba(225, 29, 72, 0.5); }
  50% { transform: scale(1.02); box-shadow: 0 10px 30px rgba(225, 29, 72, 0.85); }
  100% { transform: scale(1); box-shadow: 0 6px 20px rgba(225, 29, 72, 0.5); }
}

.vip-alert-box {
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.4);
  color: #fecdd3;
}

.plan-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
}

.plan-bullets-list {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-gray-300);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.plan-bullets-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.35;
}

.btn-plan-select {
  width: 100%;
  padding: 0.95rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.btn-plan-standard {
  background: #161e30;
  border: 1.5px solid #10b981;
  color: #fff;
}

.btn-plan-standard:hover {
  background: #1c273e;
}

.btn-plan-premium {
  background: var(--crimson-gradient);
  border: none;
  color: #fff;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.5);
}

.btn-plan-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.7);
}

.plan-footnote-box {
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  line-height: 1.4;
}

.green-footnote {
  background: rgba(16, 185, 129, 0.08);
  border-left: 3px solid #10b981;
  color: #a7f3d0;
}

.red-footnote {
  background: rgba(225, 29, 72, 0.08);
  border-left: 3px solid #e11d48;
  color: #fecdd3;
}

/* Paywall Trust Stats Section (Foto 5) */
.paywall-trust-stats-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 620px;
  margin: 3rem auto 0 auto;
}

.trust-guarantees-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #111726;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--text-gray-200);
}

.ssl-stripe-security-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-gray-400);
}

.security-chip {
  background: #0d121c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
}

.trust-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #111624;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.trust-card-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.trust-card-text {
  font-size: 0.82rem;
  color: var(--text-gray-300);
  line-height: 1.45;
}

.huge-stats-box {
  background: linear-gradient(180deg, #161b2a 0%, #111624 100%);
  border: 1.5px solid rgba(225, 29, 72, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}

.huge-stat-number {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.huge-stat-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-gray-300);
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-bottom-unlock {
  max-width: 380px;
  margin: 0 auto;
}

/* ==========================================================================
   Tactical FAQ Accordion Section (Offer Page)
   ========================================================================== */
.offer-faq-section {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-header {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.faq-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.faq-subtitle {
  font-size: 0.9rem;
  color: var(--text-gray-400);
  max-width: 520px;
  margin: 0 auto;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #111726;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(225, 29, 72, 0.35);
  background: #141b2e;
}

.faq-item.active {
  border-color: rgba(225, 29, 72, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  background: #151d32;
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.faq-q-icon {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
}

.faq-q-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.faq-item.active .faq-q-text {
  color: #fda4af;
}

.faq-arrow-indicator {
  font-size: 0.8rem;
  color: var(--text-gray-500);
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow-indicator {
  color: #fb7185;
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.25rem;
}

.faq-item.active .faq-answer-panel {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.faq-answer-panel p {
  font-size: 0.86rem;
  color: var(--text-gray-300);
  line-height: 1.55;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.85rem;
  margin: 0;
}

.faq-answer-panel strong {
  color: #fff;
}

.faq-answer-panel em {
  color: #a7f3d0;
  font-style: normal;
  font-weight: 600;
}

.faq-answer-panel code {
  background: rgba(0, 0, 0, 0.4);
  color: #fca5a5;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-family: monospace;
}

