/******************************************************
  skin_CAM-lite.css  
  CAM/DFM Light Theme — PCBfabrication.com 2025A
******************************************************/

/* ===== Theme colors ===== */
:root {
  --cam-primary: #0A3D91;          /* deep engineering blue */
  --cam-primary-light: #4C84D8;
  --cam-bg-light: #F3F8FF;         /* ultra-light blue */
  --cam-border: #D6E4F7;
  --cam-text: #1A1A1A;
  --cam-badge-bg: #E9F7EF;         /* soft green badge */
  --cam-badge-text: #0A3D91;       /* deep blue number */
}

/* ===== Base ===== */
body {
  background: #ffffff;
  color: var(--cam-text);
}

/* ===== Content panel spacing ===== */
.content_panel {
  padding: 32px 38px !important;
  background: #FAFCFF;
}

/* ===== HERO light block ===== */
.cam-hero-light {
  background: var(--cam-bg-light);
  border: 1px solid var(--cam-border);
  padding: 36px 28px;
  border-radius: 8px;
  margin-bottom: 28px;
}

.cam-hero-light h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--cam-primary);
  margin-bottom: 12px;
}

.cam-hero-light .lead {
  font-size: 17px;
  margin-bottom: 18px;
  color: #06306F;
}

.cam-hero-light .mini-info {
  font-size: 14px;
  color: var(--cam-primary);
  margin-top: 8px;
}

/* ===== Buttons ===== */
.btn-primary {
  background: var(--cam-primary) !important;
  border-color: var(--cam-primary) !important;
  color: #fff !important;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--cam-primary-light) !important;
  border-color: var(--cam-primary-light) !important;
}

.btn-outline {
  border-color: var(--cam-primary) !important;
  color: var(--cam-primary) !important;
}
.btn-outline:hover {
  background: var(--cam-primary) !important;
  color: #fff !important;
}

/* PDF Download soft */
.btn-soft {
  background: #fff;
  border: 1px solid var(--cam-primary-light);
  color: var(--cam-primary) !important;
  font-weight: 600;
}
.btn-soft:hover {
  background: var(--cam-primary);
  color: #fff !important;
}

/* ===== Card ===== */
.module.card {
  background: #fff;
  border: 1px solid var(--cam-border);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 26px;
}

/* ===== Section heading ===== */
.h2 {
  color: var(--cam-primary);
  font-size: 22px;
  margin-bottom: 14px;
}

/* ===== Checklist ===== */
/* Convert UL/OL to no native bullets */
.checklist {
  list-style: none !important;
  margin: 0;
  padding: 0;
  counter-reset: camStep;
}

.checklist li {
  counter-increment: camStep;
  margin-bottom: 10px;
  padding-left: 42px;
  position: relative;
  line-height: 1.55;
  font-size: 15px;
}

/* ? Modern square numeric badge */
.checklist li::before {
  content: counter(camStep);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  background: var(--cam-badge-bg);
  color: var(--cam-badge-text);
  border-radius: 6px;
  text-align: center;
  line-height: 26px;
  font-weight: 700;
  border: 1px solid #cfe9db;
  font-size: 14px;
}

/* ===== Tables ===== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin-top: 10px;
}
.spec-table th {
  background: var(--cam-primary);
  color: #fff;
  padding: 10px;
  border: 1px solid var(--cam-primary);
  font-weight: 600;
}
.spec-table td {
  padding: 10px;
  border: 1px solid var(--cam-border);
}
.spec-table tbody tr:nth-child(even) {
  background: #F7FBFF;
}

/* ===== Layer diagram ===== */
.stack-diagram {
  text-align: center;
  margin: 12px 0 20px;
}

/* ===== CTA box ===== */
.cta-box {
  background: var(--cam-bg-light);
  border: 1px solid var(--cam-border);
  padding: 26px;
  text-align: center;
  border-radius: 8px;
  margin: 30px 0;
}
.cta-box h2 {
  color: var(--cam-primary);
  font-size: 24px;
  margin-bottom: 10px;
}

/* ===== Mobile ===== */
@media(max-width: 768px) {
  .content_panel { padding: 22px !important; }
  .cam-hero-light { padding: 24px; }
  .checklist li {
    padding-left: 40px;
  }
  .checklist li::before {
    width: 26px;
    height: 26px;
    line-height: 24px;
    font-size: 13px;
  }
}
