/* =========================================
   PrimeAxis Industrial Co. - Industrial Catalog Style
   ========================================= */

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

html {
  scroll-behavior: auto;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #2a2a2a;
  background-color: #f5f4f0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='%23f5f4f0'/%3E%3Cpath d='M0 50h100M50 0v100' stroke='%23e8e6e0' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
}

/* Page Container */
.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 40px 40px;
  background-color: #faf9f6;
  border: 1px solid #d4d2cc;
  border-top: 3px solid #0a2540;
  margin-top: 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Header */
.site-header {
  margin-bottom: 28px;
}

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

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

.logo {
  width: 64px;
  height: auto;
  display: block;
}

.brand-text h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #0a2540;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.tagline {
  font-size: 11px;
  color: #5a5a5a;
  margin-top: 3px;
  letter-spacing: 0.3px;
}

/* Navigation */
.nav-bar {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-top: 8px;
}

.nav-bar a {
  color: #0a3d62;
  text-decoration: none;
  font-weight: 600;
}

.nav-bar a:hover {
  text-decoration: underline;
  color: #0a2540;
}

.nav-sep {
  color: #999;
  margin: 0 8px;
  font-weight: normal;
}

.header-rule {
  border: none;
  border-top: 2px solid #0a2540;
  margin-top: 16px;
}

/* Section Layout */
.section {
  margin-bottom: 32px;
}

.section-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #0a2540;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #c5c3bd;
}

.section-body p {
  margin-bottom: 12px;
  text-align: justify;
}

.section-rule {
  border: none;
  border-top: 1px solid #d4d2cc;
  margin: 28px 0;
}

/* Capabilities Matrix Table */
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.matrix-table tr {
  border-bottom: 1px solid #e0ddd7;
}

.matrix-table tr:last-child {
  border-bottom: none;
}

.matrix-label {
  width: 30%;
  padding: 10px 12px;
  text-align: left;
  font-weight: bold;
  color: #0a2540;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.8px;
  background-color: #f0eeea;
  border-right: 1px solid #d4d2cc;
  vertical-align: top;
}

.matrix-value {
  padding: 10px 12px;
  color: #3a3a3a;
  vertical-align: top;
}

/* Product Catalogue */
.catalog {
  border-top: 1px solid #d4d2cc;
}

.catalog-item {
  padding: 14px 0;
  border-bottom: 1px solid #e0ddd7;
}

.catalog-item:last-child {
  border-bottom: 1px solid #d4d2cc;
}

.catalog-title {
  font-size: 13px;
  font-weight: bold;
  color: #0a3d62;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.catalog-desc {
  font-size: 13px;
  color: #3a3a3a;
  margin-bottom: 2px;
  line-height: 1.5;
}

.catalog-context {
  font-size: 12px;
  color: #6a6a6a;
  font-style: italic;
}

/* Industries List */
.industries-list {
  list-style: none;
  border-top: 1px solid #d4d2cc;
}

.industries-list li {
  padding: 10px 12px;
  border-bottom: 1px solid #e0ddd7;
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.industries-list li:last-child {
  border-bottom: 1px solid #d4d2cc;
}

.industries-list li strong {
  font-size: 13px;
  color: #0a3d62;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 160px;
  flex-shrink: 0;
}

.industry-desc {
  font-size: 12px;
  color: #5a5a5a;
  line-height: 1.5;
}

/* Why List */
.why-list {
  list-style: none;
  padding-left: 0;
}

.why-list li {
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
  font-size: 13px;
  color: #3a3a3a;
  border-bottom: 1px dotted #d4d2cc;
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list li::before {
  content: "\25A0";
  position: absolute;
  left: 0;
  color: #0a3d62;
  font-size: 8px;
  top: 10px;
}

/* Contact Block */
.contact-block {
  border: 1px solid #d4d2cc;
  background-color: #f5f4f0;
  padding: 20px 24px;
  font-size: 13px;
  line-height: 1.8;
}

.contact-name {
  font-weight: bold;
  font-size: 14px;
  color: #0a2540;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.contact-phone,
.contact-email,
.contact-address {
  color: #3a3a3a;
}

.contact-address {
  margin-top: 8px;
  font-style: normal;
}

.contact-block a {
  color: #0a3d62;
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  padding-top: 8px;
}

.footer-rule {
  border: none;
  border-top: 2px solid #0a2540;
  margin-bottom: 16px;
}

.footer-inner {
  text-align: center;
  font-size: 11px;
  color: #6a6a6a;
  line-height: 1.8;
}

.footer-name {
  font-weight: bold;
  color: #0a2540;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 12px;
}

.footer-disclaimer {
  margin-top: 10px;
  font-size: 10px;
  color: #888;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .page {
    padding: 20px 16px;
    margin-top: 0;
    margin-bottom: 0;
    border-left: none;
    border-right: none;
  }

  .header-inner {
    flex-direction: column;
    gap: 12px;
  }

  .nav-bar {
    padding-top: 0;
    font-size: 11px;
  }

  .brand-text h1 {
    font-size: 18px;
  }

  .industries-list li {
    flex-direction: column;
    gap: 4px;
  }

  .industries-list li strong {
    min-width: auto;
  }

  .matrix-label {
    width: 40%;
  }
}
