@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue:       #1C5DAB;
  --dark-blue:  #13406B;
  --black:      #010101;
  --light-gray: #E6E6E6;
  --mid-gray:   #999999;
  --white:      #FFFFFF;
  --body-bg:    #F4F7FB;
  --text:       #010101;
  --text-muted: #555555;
  --border:     #D8E8F5;
  --row-alt:    #EEF5FC;
  --row-hover:  #DFF0FF;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--body-bg);
  min-height: 100vh;
}

/* ── HEADER ───────────────────────────────────────────────── */
header {
  background: var(--white);
  border-bottom: 4px solid var(--blue);
  box-shadow: 0 2px 16px rgba(28,93,171,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo img { height: 38px; width: auto; display: block; }

.header-right { text-align: right; }

.header-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-blue);
}

.header-sub {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 11.5px;
  color: var(--mid-gray);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* ── MAIN ─────────────────────────────────────────────────── */
main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 40px 80px;
}

/* ── SECTION ──────────────────────────────────────────────── */
.section {
  margin-bottom: 60px;
  padding: 28px 30px 30px;
  border-radius: 8px;
}

.section-ihp  { background: #DBEAF8; }  /* blue */
.section-awhp { background: #D6EDDB; }  /* green */
.section-wwhp { background: #E8DFF2; }  /* lavender */
.section-hpc  { background: #FFEFD0; }  /* amber */
.section-pool { background: #D2ECF0; }  /* teal */
.section-solar { background: #FFE9D4; } /* peach */
.section-circ { background: #E2E2EC; }  /* slate */

.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 4px;
}

.section-bar {
  width: 5px;
  height: 28px;
  background: var(--blue);
  border-radius: 3px;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--dark-blue);
  letter-spacing: 0.01em;
}

/* ── SUBSECTION ───────────────────────────────────────────── */
.subsection { margin-top: 28px; }

.subsection-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0 0 9px 2px;
}

/* ── TABLE ────────────────────────────────────────────────── */
table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

thead tr { background: var(--dark-blue); }

thead th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 10px 16px;
  text-align: left;
}

thead th.th-right { text-align: right; width: 130px; }

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.12s ease;
}

tbody tr:nth-child(odd) { background: var(--white); }
tbody tr:nth-child(even) { background: transparent; }
tbody tr:hover:not(.row-inactive) { background: var(--row-hover); }
tbody tr:last-child { border-bottom: none; }

td { padding: 11px 16px; vertical-align: middle; }

.td-model {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--black);
  white-space: nowrap;
  width: 230px;
}

.td-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.td-action { text-align: right; white-space: nowrap; }

/* ── PDF BUTTON ───────────────────────────────────────────── */
.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--blue);
  padding: 7px 14px 7px 12px;
  border-radius: 3px;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  box-shadow: 0 1px 4px rgba(28,93,171,0.18);
}

.btn-pdf:hover {
  background: var(--dark-blue);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(19,64,107,0.28);
}

.btn-pdf:active { transform: translateY(0); box-shadow: none; }

.btn-pdf svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── INACTIVE / COMING SOON ───────────────────────────────── */
.row-inactive { opacity: 0.48; }
.row-inactive .td-model { color: var(--mid-gray); }

.badge-soon {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mid-gray);
  border: 1px solid var(--light-gray);
  padding: 5px 10px;
  border-radius: 3px;
}

.badge-na {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #CCCCCC;
  padding: 5px 10px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--white);
  border-top: 2px solid var(--light-gray);
  padding: 20px 40px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo img { height: 22px; width: auto; opacity: 0.5; }

.footer-note {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: var(--mid-gray);
  text-align: center;
  max-width: 480px;
}

.footer-copy {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: #BBBBBB;
  text-align: right;
  white-space: nowrap;
}
