/* ============================================
   STACKD — LANDING PAGE STYLES
   ============================================ */

/* HERO */
.hero {
  padding: 6rem 2rem 5rem;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
}
.hero-inner { max-width: 740px; margin: 0 auto; }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero-sub { font-size: 18px; color: var(--gray-600); max-width: 520px; margin: 0 auto 2.25rem; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 1rem; }
.hero-proof { font-size: 13px; color: var(--gray-600); }
.hero-proof strong { color: var(--gray-900); }

/* PREVIEW */
.preview-wrap { max-width: 820px; margin: 0 auto; padding: 0 2rem 5rem; }
.preview-browser {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.preview-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-bottom: 0.5px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #E24B4A; }
.dot-amber { background: #EF9F27; }
.dot-green { background: var(--green); }
.preview-url {
  font-size: 12px;
  color: var(--gray-600);
  background: #fff;
  padding: 3px 14px;
  border-radius: 20px;
  border: 0.5px solid var(--border);
  margin-left: 8px;
}
.preview-inner { padding: 1.5rem; background: var(--gray-50); }
.preview-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 1rem; }
.p-card { background: #fff; border-radius: var(--radius); padding: 1rem 1.25rem; border: 0.5px solid var(--border); }
.p-label { font-size: 11px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 4px; }
.p-val { font-size: 22px; font-weight: 600; }
.p-sub { font-size: 11px; margin-top: 3px; }
.preview-deals { background: #fff; border-radius: var(--radius-lg); border: 0.5px solid var(--border); overflow: hidden; }
.p-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 16px; border-bottom: 0.5px solid var(--border); }
.p-row.no-border { border-bottom: none; }
.p-name { font-size: 13px; font-weight: 500; }
.p-client { font-size: 11px; color: var(--gray-600); margin-top: 1px; }
.p-right { display: flex; align-items: center; gap: 10px; }

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--border);
}
.feature-card { background: #fff; padding: 2rem; }
.feature-icon { font-size: 26px; margin-bottom: 0.75rem; }
.feature-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.feature-desc { font-size: 13px; color: var(--gray-600); line-height: 1.65; }

/* HOW IT WORKS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-light);
  border: 0.5px solid rgba(29,158,117,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.step-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--gray-600); line-height: 1.65; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.plan-card {
  background: #fff;
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.plan-card.plan-featured { border: 2px solid var(--green); }
.plan-badge {
  font-size: 11px; font-weight: 600;
  background: var(--green-light); color: var(--green-dark);
  padding: 3px 10px; border-radius: 20px;
  display: inline-block; margin-bottom: 1rem; width: fit-content;
}
.plan-name { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.plan-price { font-size: 36px; font-weight: 600; line-height: 1; margin-bottom: 6px; }
.plan-price span { font-size: 15px; font-weight: 400; color: var(--gray-600); }
.plan-desc { font-size: 13px; color: var(--gray-600); margin-bottom: 1.5rem; }
.plan-features { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.plan-features li { font-size: 13px; color: var(--gray-600); padding: 6px 0; border-bottom: 0.5px solid var(--border); display: flex; align-items: center; gap: 10px; }
.plan-features li:last-child { border-bottom: none; }
.check { color: var(--green); font-weight: 600; }

/* GUARANTEE BADGE */
.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-light);
  border: 0.5px solid rgba(29,158,117,0.25);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: fit-content;
}
.guarantee-icon { font-size: 18px; flex-shrink: 0; }

/* WAITLIST */
.waitlist-section { background: var(--gray-50); }
.waitlist-form { display: flex; gap: 8px; max-width: 420px; margin: 0 auto 0.75rem; }
.waitlist-form input { flex: 1; }
.waitlist-success { display: none; font-size: 14px; color: var(--green-dark); font-weight: 500; margin-bottom: 0.5rem; }
.waitlist-count { font-size: 13px; color: var(--gray-600); }
.waitlist-count strong { color: var(--gray-900); }

@media (max-width: 768px) {
  .hero { padding: 4rem 1.25rem 3rem; }
  .preview-wrap { padding: 0 1.25rem 3rem; }
  .preview-metrics { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; }
}
