/* ============================================================
   GLOBAL STYLES
   ============================================================ */

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: #444;
  background: #fff;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── HEADER ── */
#site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.site-logo img { height: 82px; width: auto; }

/* ── NAV ── */
#site-nav { display: flex; gap: 0; }
#site-nav a {
  display: block;
  padding: 0 18px;
  height: 90px;
  line-height: 90px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
#site-nav a:hover,
#site-nav a.active {
  border-bottom-color: #c8a84b;
  color: #c8a84b;
}

/* ── HERO ── */
.hero-slider {
  position: relative;
  width: 100%;
  background: #1c2b4a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-slider-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 43, 74, 0.85) 0%,
    rgba(28, 43, 74, 0.55) 60%,
    rgba(28, 43, 74, 0.3) 100%
  );
  z-index: 1;
}
.hero-title {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
}
.hero-slider.hero-short { height: 250px; }

/* ── FOOTER ── */
#site-footer {
  background: #1c2b4a;
  border-top: 3px solid #c8a84b;
  padding: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.footer-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-nav {
  display: flex;
  gap: 0;
}
.footer-nav a {
  display: block;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.footer-nav a:hover {
  color: #c8a84b;
  border-bottom-color: #c8a84b;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* ============================================================
   INDUSTRIES LANDING PAGE
   ============================================================ */

/* ── INTRO ── */
.industries-intro {
  padding: 50px 40px 30px;
}
.industries-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.industries-intro p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

/* ── SEARCH ── */
.industries-search-wrap {
  padding: 0 40px 40px;
}
.industries-search-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.industries-search-inner input {
  width: 100%;
  max-width: 500px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  color: #333;
  outline: none;
  transition: border-color 0.15s;
  border-radius: 4px;
}
.industries-search-inner input:focus { border-color: #1c2b4a; }
.industries-search-inner input::placeholder { color: #bbb; }

/* ── INDUSTRY ROWS ── */
.industries-rows-wrap {
  padding: 0 40px 70px;
}

.industries-rows-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 90px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: height 0.2s ease;
}
.industry-row:first-child { border-top: none; }
.industry-row:last-of-type { border-bottom: none; }

.industry-row-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 43, 74, 0.85);
  transition: background 0.25s ease;
}
.industry-row:hover .industry-row-overlay {
  background: rgba(28, 43, 74, 0.65);
}

.industry-row-left {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.industry-row-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #c8a84b;
  min-width: 24px;
}
.industry-row-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.industry-row-right {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.industry-row-count {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}
.industry-row-arrow {
  font-size: 20px;
  color: #c8a84b;
  transition: transform 0.2s ease;
}
.industry-row:hover .industry-row-arrow {
  transform: translateX(4px);
}

.no-results {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  letter-spacing: 1px;
  padding: 40px 0;
}


/* ── JUMP NAV ── */
.jump-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #1c2b4a;
  border-bottom: 2px solid #c8a84b;
  padding: 0 40px;
}
.jump-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  align-items: center;
}
.jump-btn {
  display: inline-block;
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  text-decoration: none;
  margin-bottom: -2px;
}
.jump-btn:hover,
.jump-btn.active {
  color: #c8a84b;
  border-bottom-color: #c8a84b;
}


/* ============================================================
   CATEGORY PAGE
   ============================================================ */

/* ── BACK LINK ── */
.category-back-wrap {
  padding: 24px 40px 0;
}
.category-back-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.category-back {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c8a84b;
  transition: color 0.15s;
}
.category-back:hover { color: #a8882b; }

/* ── CATEGORY INTRO ── */
.category-intro-wrap {
  padding: 30px 40px 40px;
}
.category-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.category-intro-inner p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

/* ── INDUSTRY CARDS ── */
.category-grid-wrap {
  padding: 0 40px 60px;
}
.category-grid {
  max-width: 1100px;
  margin: 0 auto;
}

.category-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px 0;
  border-bottom: 0.5px solid #e5e5e5;
  align-items: start;
}
.category-card:last-child { border-bottom: none; }

.category-card-left {
  display: flex;
  flex-direction: column;
}
.category-card-accent {
  display: block;
  width: 28px;
  height: 2px;
  background: #c8a84b;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.category-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #1c2b4a;
  line-height: 1.3;
  margin-bottom: 12px;
}
.category-card-definition {
  font-size: 12px;
  line-height: 1.8;
  color: #999;
  font-style: italic;
}
.category-card-text {
  font-size: 13px;
  line-height: 1.85;
  color: #666;
  padding-top: 6px;
}

/* ── CTA ── */
.category-cta {
  background: #f9f9f9;
  border-top: 1px solid #e5e5e5;
  padding: 50px 40px;
}
.category-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.category-cta-inner p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.category-cta-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 12px 32px;
  background: #1c2b4a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.category-cta-btn:hover { background: #2a3e6a; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  #site-header { padding: 16px 20px; height: auto; flex-direction: column; }
  #site-nav a { padding: 0 10px; height: 44px; line-height: 44px; font-size: 12px; }
  .hero-slider.hero-short { height: 120px; }
  .hero-title { font-size: 20px; letter-spacing: 5px; }
  .industries-rows-wrap { padding: 0 20px 40px; }
  .industry-row { padding: 0 16px; height: auto; min-height: 80px; }
  .industry-row-left { flex: 1; padding-right: 16px; }
  .industry-row-name { font-size: 13px; letter-spacing: 1px; white-space: normal; }
  .industry-row-count { font-size: 11px; color: rgba(255,255,255,0.75); white-space: nowrap; }
  .industry-row-right { flex-shrink: 0; gap: 10px; }
  .category-card { grid-template-columns: 1fr; gap: 16px; }
  .category-cta-inner { flex-direction: column; align-items: flex-start; }
  .jump-nav { padding: 0 16px; }
  .jump-btn { padding: 8px 10px; font-size: 10px; letter-spacing: 0.5px; }
}