:root {
  --bg: #f4f5f7;
  --card-bg: #ffffff;
  --text: #1f2430;
  --text-dim: #555c6b;
  --accent: #a12b2b;
  --border: #e2e5ea;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

.site-header {
  display: flex;
  justify-content: space-between;
  padding: 28px 200px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.site-header a { color: var(--text-dim); text-decoration: none; }

.hero-card {
  background: #fafbfd;
  max-width: 380px;
  margin: 40px auto;
  padding: 34px 30px 28px;
  text-align: center;
  border: 1px solid var(--border);
  border-bottom: 2px solid #3b4a8c;
}

.hero-card h1 { font-size: 1.7rem; }
.hero-card p { font-size: 0.8rem; color: var(--text-dim); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 10px rgba(20, 30, 60, 0.06);
}

.card-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  align-self: center;
  margin-bottom: 12px;
}

.asire-logo {
  font-size: 2rem;
  border: 2px dashed #b8bdc9;
  border-radius: 8px;
  padding: 8px 18px;
  align-self: center;
  margin-bottom: 12px;
}

.card h2 {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.card ul {
  list-style: none;
  margin-bottom: 18px;
}

.card li {
  font-size: 0.8rem;
  color: var(--text-dim);
  padding-left: 14px;
  position: relative;
  margin-bottom: 8px;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.mockup {
  background: #f2f3f6;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 20px;
}

.mockup-titlebar {
  background: #3a4152;
  color: #fff;
  font-size: 0.62rem;
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.pipeline, .pipeline-docs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 8px;
}

.pipeline span, .pipeline-docs span {
  background: #6b7280;
  color: #fff;
  font-size: 0.6rem;
  padding: 10px 8px 4px;
  border-radius: 4px;
  min-width: 52px;
  text-align: center;
}

.pipeline-docs span { background: #e8e9ee; color: var(--text-dim); padding: 6px 10px; }

.stats {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  flex: 1;
  text-align: center;
  padding: 5px 2px;
}

.stat small { display: block; font-size: 0.55rem; color: var(--text-dim); }
.stat strong { font-size: 0.72rem; }

.bars {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 64px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 8px 12px;
}

.bars i { flex: 1; background: var(--accent); border-radius: 2px 2px 0 0; }

.crm-rows { margin-bottom: 8px; }

.crm-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.crm-row i { flex: 1; height: 12px; background: #4a5164; border-radius: 3px; }
.crm-row b { width: 10px; height: 10px; border: 2px solid var(--accent); border-radius: 50%; }

.crm-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  color: var(--text-dim);
}

.btn-explore {
  margin-top: auto;
  display: block;
  background: #111;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px;
  border-radius: 6px;
}

.btn-explore:hover { background: #333; }

.site-footer {
  background: #000;
  color: #fff;
  text-align: center;
  max-width: 380px;
  margin: 0 auto 60px;
  padding: 30px 24px;
  font-size: 0.78rem;
}

.phone-btn {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 8px 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.accent { color: var(--accent); }
.fineprint { margin-top: 6px; }

.bottom-strip {
  display: flex;
  justify-content: space-between;
  padding: 20px 200px 40px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ---- Explore / form pages ---- */

.page-title {
  max-width: 420px;
  margin: 50px auto 30px;
  padding: 0 20px;
  font-size: 2.2rem;
  font-weight: 400;
  color: #2b3346;
}

.form-card {
  background: #fff;
  max-width: 460px;
  margin: 0 auto 80px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(20, 30, 60, 0.08);
  overflow: hidden;
}

.form-card-header {
  text-align: center;
  padding: 24px 20px 16px;
  border-bottom: 1px solid var(--border);
}

.form-card-header h2 { font-size: 1.1rem; }
.form-card-header p { font-size: 0.72rem; color: var(--text-dim); }
.form-card-header a { color: var(--accent); text-decoration: none; font-size: 0.78rem; }

.form-body { padding: 28px 26px; }

.form-body h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.form-intro {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.offer-box {
  background: #f7f8fa;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.75rem;
  margin-bottom: 22px;
}

.offer-box h4 {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.offer-box p { color: var(--text-dim); margin-bottom: 4px; }
.offer-box strong { color: var(--text); }

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.field input {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #c9cdd6;
  border-radius: 5px;
  font-size: 0.85rem;
}

.roles-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.btn-submit {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.btn-submit:hover { background: #333; }
.btn-submit:disabled { background: #888; cursor: wait; }

.btn-secondary {
  display: block;
  text-align: center;
  background: #6b7280;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 14px;
}

.form-msg {
  margin-top: 14px;
  font-size: 0.82rem;
  text-align: center;
  display: none;
}

.form-msg.ok { display: block; color: #1a7f37; }
.form-msg.err { display: block; color: #b42318; }

.hp-field { position: absolute; left: -9999px; opacity: 0; }

@media (max-width: 900px) {
  .site-header, .bottom-strip { padding: 24px 24px; }
}
