:root {
  --black: #090909;
  --black-soft: #121212;
  --black-card: #171717;
  --gold: #f7bd37;
  --gold-dark: #d69715;
  --gold-soft: #ffe39b;
  --white: #ffffff;
  --text: #f7f7f7;
  --muted: #a9a9a9;
  --border: rgba(255,255,255,.09);
  --shadow: 0 30px 80px rgba(0,0,0,.32);
  --radius: 28px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(247,189,55,.08), transparent 28%),
    radial-gradient(circle at 90% 25%, rgba(247,189,55,.06), transparent 24%),
    var(--black);
  font-family: "Inter", sans-serif;
}

a { text-decoration: none; }

h1, h2, h3, h4, h5, h6,
.brand-text {
  font-family: "Poppins", sans-serif;
}

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: -1;
  opacity: .16;
  background: var(--gold);
}

.glow-one { top: -120px; right: -100px; }
.glow-two { left: -180px; top: 45%; }

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: .3s ease;
  background: rgba(9,9,9,.62);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(9,9,9,.92);
  border-color: var(--border);
}

.navbar { min-height: 84px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 250px;	
}

.brand-symbol {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-dark));
  box-shadow: 0 10px 30px rgba(247,189,55,.25);
  color: var(--black);
}

.brand-symbol i {
  transform: rotate(-8deg);
  font-size: 18px;
}

.brand-text {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.7px;
}

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

.nav-link {
  color: rgba(255,255,255,.72);
  font-weight: 500;
  padding: 10px 14px !important;
}

.nav-link:hover,
.nav-link:focus { color: var(--gold); }

.btn {
  border-radius: 14px;
  font-weight: 700;
  border-width: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .25s ease;
}

.btn-lg {
  min-height: 54px;
  padding: 0 25px;
}

.btn-gold {
  color: var(--black);
  border: 0;
  padding: 15px 25px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffe287 0%, var(--gold) 45%, #cf8a0d 100%);
  box-shadow: 0 16px 38px rgba(247,189,55,.22);
}

.btn-gold:hover {
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(247,189,55,.3);
}

.hero-section {
  min-height: 100vh;
  padding: 145px 0 85px;
  display: flex;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 800;
}

.hero-section h1 {
  margin: 22px 0;
  max-width: 760px;
  font-size: clamp(44px, 5.7vw, 78px);
  line-height: 1.02;
  letter-spacing: -3.5px;
  font-weight: 800;
}

.text-gradient {
  background: linear-gradient(120deg, #fff5cb, var(--gold), #cf8a0d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 660px;
  color: #c8c8c8;
  line-height: 1.75;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
  color: #cfcfcf;
  font-size: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--gold);
  font-size: 11px;
}

.mini-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.mini-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
}

.mini-card span,
.mini-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.mini-card strong {
  display: block;
  font-size: 23px;
  margin: 5px 0 3px;
}

.mini-card small i { color: #4ed38a; }

.mini-card.highlight {
  background: linear-gradient(135deg, rgba(247,189,55,.18), rgba(247,189,55,.04));
  border-color: rgba(247,189,55,.35);
}

.simulation-card {
  position: relative;
  padding: 30px;
  border-radius: 32px;
  background: rgba(20,20,20,.9);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.simulation-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(247,189,55,.15);
  filter: blur(45px);
}

.simulation-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.simulation-top h2 {
  font-size: 27px;
  margin: 7px 0 0;
}

.simulation-badge {
  padding: 7px 12px;
  border-radius: 999px;
  height: fit-content;
  background: rgba(247,189,55,.14);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(247,189,55,.25);
}

.simulation-result {
  margin: 25px 0;
  padding: 24px;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(247,189,55,.18), rgba(247,189,55,.05));
  border: 1px solid rgba(247,189,55,.2);
}

.simulation-result span,
.simulation-result small {
  display: block;
  color: #bbb;
}

.simulation-result strong {
  display: block;
  font-size: clamp(36px, 5vw, 50px);
  line-height: 1.15;
  margin: 6px 0;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
}

.range-header,
.range-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.range-header label,
.commission-config label {
  font-weight: 700;
  font-size: 14px;
}

.range-header span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
}

.form-range {
  margin: 18px 0 5px;
}

.form-range::-webkit-slider-thumb {
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(247,189,55,.14);
}

.form-range::-moz-range-thumb {
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(247,189,55,.14);
}

.range-labels {
  color: var(--muted);
  font-size: 12px;
}

.commission-config {
  margin: 22px 0;
}

.money-input {
  margin-top: 9px;
  height: 53px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #101010;
  border: 1px solid var(--border);
}

.money-input span {
  height: 100%;
  min-width: 56px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 800;
  background: rgba(247,189,55,.08);
  border-right: 1px solid var(--border);
}

.money-input input {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  font-weight: 700;
}

.form-label {
  color: #ededed;
  font-size: 13px;
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 52px;
  color: white;
  background-color: #101010;
  border-color: var(--border);
  border-radius: 14px;
}

.form-control::placeholder { color: #777; }

.form-control:focus,
.form-select:focus {
  color: white;
  background-color: #101010;
  border-color: rgba(247,189,55,.75);
  box-shadow: 0 0 0 .2rem rgba(247,189,55,.11);
}

.form-select option {
  background: #111;
  color: white;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.option-card {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 15px;
  cursor: pointer;
  color: #cfcfcf;
  background: #101010;
  border: 1px solid var(--border);
  transition: .2s ease;
}

.option-card input {
  position: absolute;
  opacity: 0;
}

.option-card.active {
  color: var(--gold);
  border-color: rgba(247,189,55,.55);
  background: rgba(247,189,55,.08);
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
}

.section-space { padding: 110px 0; }

.section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
}

.section-heading h2,
.display-title {
  margin: 11px 0 12px;
  font-size: clamp(36px, 4.5vw, 58px);
  letter-spacing: -2px;
  font-weight: 750;
}

.section-heading p,
.section-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.benefits-section { background: #f5f3ed; }

.benefits-section .section-heading h2,
.benefits-section .feature-card h3 { color: #161616; }

.benefits-section .section-heading p,
.benefits-section .feature-card p { color: #666; }

.feature-card {
  height: 100%;
  min-height: 245px;
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 50px rgba(0,0,0,.05);
  transition: .25s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(0,0,0,.09);
}

.feature-icon,
.process-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #161616;
  background: linear-gradient(135deg, #ffe9ad, var(--gold));
  font-size: 21px;
}

.feature-card h3 {
  font-size: 22px;
  margin: 24px 0 10px;
}

.feature-card p { line-height: 1.7; }

.process-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(247,189,55,.12), transparent 32%),
    #0d0d0d;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 47px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247,189,55,.55), transparent);
}

.process-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
}

.process-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(255,255,255,.16);
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.process-card h3 {
  margin: 24px 0 10px;
  font-size: 22px;
}

.process-card p {
  color: var(--muted);
  line-height: 1.7;
}

.earnings-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #15120c, #090909 65%);
}

.earning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.earning-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
}

.earning-card span,
.earning-card small {
  display: block;
  color: var(--muted);
}

.earning-card strong {
  display: block;
  margin: 9px 0;
  color: white;
  font-size: 32px;
  font-family: "Poppins", sans-serif;
}

.earning-card.featured {
  background: linear-gradient(135deg, var(--gold), #c8880c);
  color: var(--black);
  transform: scale(1.03);
}

.earning-card.featured span,
.earning-card.featured small,
.earning-card.featured strong {
  color: var(--black);
}

.earning-disclaimer {
  margin: 35px 0 0;
  text-align: center;
  color: #777;
  font-size: 12px;
}

.dashboard-section { background: #f5f3ed; }

.dashboard-section .section-heading h2 { color: #171717; }
.dashboard-section .section-heading p { color: #666; }

.dashboard-preview {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 35px 90px rgba(0,0,0,.22);
  border: 8px solid #222;
}

.dashboard-browser {
  height: 42px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #1c1c1c;
}

.dashboard-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
}

.dashboard-body {
  min-height: 510px;
  display: grid;
  grid-template-columns: 190px 1fr;
  background: #0c0c0c;
}

.dashboard-sidebar {
  padding: 25px 20px;
  background: #141414;
  border-right: 1px solid var(--border);
}

.fake-logo {
  width: 92px;
  height: 24px;
  margin-bottom: 40px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold), #6b5220);
}

.side-line {
  width: 85%;
  height: 12px;
  margin: 22px 0;
  border-radius: 20px;
  background: #292929;
}

.side-line.active {
  height: 38px;
  width: 100%;
  background: rgba(247,189,55,.14);
  border: 1px solid rgba(247,189,55,.2);
}

.dashboard-content { padding: 32px; }

.dashboard-welcome,
.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-welcome small { color: #888; }
.dashboard-welcome h3 { margin: 4px 0 0; }

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--gold);
  font-weight: 800;
}

.stats-row {
  margin: 28px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-box {
  padding: 18px;
  border-radius: 17px;
  background: #161616;
  border: 1px solid var(--border);
}

.stat-box span {
  display: block;
  color: #888;
  font-size: 12px;
}

.stat-box strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
}

.stat-box.gold {
  background: linear-gradient(135deg, var(--gold), #d7981d);
  color: #111;
}

.stat-box.gold span { color: #5e4208; }

.chart-box {
  min-height: 250px;
  padding: 24px;
  border-radius: 20px;
  background: #151515;
  border: 1px solid var(--border);
}

.chart-head span {
  display: block;
  color: #888;
  font-size: 11px;
}

.chart-head strong {
  display: block;
  margin-top: 5px;
}

.chart-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: #222;
}

.bars {
  height: 160px;
  margin-top: 20px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 18px;
  border-bottom: 1px solid #333;
}

.bars i {
  display: block;
  flex: 1;
  max-width: 48px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, var(--gold), #7a5313);
}

.faq-section { background: #0d0d0d; }

.custom-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.accordion-item {
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 18px !important;
  background: #151515;
  border: 1px solid var(--border);
}

.accordion-button {
  padding: 22px 24px;
  color: white;
  background: #151515;
  font-weight: 700;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #111;
  background: var(--gold);
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-button:not(.collapsed)::after {
  filter: none;
}

.accordion-body {
  padding: 22px 24px;
  color: #b7b7b7;
  line-height: 1.7;
  background: #111;
}

.cta-section {
  padding: 25px 0 100px;
  background: #0d0d0d;
}

.cta-box {
  padding: 50px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #111;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,255,255,.45), transparent 30%),
    linear-gradient(120deg, #ffe99e, var(--gold) 55%, #cf8b11);
}

.cta-box h2 {
  margin: 9px 0;
  font-size: clamp(32px, 4vw, 48px);
}

.cta-box .section-kicker { color: #6c4a08; }
.cta-box p { margin: 0; color: #60450d; }

.site-footer {
  padding: 60px 0 25px;
  background: #070707;
  border-top: 1px solid var(--border);
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand { margin-bottom: 16px; }

.footer-main p,
.footer-bottom {
  color: #777;
  font-size: 13px;
}

.footer-links,
.footer-bottom > div {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-bottom a {
  color: #a8a8a8;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #20c76b;
  font-size: 28px;
  box-shadow: 0 16px 40px rgba(32,199,107,.36);
  transition: .25s ease;
}

.whatsapp-float:hover {
  color: white;
  transform: translateY(-4px) scale(1.04);
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 20px;
    border-radius: 20px;
    background: #111;
    border: 1px solid var(--border);
  }

  .hero-section { padding-top: 125px; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }

  .dashboard-body { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .cta-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 767px) {
  .section-space { padding: 80px 0; }

  .hero-section h1 {
    letter-spacing: -2px;
  }

  .mini-dashboard { grid-template-columns: 1fr; }

  .simulation-card { padding: 22px; }

  .process-grid,
  .earning-grid {
    grid-template-columns: 1fr;
  }

  .earning-card.featured { transform: none; }

  .dashboard-preview { border-width: 4px; }
  .dashboard-content { padding: 20px; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  .chart-pill { display: none !important; }
  .bars { gap: 7px; }

  .cta-box { padding: 32px 24px; }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; }
  .option-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }

  .simulation-top { flex-direction: column; }
  .simulation-badge { align-self: flex-start; }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}
