/* ============================================
   HISAABKARO BUSINESS — apps/biz/css/biz.css
   Pulls in the shared design tokens + component
   library, then layers biz-specific styling on
   top (landing dashboard, calculator pages).
   ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
@import url("/shared/css/variables.css");
@import url("/shared/css/components.css");

/* ============================================
   LANDING DASHBOARD
   ============================================ */
.biz-hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}
.biz-hero h1 {
  font-size: clamp(1.9rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}
.biz-hero .gradient-text {
  background: linear-gradient(135deg, #1d9e75 0%, #4eedb0 50%, #1d9e75 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.biz-hero p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  max-width: 640px;
  margin: 0 auto;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  padding: 1rem 0 3rem;
}
.tool-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  background: var(--card-glass-bg);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition);
}
.tool-card:hover {
  border-color: var(--border-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.tool-card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--primary-glow);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.tool-card h3 { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.tool-card p { margin: 0; font-size: 0.86rem; color: var(--text-secondary); line-height: 1.5; }
.tool-card .tool-card-cta { margin-top: auto; font-size: 0.8rem; font-weight: 700; color: var(--primary-light); }

/* ============================================
   CALCULATOR PAGE
   ============================================ */
.calc-page .page-hero { padding-top: 2rem; }

.results-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-tertiary);
  font-size: 0.88rem;
}
