/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0f172a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== Container ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; border-radius: 10px; cursor: pointer;
  transition: all 0.2s ease; border: 2px solid transparent;
  font-family: inherit; font-size: 15px; padding: 10px 24px;
}
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px rgba(56,142,61,0.35);
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(56,142,61,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: #388e3d;
  border-color: #388e3d;
}
.btn-outline:hover { background: #388e3d; color: #fff; }
.btn-outline-light {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-pro {
  background: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(56,142,61,0.35);
}
.btn-pro:hover {
  box-shadow: 0 6px 20px rgba(56,142,61,0.5);
  transform: translateY(-1px);
}

/* ===== Callout Bar ===== */
.callout-bar {
  background: linear-gradient(90deg, #1b5e20, #2e7d32);
  color: #fff; text-align: center;
  padding: 10px 24px; font-size: 14px; font-weight: 500;
  position: relative; z-index: 100;
}
.callout-bar .container {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap;
}
.callout-pulse {
  width: 8px; height: 8px; background: #a5d6a7; border-radius: 50%;
  display: inline-block; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.callout-link {
  color: #a5d6a7; font-weight: 600; margin-left: 4px;
  text-decoration: underline; text-underline-offset: 2px;
}
.callout-link:hover { color: #fff; }

/* ===== Navbar ===== */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  padding: 0 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon img {
  width: 36px; height: 36px; object-fit: contain;
}
.logo-text { font-weight: 700; font-size: 18px; color: #0f172a; }
.logo-crm { color: #388e3d; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: #475569;
  transition: color 0.15s;
}
.nav-links a:hover { color: #388e3d; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-menu-btn span {
  width: 22px; height: 2px; background: #0f172a; border-radius: 2px;
  transition: all 0.2s;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 16px;
  padding: 20px 24px; border-top: 1px solid #e2e8f0;
}
.mobile-menu a { font-size: 16px; font-weight: 500; color: #475569; }
.mobile-menu.active { display: flex; }

/* ===== Hero ===== */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #f1f8e9 0%, #fff 100%);
  overflow: hidden;
}
.hero .container {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-block; padding: 6px 14px; border-radius: 50px;
  background: #e8f5e9; color: #2e7d32; font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 48px; font-weight: 800; line-height: 1.1;
  color: #0f172a; margin-bottom: 20px;
  letter-spacing: -0.02em; max-width: 700px;
}
.hero-sub {
  font-size: 18px; color: #475569; line-height: 1.7;
  margin-bottom: 32px; max-width: 600px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.hero-proof { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-bottom: 60px; }
.hero-proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: #475569; font-weight: 500;
}

/* Hero Dashboard Mock */
.hero-visual { width: 100%; max-width: 700px; }
.hero-dashboard {
  background: #fff; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.06);
  overflow: hidden; border: 1px solid #e2e8f0;
}
.dash-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #22c55e; }
.dash-title { font-size: 13px; font-weight: 600; color: #64748b; }
.dash-body { padding: 24px; }
.dash-stat-row { display: flex; gap: 20px; margin-bottom: 24px; }
.dash-stat {
  flex: 1; padding: 16px; background: #f8fafc; border-radius: 12px;
  text-align: center; border: 1px solid #e2e8f0;
}
.dash-stat-num {
  display: block; font-size: 28px; font-weight: 800; color: #388e3d;
}
.dash-stat-label { font-size: 12px; color: #64748b; font-weight: 500; }
.dash-pipeline { display: flex; flex-direction: column; gap: 12px; }
.dash-pipe-item {
  display: grid; grid-template-columns: 10px 1fr 1fr 1fr;
  gap: 12px; align-items: center;
  padding: 12px 16px; background: #f8fafc; border-radius: 10px;
  font-size: 13px; border: 1px solid #e2e8f0;
}
.pipe-dot { width: 10px; height: 10px; border-radius: 50%; }
.pipe-new { background: #388e3d; }
.pipe-process { background: #f59e0b; }
.pipe-close { background: #22c55e; }
.pipe-name { font-weight: 600; color: #0f172a; }
.pipe-stage { color: #64748b; text-align: center; }
.pipe-auto { color: #388e3d; font-weight: 500; font-size: 12px; text-align: right; }

/* ===== Section Headers ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: 36px; font-weight: 800; color: #0f172a;
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.section-header p { font-size: 18px; color: #64748b; max-width: 600px; margin: 0 auto; }

/* ===== Value Props ===== */
.value-props { padding: 100px 0; background: #fff; }
.props-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prop-card {
  padding: 32px; border-radius: 16px; border: 1px solid #e2e8f0;
  background: #fff; transition: all 0.2s; position: relative;
  text-align: center;
}
.prop-card:hover { border-color: #a5d6a7; box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.prop-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: #e8f5e9; color: #388e3d;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.prop-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.prop-card p { font-size: 15px; color: #64748b; line-height: 1.6; }
.prop-badge {
  position: absolute; top: 16px; right: 16px;
  background: #e8f5e9; color: #2e7d32;
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ===== Pricing ===== */
.pricing { padding: 100px 0; background: #f8faf8; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: stretch;
}
.price-card {
  background: #fff; border-radius: 20px;
  border: 1px solid #e2e8f0; padding: 36px;
  transition: all 0.2s; position: relative;
  text-align: center;
  display: flex; flex-direction: column;
}
.price-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

/* Featured card */
.price-card-featured {
  border: 2px solid #388e3d;
  box-shadow: 0 12px 40px rgba(56,142,61,0.15);
  z-index: 2;
}
.price-card-featured:hover {
  box-shadow: 0 16px 50px rgba(56,142,61,0.2);
}

/* Pro card */
.price-card-pro { border: 1px solid #a5d6a7; }
.price-card-pro:hover { border-color: #66bb6a; }

.price-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; justify-content: center; }
.badge {
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 50px; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-gold { background: #fef3c7; color: #92400e; }
.badge-green { background: #e8f5e9; color: #1b5e20; }
.badge-urgent { background: #fee2e2; color: #991b1b; }
.badge-purple { background: #e8f5e9; color: #2e7d32; }

.price-plan { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.price-amount { margin-bottom: 12px; display: flex; align-items: baseline; gap: 2px; justify-content: center; }
.price-dollar { font-size: 44px; font-weight: 800; color: #0f172a; }
.price-period { font-size: 16px; color: #64748b; font-weight: 500; }
.price-desc { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 24px; }
.price-features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; text-align: left; flex: 1; }
.price-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
}
.price-features li.included { color: #0f172a; }
.price-features li.not-included { color: #9ca3af; }
.price-note {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid #e2e8f0;
  font-size: 12px; color: #64748b; text-align: center; font-style: italic;
}

/* ===== Comparison Table ===== */
.comparison-table-wrapper {
  margin-top: 64px; background: #fff; border-radius: 20px;
  border: 1px solid #e2e8f0; padding: 40px; overflow: hidden;
}
.comparison-title {
  font-size: 22px; font-weight: 700; text-align: center; margin-bottom: 32px;
}
.comparison-table-scroll { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td {
  padding: 14px 20px; text-align: center; font-size: 14px;
  border-bottom: 1px solid #f1f5f9;
}
.comparison-table th {
  font-weight: 700; color: #0f172a; font-size: 15px;
  padding-bottom: 20px; border-bottom: 2px solid #e2e8f0;
}
.comparison-table td:first-child, .comparison-table th:first-child {
  text-align: left; font-weight: 500; color: #475569;
}
.comparison-table .col-founding {
  background: #e8f5e9;
}
.comparison-table thead .col-founding {
  color: #2e7d32; background: #e8f5e9; border-radius: 12px 12px 0 0;
}
.comparison-table .highlight-row td {
  font-weight: 600;
}
.comparison-table .highlight-row td:first-child { color: #0f172a; }

/* ===== Standard vs Pro ===== */
.std-vs-pro { padding: 100px 0; background: #fff; }
.compare-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 32px; align-items: center;
}
.compare-card {
  padding: 40px; border-radius: 20px; border: 1px solid #e2e8f0;
  background: #f8faf8; text-align: center;
}
.compare-card-pro { border-color: #a5d6a7; background: #f1f8e9; }
.compare-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #388e3d; margin-bottom: 12px;
}
.compare-label-pro { color: #2e7d32; }
.compare-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.compare-card p { font-size: 15px; color: #64748b; line-height: 1.6; margin-bottom: 20px; }
.compare-card ul { display: flex; flex-direction: column; gap: 8px; text-align: left; display: inline-flex; }
.compare-card li {
  font-size: 14px; font-weight: 500; color: #475569;
  padding-left: 20px; position: relative;
}
.compare-card li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; background: #388e3d;
}
.compare-card-pro li::before { background: #2e7d32; }
.compare-divider { display: flex; align-items: center; justify-content: center; }
.compare-vs {
  width: 48px; height: 48px; border-radius: 50%;
  background: #f1f5f9; color: #94a3b8;
  font-weight: 800; font-size: 14px; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center;
}
.compare-tagline {
  text-align: center; margin-top: 40px;
  font-size: 18px; color: #0f172a;
}

/* ===== Founding Urgency ===== */
.founding-urgency { padding: 80px 0; background: #fff; }
.urgency-inner {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #43a047 100%);
  border-radius: 24px; padding: 64px; text-align: center; color: #fff;
}
.urgency-inner h2 {
  font-size: 32px; font-weight: 800; margin-bottom: 16px;
}
.urgency-inner p {
  font-size: 17px; opacity: 0.9; max-width: 600px;
  margin: 0 auto 32px; line-height: 1.7;
}
.urgency-inner .btn-primary {
  background: #fff; color: #2e7d32;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.urgency-inner .btn-primary:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}

/* ===== Feature Spotlights ===== */
.spotlights { padding: 100px 0; background: #f8faf8; }
.spotlight-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.spotlight-card {
  padding: 36px; border-radius: 16px; border: 1px solid #e2e8f0;
  background: #fff; transition: all 0.2s; text-align: center;
}
.spotlight-card:hover { border-color: #a5d6a7; box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.spotlight-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: #e8f5e9; color: #388e3d;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.spotlight-icon-pro { background: #e8f5e9; color: #2e7d32; }
.spotlight-card h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.spotlight-pro-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  background: #e8f5e9; color: #2e7d32;
  padding: 3px 8px; border-radius: 50px; letter-spacing: 0.05em;
}
.spotlight-card p { font-size: 15px; color: #64748b; line-height: 1.6; }

/* ===== Credibility ===== */
.credibility { padding: 60px 0; background: #fff; border-top: 1px solid #f1f5f9; }
.cred-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.cred-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: #475569;
}
.cred-icon { color: #388e3d; flex-shrink: 0; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: #f8faf8; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e2e8f0;
}
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 20px 0; background: none; border: none;
  cursor: pointer; font-size: 16px; font-weight: 600;
  color: #0f172a; text-align: left; font-family: inherit;
}
.faq-question:hover { color: #388e3d; }
.faq-chevron { transition: transform 0.2s; color: #94a3b8; flex-shrink: 0; }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p {
  padding-bottom: 20px; font-size: 15px; color: #64748b; line-height: 1.7;
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.active {
  opacity: 1; pointer-events: all;
}
.modal {
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 520px;
  padding: 40px; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transform: translateY(20px); transition: transform 0.25s ease;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: #f1f5f9; color: #64748b;
  font-size: 22px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all 0.15s;
}
.modal-close:hover { background: #e2e8f0; color: #0f172a; }
.modal-header { text-align: center; margin-bottom: 28px; }
.modal-logo { width: 48px; height: 48px; margin: 0 auto 16px; }
.modal-header h2 { font-size: 24px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.modal-header p { font-size: 15px; color: #64748b; }
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px; font-weight: 600; color: #374151;
}
.form-group input,
.form-group select {
  padding: 12px 14px; border-radius: 10px;
  border: 1px solid #d1d5db; font-size: 15px;
  font-family: inherit; color: #0f172a;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff; width: 100%;
}
.form-group input:focus,
.form-group select:focus {
  outline: none; border-color: #388e3d;
  box-shadow: 0 0 0 3px rgba(56,142,61,0.15);
}
.form-group input::placeholder { color: #9ca3af; }
.modal-success { text-align: center; padding: 20px 0; }
.success-icon { margin-bottom: 20px; }
.modal-success h3 { font-size: 24px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.modal-success p { font-size: 15px; color: #64748b; line-height: 1.6; margin-bottom: 24px; }

@media (max-width: 640px) {
  .modal { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== Final CTA ===== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  text-align: center; color: #fff;
}
.final-cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.final-cta p {
  font-size: 18px; opacity: 0.85; max-width: 600px;
  margin: 0 auto 40px; line-height: 1.7;
}
.final-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-primary {
  background: #fff; color: #2e7d32;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.final-cta .btn-primary:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}

/* ===== Footer ===== */
.footer {
  padding: 32px 0; background: #1b5e20;
  border-top: 1px solid #2e7d32;
}
.footer-inner {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.footer .logo-icon { width: 28px; height: 28px; }
.footer .logo-icon img { width: 28px; height: 28px; filter: brightness(0) invert(1); }
.footer .logo-text { color: #fff; }
.footer .logo-crm { color: #a5d6a7; }
.footer-copy { font-size: 13px; color: #a5d6a7; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 40px; }
  .hero-visual { max-width: 560px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-divider { transform: rotate(90deg); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero { padding: 48px 0 64px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .section-header h2 { font-size: 28px; }
  .props-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .urgency-inner { padding: 40px 24px; }
  .urgency-inner h2 { font-size: 24px; }
  .final-cta h2 { font-size: 28px; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .comparison-table-wrapper { padding: 20px; }
  .dash-pipe-item { grid-template-columns: 10px 1fr; }
  .pipe-stage, .pipe-auto { display: none; }
}
