/* VipexAI Lead Pro — matches main site exactly */

body {
  background: #000;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #222;
  flex-wrap: wrap;
}

header h2 {
  margin: 0;
  font-size: 22px;
}

header h2 span {
  color: #39ff14;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover {
  color: #39ff14;
}

.hero {
  padding: 120px 20px;
  text-align: center;
  background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  color: #ddd;
}

button, .btn {
  background: #39ff14;
  border: none;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  font-size: 15px;
  color: #000;
  display: inline-block;
  text-decoration: none;
}

button:hover, .btn:hover {
  background: #2be600;
}

.btn-dark {
  background: #111;
  color: #39ff14;
  border: 1px solid #39ff14;
}

.btn-dark:hover {
  background: #1a1a1a;
}

.btn-red {
  background: #ef4444;
  color: white;
}

.btn-red:hover {
  background: #dc2626;
}

.section {
  padding: 80px 20px;
  text-align: center;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #111;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
}

.card h3 {
  margin-top: 0;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card ul {
  padding-left: 18px;
  color: #ccc;
}

.card ul li {
  margin-bottom: 8px;
}

/* Pricing */
.price-card {
  background: #111;
  border: 2px solid #39ff14;
  border-radius: 12px;
  padding: 40px;
  max-width: 480px;
  margin: 40px auto 0;
  text-align: center;
}

.price-card h2 {
  font-size: 52px;
  color: #39ff14;
  margin: 10px 0;
}

.price-card p {
  color: #ccc;
  margin-bottom: 6px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.price-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #222;
  color: #ccc;
}

.price-card ul li::before {
  content: "✓ ";
  color: #39ff14;
  font-weight: bold;
}

/* Dashboard */
.dashboard-wrap {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px 80px;
}

.dashboard-wrap h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.lead-form {
  background: #111;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
}

.lead-form h3 {
  margin-top: 0;
  color: #39ff14;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

input, select, textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: white;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

input::placeholder {
  color: #666;
}

.leads-table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th {
  background: #111;
  padding: 12px 16px;
  text-align: left;
  color: #39ff14;
  font-weight: bold;
  border-bottom: 1px solid #222;
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid #1a1a1a;
  color: #ccc;
  vertical-align: middle;
}

tr:hover td {
  background: #0a0a0a;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.badge-green {
  background: #14532d;
  color: #39ff14;
}

.badge-yellow {
  background: #422006;
  color: #fbbf24;
}

.badge-red {
  background: #450a0a;
  color: #ef4444;
}

.badge-grey {
  background: #1a1a1a;
  color: #888;
}

.followup-dots {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  title: attr(data-tip);
}

.dot.done {
  background: #39ff14;
}

.dot.pending {
  background: #444;
}

.action-btn {
  background: #111;
  border: 1px solid #333;
  color: #39ff14;
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  margin-right: 4px;
}

.action-btn:hover {
  border-color: #39ff14;
}

/* Features list section */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 600px;
  text-align: left;
}

.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
  color: #ccc;
  font-size: 16px;
}

.feature-list li::before {
  content: "→ ";
  color: #39ff14;
  font-weight: bold;
}

/* How it works steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.step-num {
  font-size: 40px;
  font-weight: bold;
  color: #39ff14;
  margin-bottom: 10px;
}

/* Alert / notification */
.alert {
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.alert-success {
  background: #14532d;
  border: 1px solid #39ff14;
  color: #86efac;
}

.alert-error {
  background: #450a0a;
  border: 1px solid #ef4444;
  color: #fca5a5;
}

.hidden {
  display: none;
}

footer {
  background: #111;
  padding: 40px;
  text-align: center;
  margin-top: 80px;
}

footer p {
  color: #666;
  font-size: 13px;
  margin: 0 0 10px;
}

footer a {
  color: #39ff14;
  margin: 0 10px;
  text-decoration: none;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  nav { margin-top: 10px; }
  .price-card h2 { font-size: 38px; }
}
