:root {
  /* Color Palette - Dark Premium */
  --bg-main: #0a0b10;
  --bg-card: #1c1d29;
  --bg-hover: #262837;
  --text-main: #ffffff;
  --text-muted: #8d93aa;
  --primary: #6c5ce7;
  --primary-light: rgba(108, 92, 231, 0.15);
  --secondary: #00d2d3;
  --success: #00b894;
  --warning: #fdcb6e;
  --border-color: rgba(255, 255, 255, 0.08);
  --font-family: "Inter", sans-serif;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Background Animation */
.bg-animated {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at center,
      rgba(108, 92, 231, 0.08) 0%,
      transparent 40%),
    radial-gradient(circle at 80% 20%,
      rgba(0, 184, 148, 0.05) 0%,
      transparent 30%);
  z-index: -1;
  animation: rotateBg 30s linear infinite;
  pointer-events: none;
}

@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Navbar */
.navbar {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon,
.logo-icon-small {
  background: linear-gradient(135deg, var(--primary), #a29bfe);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.logo-icon {
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
}

.logo-icon-small {
  width: 30px;
  height: 30px;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #a29bfe);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.6);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge-new {
  background: var(--primary-light);
  color: #a29bfe;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(108, 92, 231, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0;
}

.highlight {
  background: linear-gradient(135deg, #a29bfe, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: -1.4rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-trust-row i {
  color: var(--success);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.stat {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

/* Mockup CSS art */
.mockup-window {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.mockup-window:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.mockup-header {
  background: var(--bg-hover);
  padding: 0.8rem 1rem;
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red {
  background: #ff5f56;
}

.yellow {
  background: #ffbd2e;
}

.green {
  background: #27c93f;
}

.mockup-body {
  padding: 2rem;
}

.mockup-kpi {
  background: var(--bg-main);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mockup-kpi i {
  font-size: 2rem;
  color: var(--success);
  background: rgba(0, 184, 148, 0.15);
  padding: 1rem;
  border-radius: 8px;
}

.mockup-kpi h4 {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.mockup-kpi p {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.mockup-chart {
  height: 150px;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px dotted rgba(255, 255, 255, 0.1);
}

.bar {
  flex: 1;
  background: linear-gradient(135deg, var(--primary), #a29bfe);
  border-radius: 4px 4px 0 0;
  opacity: 0.8;
}

/* Features Profile */
.features {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(108, 92, 231, 0.3);
}

.feature-icon {
  font-size: 2rem;
  color: #a29bfe;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-hover));
  max-width: 500px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(108, 92, 231, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.pricing-badge {
  background: var(--primary-light);
  color: #a29bfe;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header h2 {
  margin: 1rem 0;
  font-size: 2rem;
}

.pricing-header p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
}

.amount {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0 0.5rem;
}

.period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 3rem;
}

.pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pricing-features i {
  color: var(--success);
}

.btn-block {
  width: 100%;
}

.pricing-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  margin: 1rem 0 0.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 300px;
  font-size: 0.9rem;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    margin: 1rem auto 2rem;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .mockup-window {
    transform: none !important;
    margin-top: 2rem;
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 11, 16, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .nav-links.active {
    max-height: 400px;
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .container {
    padding: 0 1rem;
  }
}

/* --- Stats Section --- */
.stats-section {
  padding: 3.5rem 0;
  background: linear-gradient(135deg,
      rgba(108, 92, 231, 0.08) 0%,
      rgba(0, 184, 148, 0.05) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.conversion-strip {
  padding: 2.5rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.conversion-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.conversion-strip-grid div {
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(28, 29, 41, 0.65);
}

.conversion-strip-grid strong,
.conversion-strip-grid span {
  display: block;
}

.conversion-strip-grid strong {
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.conversion-strip-grid span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* --- Daily Flow Section --- */
.daily-flow {
  padding: 6rem 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    var(--bg-main);
  border-bottom: 1px solid var(--border-color);
}

.daily-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(0, 184, 148, 0.28);
  border-radius: 999px;
  background: rgba(0, 184, 148, 0.1);
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.daily-flow-copy h2 {
  max-width: 560px;
  margin-bottom: 1.25rem;
  color: var(--text-main);
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.12;
}

.daily-flow-copy p {
  max-width: 560px;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.daily-flow-steps {
  display: grid;
  gap: 1rem;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(28, 29, 41, 0.76);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.flow-step.featured {
  border-color: rgba(108, 92, 231, 0.48);
  background:
    linear-gradient(135deg, rgba(108, 92, 231, 0.18), rgba(0, 184, 148, 0.08)),
    rgba(28, 29, 41, 0.9);
}

.flow-step-marker {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #a29bfe;
  font-size: 0.85rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.flow-step h3 {
  margin-bottom: 0.25rem;
  color: var(--text-main);
  font-size: 1.1rem;
}

.flow-step p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.flow-step > i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--success);
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a29bfe, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- FAQ Accordion --- */
.faq-accordion {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.faq-accordion:hover {
  border-color: rgba(108, 92, 231, 0.3);
}

.faq-accordion.open {
  border-color: rgba(108, 92, 231, 0.5);
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.8rem;
  gap: 1rem;
}

.faq-question h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.faq-icon {
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-accordion.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-accordion.open .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.5rem;
}

.faq-answer p {
  color: #b2bec3;
  font-size: 0.98rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item::after {
    display: none;
  }

  .stat-number {
    font-size: 2rem;
  }

  .conversion-strip-grid {
    grid-template-columns: 1fr;
  }

  .daily-flow {
    padding: 4rem 0;
  }

  .daily-flow-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .daily-flow-copy h2 {
    font-size: 2rem;
  }

  .flow-step {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .flow-step > i {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
  color: white;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}

/* --- Google AdSense Banners --- */
.ad-banner {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.03), rgba(0, 184, 148, 0.03));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}

.ad-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

/* --- Creator Section Photo Animation --- */
#creator img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#creator img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(108, 92, 231, 0.5);
}

/* --- Back to Top Button --- */
#back-to-top {
  position: fixed;
  bottom: 40px;
  left: 40px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #a29bfe);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  pointer-events: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top:hover {
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.7);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  #back-to-top {
    bottom: 20px;
    left: 20px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

/* --- Mobile Hamburger Nav --- */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-card);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.nav-mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.nav-mobile-menu a:hover {
  color: var(--text-main);
}

.nav-mobile-menu.open {
  display: flex;
}

@media (max-width: 900px) {
  .nav-hamburger {
    display: block;
  }
}
