/* BulkChatGPT homepage styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand: #10a37f;
  --brand-dark: #0d8a6a;
  --brand-soft: #ecfdf5;
  --bg: #f7f7f8;
  --card: #ffffff;
  --border: #e5e7eb;
  --text: #0f172a;
  --text-2: #475569;
  --text-3: #94a3b8;
  --gold: #f59e0b;
  --red: #ef4444;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md: 0 6px 24px rgba(15,23,42,0.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.55;
}
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.shell { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
nav .logo { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--text); }
nav .logo:hover { text-decoration: none; }
.logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.logo-text { font-size: 17px; }
.logo-subtitle { font-size: 11px; color: var(--text-3); display: block; font-weight: 500; margin-top: -2px; }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a { color: var(--text-2); font-weight: 600; font-size: 14px; }
.nav-links a:hover { color: var(--brand-dark); text-decoration: none; }

/* Hero */
.hero { padding: 60px 0 50px; background: linear-gradient(180deg, var(--brand-soft) 0%, transparent 100%); }
.hero-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
.hero h1 { font-size: 44px; line-height: 1.15; font-weight: 800; margin-bottom: 16px; }
.gradient-text { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: 17px; color: var(--text-2); margin-bottom: 22px; }
.hero-highlight { color: var(--text); font-weight: 700; }

.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; padding: 12px 22px; font-weight: 700; font-size: 15px;
  border: 1.5px solid transparent; cursor: pointer; transition: all 0.2s;
  font-family: inherit;
}
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; }
.btn-primary:hover { box-shadow: 0 6px 20px rgba(16,163,127,0.35); transform: translateY(-1px); text-decoration: none; }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: var(--brand-soft); border-color: var(--brand); color: var(--brand-dark); text-decoration: none; }

.hero-stats { display: flex; gap: 22px; flex-wrap: wrap; }
.stat { background: #fff; border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.stat-value { font-size: 22px; font-weight: 800; color: var(--brand-dark); }
.stat-label { font-size: 12px; color: var(--text-3); }
.stat-premium .stat-value { color: var(--gold); }

.hero-install-card {
  background: #fff; border-radius: 16px; padding: 24px; border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.hero-install-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.hero-install-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.hero-install-eyebrow { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.hero-install-card h2 { font-size: 18px; font-weight: 700; }
.hero-install-card p { font-size: 14px; color: var(--text-2); margin: 8px 0 14px; }
.important-note { font-size: 12px; color: var(--text-2); padding: 10px 12px; background: #fef9c3; border: 1px solid #fde68a; border-radius: 8px; margin-bottom: 14px; }
.hero-install-points { display: grid; gap: 10px; margin-top: 6px; }
.hero-install-point { font-size: 13px; }
.hero-install-point strong { display: block; color: var(--text); margin-bottom: 2px; }
.hero-install-point span { color: var(--text-2); }

/* Sections */
.section { padding: 56px 0; }
.section-tight { padding: 8px 0 14px; }
.section-alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-header { text-align: center; margin-bottom: 36px; }
.section-header-tight { margin-bottom: 6px; }
.section-header h2 { font-size: 30px; font-weight: 800; margin-bottom: 10px; line-height: 1.15; }
.section-header-tight h2 { margin-bottom: 0; line-height: 1.1; }
.section-header p { color: var(--text-2); font-size: 16px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feature {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px;
  box-shadow: var(--shadow-sm); transition: all 0.2s;
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--brand-soft); color: var(--brand-dark);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px;
  font-size: 22px; font-weight: 700;
}
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--text-2); }

/* Comparison */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.comparison-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; position: relative;
  box-shadow: var(--shadow-sm);
}
.comparison-card.premium { border-color: var(--brand); box-shadow: 0 12px 32px rgba(16,163,127,0.18); }
.comparison-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--text); color: #fff; padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase;
}
.comparison-card.premium .comparison-badge { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); }
.comparison-title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.comparison-desc { color: var(--text-2); font-size: 14px; margin-bottom: 18px; }
.comparison-metrics { display: flex; gap: 16px; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.metric { flex: 1; text-align: center; }
.metric strong { display: block; font-size: 22px; font-weight: 800; color: var(--brand-dark); }
.metric span { display: block; font-size: 12px; color: var(--text-3); margin-top: 3px; }
.check-list { list-style: none; }
.check-list li {
  position: relative; padding-left: 28px; margin-bottom: 10px; font-size: 14px; color: var(--text-2);
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; background: var(--brand-soft); color: var(--brand-dark);
  border-radius: 50%; font-weight: 800; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Pricing */
.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.price-amount { font-size: 38px; font-weight: 800; color: var(--text); }
.price-cents { font-size: 22px; font-weight: 700; color: var(--text-2); }
.price-cycle { font-size: 13px; color: var(--text-3); }
.price-note { font-size: 12px; color: var(--brand-dark); font-weight: 700; margin-top: -8px; margin-bottom: 12px; }

/* FAQ */
.faq-list { display: grid; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px;
}
.faq-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.faq-item p { color: var(--text-2); font-size: 14px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.step-num { width: 32px; height: 32px; border-radius: 999px; background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 12px; }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--text-2); }

/* Two-column layout: heading on the left, the 3 step cards on the right. */
.steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}
.steps-header h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
}
.steps-header p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .steps-layout { grid-template-columns: 1fr; gap: 18px; }
  .steps-header { text-align: center; }
}

/* Footer */
footer { background: #fff; border-top: 1px solid var(--border); padding: 30px 24px; margin-top: 40px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; max-width: 1100px; margin: 0 auto; }
.footer-row .copy { color: var(--text-3); font-size: 13px; }
.footer-row .links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-row .links a { color: var(--text-2); font-size: 13px; }

/* Mobile */
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

/* Page-specific */
.page { padding: 50px 0 40px; }
.page-header h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.page-header p { color: var(--text-2); font-size: 16px; max-width: 720px; }
.prose { max-width: 760px; margin-top: 30px; }
.prose h2 { font-size: 22px; font-weight: 800; margin-top: 30px; margin-bottom: 10px; }
.prose p { color: var(--text-2); margin-bottom: 14px; font-size: 15px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.prose ul li { color: var(--text-2); margin-bottom: 6px; font-size: 15px; }
