:root{
  --ink:#0c0f14;
  --muted:#5a6472;
  --border:#e6e8ee;
  --bg:#ffffff;
  --soft:#f6f7fb;

  /* elegant “female-owned without stereotypes” accent */
  --accent:#3a2a6a;      /* deep violet */
  --accent2:#0f766e;     /* teal (trust/precision) */
  --shadow: 0 18px 45px rgba(12,15,20,0.10);
  --radius: 18px;
}

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

body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}

.container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 22px;
}

/* HEADER */
.site-header{
  position: sticky;
  top:0;
  z-index:10;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand h1{
  font-size: 28px;
  letter-spacing: -0.02em;
}

.brand-top{
  display:flex;
  align-items:center;
  gap:10px;
}

.tagline{
  color:var(--muted);
  margin-top:4px;
  font-weight:600;
}

.subtag{
  color:var(--muted);
  margin-top:6px;
  font-size: 13px;
}

.badge{
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(58,42,106,0.10);
  border: 1px solid rgba(58,42,106,0.18);
}

.badge {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  vertical-align: middle;
}

/* NAV */
.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a{
  text-decoration:none;
  color:var(--ink);
  font-weight:600;
  font-size:14px;
  opacity:0.9;
}

.nav a:hover{ opacity:1; text-decoration: underline; text-underline-offset: 3px; }

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  text-decoration:none;
  font-weight:700;
  box-shadow: none;
  transition: transform .08s ease, box-shadow .12s ease, border-color .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(12,15,20,0.08);
  border-color: rgba(12,15,20,0.18);
}

.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
  color: #fff;
}

.btn-secondary{
  background: rgba(12,15,20,0.04);
}

/* HERO */
.hero{
  padding: 38px 0 10px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.hero-copy h2{
  font-size: 36px;
  line-height:1.15;
  letter-spacing:-0.03em;
  margin-bottom: 12px;
}

.lead{
  color: var(--muted);
  font-size: 16px;
  max-width: 64ch;
}

.cta-row{
  display:flex;
  gap: 12px;
  margin: 18px 0 10px;
  flex-wrap: wrap;
}

.meta{
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.fineprint{
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}

/* CARDS */
.card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  margin: 18px 0;
}

.card h2{
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.hero-card{
  background: linear-gradient(180deg, var(--soft), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.hero-card h3{
  font-size: 18px;
  margin-bottom: 12px;
}

.checklist{
  margin: 10px 0 14px 18px;
  color: var(--ink);
}

.small-note{
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

/* GRIDS */
.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: rgba(12,15,20,0.02);
}

.feature h3{
  font-size: 15px;
  margin-bottom: 6px;
}

.feature p{
  color: var(--muted);
  font-size: 14px;
}

.spec-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.spec h3{ font-size: 14px; margin-bottom: 6px; }
.spec p{ color: var(--muted); }

/* LISTS */
.steps{
  padding-left: 18px;
  color: var(--ink);
}

.bullets{
  padding-left: 18px;
  margin-top: 10px;
}

.contact-row{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
  margin: 12px 0 6px;
}

.pill{
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(12,15,20,0.03);
  color: var(--ink);
}
.fineprint {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.25rem;
}
/* FOOTER */
.site-footer{
  border-top: 1px solid var(--border);
  background: #fff;
  margin-top: 24px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.footer-note{
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .feature-grid, .spec-grid{ grid-template-columns: 1fr; }
  .hero-copy h2{ font-size: 30px; }
  .header-inner{ align-items:flex-start; }
  
}
/* RFQ template box */
.rfq-box {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 16px;
  margin: 14px 0;
  background: #fafafa;
}

.rfq-title {
  margin-bottom: 10px;
}
.process-steps {
  padding-left: 18px;
}

.process-steps li {
  margin-bottom: 14px;
}
.rfq-template {
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.45;
  color: #111;
}