/* ==========================================================================
   DIRECT BOT AI - DESIGN SYSTEM & STYLES (VANILLA CSS)
   Colors:
   - Deep Black: #000000
   - Electric Violet / Purple: #7b39f8
   - Hot Pink: #f6147f
   - Warm Gold: #ffcb04
   - Light Off-White: #eeeeee
   ========================================================================== */

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

:root {
  --color-black: #000000;
  --color-purple: #7b39f8;
  --color-purple-glow: rgba(123, 57, 248, 0.35);
  --color-pink: #f6147f;
  --color-pink-glow: rgba(246, 20, 127, 0.35);
  --color-gold: #ffcb04;
  --color-gold-glow: rgba(255, 203, 4, 0.35);
  --color-light: #eeeeee;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;

  --bg-dark-surface: #0a0a12;
  --bg-panel: #0d0d18;
  --bg-card: rgba(18, 18, 34, 0.75);
  --bg-card-hover: rgba(26, 26, 48, 0.9);

  --border-subtle: rgba(238, 238, 238, 0.1);
  --border-purple: rgba(123, 57, 248, 0.3);
  --border-pink: rgba(246, 20, 127, 0.3);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-light);
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
  min-height: 100vh;
  line-height: 1.5;
  background-color: var(--color-black);
  color: var(--color-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

/* Typography & Gradients */
.font-heading {
  font-family: var(--font-heading);
}

.text-gradient-purple-pink {
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #fff 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

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

.text-slate {
  color: var(--color-slate-400);
}

/* Buttons & CTAs */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
  border-radius: 9999px;
  box-shadow: 0 0 35px var(--color-purple-glow), 0 0 15px var(--color-pink-glow);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 50px var(--color-purple-glow), 0 0 25px var(--color-pink-glow);
}

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

.btn-primary .shine-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%) skewX(-20deg);
  animation: shine 4s infinite;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-light);
  background: rgba(238, 238, 238, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(123, 57, 248, 0.15);
  border-color: var(--border-purple);
  color: #ffffff;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.badge-purple {
  background: rgba(123, 57, 248, 0.12);
  border: 1px solid rgba(123, 57, 248, 0.3);
  color: #d8c2ff;
}

.badge-pink {
  background: rgba(246, 20, 127, 0.12);
  border: 1px solid rgba(246, 20, 127, 0.3);
  color: #ffb8da;
}

.badge-gold {
  background: rgba(255, 203, 4, 0.15);
  border: 1px solid rgba(255, 203, 4, 0.4);
  color: var(--color-gold);
}

/* Announcement Top Bar */
.top-bar {
  background: linear-gradient(90deg, #110022 0%, #1f0836 50%, #110022 100%);
  border-bottom: 1px solid rgba(123, 57, 248, 0.25);
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-light);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.top-bar .highlight {
  color: var(--color-gold);
  font-weight: 800;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.8rem 0;
  width: 100%;
  box-sizing: border-box;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 60%;
}

.logo img,
.footer-logo img {
  max-height: 42px;
  max-width: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* .logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--color-purple-glow);
  flex-shrink: 0;
} */

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-slate-300);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-light);
}

/* Background Effects & Layers */
.hero-wrapper {
  position: relative;
  padding: 3.5rem 0 5rem 0;
  overflow: hidden;
  background: var(--color-black);
  width: 100%;
}

.bg-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}

.aurora-1 {
  top: 5%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: rgba(123, 57, 248, 0.25);
  animation: aurora 12s infinite alternate ease-in-out;
}

.aurora-2 {
  top: 25%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(246, 20, 127, 0.2);
  animation: aurora 14s infinite alternate-reverse ease-in-out;
}

.aurora-3 {
  bottom: 10%;
  left: 30%;
  width: 600px;
  height: 400px;
  background: rgba(123, 57, 248, 0.15);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(238, 238, 238, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(238, 238, 238, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 80%);
  pointer-events: none;
}

/* Hero Content Grid */
.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.2rem;
  }
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-slate-300);
  margin-bottom: 2rem;
  max-width: 540px;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

/* Hero Stats Bar */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: rgba(18, 18, 34, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  padding: 1.2rem 0.8rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(123, 57, 248, 0.15);
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(123, 57, 248, 0.15);
  border: 1px solid rgba(123, 57, 248, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem auto;
  color: var(--color-purple);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-light);
  line-height: 1;
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 1.8rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

/* Simulated Instagram Phone Mockup Animation */
.phone-container {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.phone-frame {
  position: relative;
  background: #090912;
  border: 10px solid #1c1c2e;
  border-radius: 42px;
  box-shadow:
    0 0 0 2px rgba(123, 57, 248, 0.3),
    0 25px 60px -10px rgba(123, 57, 248, 0.4),
    0 0 100px rgba(246, 20, 127, 0.2);
  overflow: hidden;
}

/* Phone Screen Header */
.ig-header {
  background: #111122;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1rem 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ig-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: #fff;
  border: 1.5px solid #fff;
}

.ig-user-info {
  flex: 1;
  min-width: 0;
}

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

.ig-status {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Instagram Chat Body & Message Animations */
.ig-chat-body {
  height: 380px;
  padding: 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at top right, #1a092b, #090912 70%);
}

.ig-chat-stream {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: ig-chat-scroll 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.ig-msg-tag {
  align-self: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-align: center;
  font-size: 0.65rem;
  color: var(--color-slate-300);
}

.ig-bubble {
  max-width: 82%;
  padding: 0.65rem 0.85rem;
  border-radius: 18px;
  font-size: 0.75rem;
  line-height: 1.35;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.ig-bubble.sent {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--color-purple) 0%, #5d25cd 100%);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.ig-action-btn {
  margin-top: 0.5rem;
  background: #ffffff;
  color: #000000;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.ig-time {
  font-size: 0.6rem;
  opacity: 0.6;
  margin-top: 0.2rem;
  text-align: right;
}

/* Keyframe Animations */
@keyframes ig-chat-scroll {

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

  65%,
  85% {
    transform: translateY(-115px);
  }

  100% {
    transform: translateY(-210px);
  }
}

@keyframes aurora {
  0% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.15) translate(30px, -20px);
  }

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

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

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

@keyframes shine {
  0% {
    transform: translateX(-100%) skewX(-20deg);
  }

  20%,
  100% {
    transform: translateX(200%) skewX(-20deg);
  }
}

@keyframes pulse-cta {

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

  50% {
    transform: scale(1.03);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

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

/* Marquee Ticker */
.marquee-section {
  position: relative;
  background: var(--bg-dark-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.2rem 0;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  animation: marquee 25s linear infinite;
}

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

.marquee-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(18, 18, 34, 0.8);
  border: 1px solid var(--border-purple);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--color-light);
}

.marquee-pill svg {
  color: var(--color-pink);
}

/* Sections Base */
.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-slate-300);
  line-height: 1.6;
}

/* Cards & Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

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

  .bento-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-purple);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(123, 57, 248, 0.15);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(123, 57, 248, 0.12);
  border: 1px solid rgba(123, 57, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--color-purple);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--color-slate-300);
  line-height: 1.55;
}

/* Economy Section Cards */
.economy-card {
  text-align: center;
  padding: 2rem 1.2rem;
  border: 1px solid var(--border-subtle);
}

.economy-card.highlight {
  border: 2px solid var(--color-pink);
  box-shadow: 0 0 30px var(--color-pink-glow);
}

.economy-period {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-purple);
  margin-bottom: 0.8rem;
}

.economy-card.highlight .economy-period {
  color: var(--color-pink);
}

.economy-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-light);
  margin-bottom: 0.4rem;
}

.economy-card.highlight .economy-amount {
  color: var(--color-pink);
}

/* Workflow Steps (How it works) */
.step-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(238, 238, 238, 0.05);
  user-select: none;
}

/* Installation Video Mockup */
.video-preview {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #080812;
  border: 1px solid var(--border-purple);
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.play-btn {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 40px var(--color-purple-glow);
  transition: transform 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.1);
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid var(--color-purple);
  animation: pulse-ring 2s infinite;
}

/* Comparison Table */
.comparison-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
  background: rgba(13, 13, 24, 0.9);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-light);
}

.comparison-table tr:hover td {
  background: rgba(123, 57, 248, 0.05);
}

.check-icon {
  color: #10b981;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

.x-icon {
  color: var(--color-pink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

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

.pricing-card {
  position: relative;
  background: #0c0c18;
  border: 1px solid var(--border-subtle);
  border-radius: 1.75rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.pricing-card.featured {
  border: 2px solid var(--color-purple);
  background: linear-gradient(180deg, #160a2c 0%, #0c0c18 100%);
  box-shadow: 0 0 50px var(--color-purple-glow);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 1.2rem;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.9;
  margin: 1.5rem 0 0.5rem 0;
  color: #ffffff;
}

.pricing-card.featured .price-val {
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-period {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-slate-400);
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
  color: var(--color-slate-300);
}

.feature-list li svg {
  color: var(--color-purple);
  flex-shrink: 0;
}

.pricing-card.featured .feature-list li svg {
  color: var(--color-pink);
}

/* FAQ Accordion */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item.active {
  border-color: var(--border-purple);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: var(--color-purple);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--color-slate-300);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
  transition: max-height 0.35s cubic-bezier(1, 0, 1, 0), padding 0.35s ease;
}

/* Guarantee Badge Banner */
.guarantee-box {
  background: linear-gradient(135deg, rgba(255, 203, 4, 0.08) 0%, rgba(123, 57, 248, 0.08) 100%);
  border: 1px solid var(--color-gold);
  border-radius: 1.75rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .guarantee-box {
    flex-direction: row;
    text-align: left;
  }
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 203, 4, 0.15);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  box-shadow: 0 0 30px var(--color-gold-glow);
}

/* Footer */
.footer {
  background: #05050a;
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-slate-500);
  width: 100%;
  overflow: hidden;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MOBILE FIRST & RESPONSIVE OVERFLOW-PREVENTION OPTIMIZATIONS
   ========================================================================== */

@media (max-width: 768px) {
  .top-bar {
    font-size: 0.76rem;
    padding: 0.55rem 0.75rem;
    line-height: 1.4;
  }

  .header {
    padding: 0.75rem 0;
  }

  .header-container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .nav-links {
    display: none;
    /* Hide desktop nav links on mobile for clean header */
  }

  .logo img,
  .footer-logo img {
    max-height: 32px;
    max-width: 140px;
  }

  .hero-wrapper {
    padding: 2rem 0 3rem 0;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.12;
    text-align: center;
    margin-bottom: 1.2rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    text-align: center;
    margin: 0 auto 1.8rem auto;
  }

  .badge-purple,
  .badge-pink,
  .badge-gold {
    display: inline-flex;
    margin: 0 auto;
    font-size: 0.7rem;
  }

  /* Full width CTAs on mobile for easy touch targeting */
  .btn-primary {
    width: 100%;
    padding: 1.05rem 1.2rem;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
  }

  .btn-secondary {
    padding: 0.55rem 0.85rem;
    font-size: 0.75rem;
  }

  /* Compact hero stats on mobile */
  .hero-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    margin-top: 1.8rem;
  }

  .stat-card {
    padding: 0.75rem 0.2rem;
    border-radius: 0.8rem;
  }

  .stat-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.35rem;
  }

  .stat-value {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.58rem;
    letter-spacing: 0.01em;
  }

  /* Phone Mockup scaling */
  .phone-container {
    max-width: 290px;
    margin-top: 1.5rem;
  }

  .ig-chat-body {
    height: 340px;
  }

  /* Section padding and titles */
  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.15;
  }

  .section-desc {
    font-size: 0.92rem;
  }

  /* Bento Grid Stack on Mobile */
  .bento-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .card {
    padding: 1.35rem 1.1rem;
    border-radius: 1.2rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-desc {
    font-size: 0.88rem;
  }

  /* Responsive Comparison Table Horizontal Scroll & Compact Padding */
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 1.1rem;
    max-width: 100%;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.6rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  /* Pricing Cards Stack on Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.25rem;
    border-radius: 1.4rem;
  }

  .featured-badge {
    font-size: 0.62rem;
    padding: 0.3rem 0.8rem;
    letter-spacing: 0.08em;
  }

  .price-val {
    font-size: 3rem;
    margin: 1rem 0 0.3rem 0;
  }

  .feature-list li {
    font-size: 0.86rem;
  }

  /* FAQ Accordion Mobile Touch Friendly */
  .faq-question {
    padding: 1rem 1.1rem;
    font-size: 0.92rem;
  }

  .faq-answer {
    font-size: 0.88rem;
  }

  /* Guarantee Box Mobile Stack */
  .guarantee-box {
    padding: 1.5rem 1.2rem;
    border-radius: 1.3rem;
    gap: 1rem;
  }

  .guarantee-icon {
    width: 60px;
    height: 60px;
  }
}

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

  .stat-value {
    font-size: 0.9rem;
  }

  .stat-label {
    font-size: 0.55rem;
  }

  .price-val {
    font-size: 2.6rem;
  }
}

/* ==========================================================================
   SYSTEM PREVIEW SECTION (POR DENTRO DO SISTEMA)
   ========================================================================== */
.system-preview-card {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: all 0.35s ease;
  border-radius: 1.5rem;
}

.system-preview-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(123, 57, 248, 0.25);
}

.system-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #070712;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.system-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.system-preview-card:hover .system-img-wrapper img {
  transform: scale(1.04);
}

.system-card-info {
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .system-card-info {
    padding: 1.1rem;
  }
}

/* ==========================================================================
   COMO FUNCIONA - MINI PHONE MOCKUPS INSIDE CARDS
   ========================================================================== */
.card-with-mockup {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.8rem 1.4rem 0 1.4rem !important;
  overflow: hidden;
}

.card-top-content {
  margin-bottom: 1.5rem;
}

.mini-phone-frame {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  background: #0a0a14;
  border: 7px solid #1c1c2e;
  border-bottom: none;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(123, 57, 248, 0.15);
  overflow: hidden;
  padding-top: 0.8rem;
}

.mini-phone-notch {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 10px;
  background: #000000;
  border-radius: 9999px;
  z-index: 20;
}

.mini-phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0.75rem 0.5rem 0.75rem;
  font-size: 0.62rem;
  color: var(--color-slate-400);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Comment Feed inside Card 01 */
.comment-feed {
  padding: 0.75rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #0a0a14;
  font-size: 0.7rem;
}

.comment-item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.comment-item.bot-reply {
  margin-left: 1.2rem;
  border-left: 2px solid rgba(123, 57, 248, 0.3);
  padding-left: 0.4rem;
}

.comment-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  flex-shrink: 0;
  color: #ffffff;
}

.avatar-user1 { background: #3b82f6; }
.avatar-user2 { background: #10b981; }
.avatar-bot { background: linear-gradient(135deg, var(--color-purple), var(--color-pink)); }

.comment-content {
  flex: 1;
  min-width: 0;
}

.comment-header-user {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.comment-name {
  font-weight: 700;
  font-size: 0.65rem;
  color: #ffffff;
}

.comment-time {
  font-size: 0.58rem;
  color: var(--color-slate-500);
}

.comment-badge {
  font-size: 0.55rem;
  background: rgba(123, 57, 248, 0.2);
  color: var(--color-purple);
  padding: 0.02rem 0.25rem;
  border-radius: 4px;
}

.comment-text {
  font-size: 0.65rem;
  color: var(--color-slate-300);
  line-height: 1.2;
  margin-top: 0.1rem;
}

.comment-reply {
  font-size: 0.58rem;
  color: var(--color-slate-500);
  margin-top: 0.1rem;
  display: inline-block;
}

.comment-heart {
  font-size: 0.7rem;
  color: var(--color-slate-500);
}

.comment-footer-bar {
  background: #111122;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.4rem 0.6rem;
}

.emoji-row {
  font-size: 0.7rem;
  display: block;
  margin-bottom: 0.25rem;
  text-align: center;
}

.comment-input {
  background: #1c1c2e;
  border-radius: 9999px;
  padding: 0.3rem 0.6rem;
  font-size: 0.6rem;
  color: var(--color-slate-400);
}

/* Story Phone inside Card 02 */
.story-phone {
  background: radial-gradient(circle at center, #1b0a2e, #090912);
}

.story-progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0.3rem 0.75rem 0.5rem 0.75rem;
  border-radius: 9999px;
  overflow: hidden;
}

.story-progress-fill {
  width: 70%;
  height: 100%;
  background: #ffffff;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.75rem;
  margin-bottom: 0.8rem;
}

.story-username {
  font-size: 0.68rem;
  font-weight: 700;
  color: #ffffff;
}

.story-time {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.5);
}

.story-body-content {
  padding: 0.3rem 0.6rem 0.8rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.story-sticker {
  background: rgba(246, 20, 127, 0.15);
  border: 1px solid var(--border-pink);
  border-radius: 12px;
  padding: 0.75rem 0.6rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(246, 20, 127, 0.2);
}

.sticker-badge {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 0.25rem;
}

.sticker-title {
  font-size: 0.7rem;
  color: #ffffff;
  line-height: 1.25;
}

.story-cta-box {
  background: var(--color-pink);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 800;
  border-radius: 6px;
  padding: 0.25rem 0.4rem;
  margin-top: 0.4rem;
}

.story-reply-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.reply-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.35rem 0.6rem;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
}

.reply-heart {
  font-size: 0.8rem;
}

.story-trigger-alert {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.alert-icon {
  font-size: 0.75rem;
}

.alert-text {
  font-size: 0.6rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.alert-text strong {
  color: #34d399;
}

/* DM Phone inside Card 03 */
.dm-phone {
  background: #090912;
}

.dm-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  background: #111122;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dm-name {
  font-size: 0.68rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.dm-status {
  font-size: 0.55rem;
  color: var(--color-slate-400);
}

.dm-chat-body {
  padding: 0.65rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dm-msg {
  max-width: 88%;
  padding: 0.5rem 0.6rem;
  border-radius: 12px;
  font-size: 0.65rem;
  line-height: 1.25;
}

.dm-msg.sent {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--color-purple), #5d25cd);
  color: #ffffff;
  border-bottom-right-radius: 2px;
}

.dm-msg.received {
  align-self: flex-start;
  background: #1c1c2e;
  color: #ffffff;
  border-bottom-left-radius: 2px;
}

.dm-msg.follow-up {
  background: rgba(255, 203, 4, 0.1);
  border: 1px solid rgba(255, 203, 4, 0.3);
  color: var(--color-gold);
}

.dm-btn-action {
  margin-top: 0.35rem;
  background: #ffffff;
  color: #000000;
  font-weight: 800;
  font-size: 0.58rem;
  padding: 0.3rem 0.45rem;
  border-radius: 6px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.dm-time {
  font-size: 0.52rem;
  opacity: 0.6;
  margin-top: 0.15rem;
  display: block;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 20px rgba(18, 140, 126, 0.3);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.whatsapp-float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.65), 0 0 25px rgba(18, 140, 126, 0.5);
  color: #ffffff !important;
}

.whatsapp-float-btn svg {
  flex-shrink: 0;
}

.whatsapp-pulse-ring {
  position: absolute;
  inset: -5px;
  border-radius: 9999px;
  border: 2px solid #25D366;
  animation: pulse-whatsapp 2s infinite ease-out;
  pointer-events: none;
}

@keyframes pulse-whatsapp {
  0% { transform: scale(0.95); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 768px) {
  .whatsapp-float-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
  }
}