:root {
	--primary-color: #0A6EFA;
	--primary-hover: #0858C8;
	--secondary-color: #436489;
	--primary60: #0A6EFA;
	--primary70: #0858C8;
	--secondary60: #436489;
}

/* ===========================================================
   AC and Heat Solutions - Careers Page
   Palette: accent red #c8202f, accent dark #9e1822,
   accent soft #fbeaec, dark navy #14202e
   No CSS custom properties (ATS-safe).
   =========================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #14202e;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

.accent {
  color: #c8202f;
}

/* ===================== TOP BAR ===================== */
.topbar {
  border-bottom: 1px solid #e6e9ee;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #14202e;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #14202e;
}

.nav-link:hover {
  color: #c8202f;
}

.nav-phone {
  font-size: 15px;
  font-weight: 700;
  color: #c8202f;
}

/* ===================== HERO ===================== */
.hero {
  padding: 92px 0 100px;
  background: #ffffff;
  text-align: center;
}

.hero .container {
  text-align: center;
}

.badge {
  display: inline-block;
  background: #fbeaec;
  color: #9e1822;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin: 0 auto 22px;
}

.hero-location {
  display: block;
  text-align: center !important;
  margin: 0 auto 14px !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #687684;
}

.hero h1 {
  display: block;
  text-align: center !important;
  margin: 0 auto 22px !important;
  max-width: 760px;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #14202e;
}

.hero-subhead {
  display: block;
  text-align: center !important;
  margin: 0 auto 36px !important;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.6;
  color: #45525f;
}

/* ===================== BUTTON ===================== */
.btn {
  display: inline-block;
  background: #c8202f;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 15px 38px;
  border-radius: 8px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.btn:link,
.btn:visited {
  color: #ffffff !important;
}

.btn:hover {
  background: #9e1822;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.btn:active {
  background: #9e1822;
  color: #ffffff !important;
}

/* ===================== SECTIONS ===================== */
section {
  padding: 84px 0;
}

section .container {
  text-align: center;
}

.section-alt {
  background: #f6f7f9;
  border-top: 1px solid #eceef2;
  border-bottom: 1px solid #eceef2;
}

.section-label {
  display: block;
  text-align: center !important;
  margin: 0 auto 12px !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #9e1822;
}

.section-title {
  display: block;
  text-align: center !important;
  margin: 0 auto 18px !important;
  max-width: 700px;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #14202e;
}

.section-subtitle {
  display: block;
  text-align: center !important;
  margin: 0 auto 52px !important;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: #45525f;
}

/* ===================== VALUES GRID ===================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}

.value-item {
  background: #ffffff;
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  padding: 30px 30px 28px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.value-item:hover {
  border-color: #c8202f;
  box-shadow: 0 8px 26px rgba(20, 32, 46, 0.08);
  transform: translateY(-2px);
}

.value-item h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #14202e;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #4a5763;
}

/* ===================== PERKS ===================== */
.perks {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid #e6e9ee;
}

.perk:last-child {
  border-bottom: none;
}

.perk-num {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fbeaec;
  color: #c8202f;
  font-size: 19px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perk-content h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #14202e;
  margin-bottom: 6px;
}

.perk-content p {
  font-size: 16px;
  line-height: 1.65;
  color: #4a5763;
}

/* ===================== CTA ===================== */
.cta {
  background: #14202e;
  text-align: center;
}

.cta .container {
  text-align: center;
}

.cta h2 {
  display: block;
  text-align: center !important;
  margin: 0 auto 14px !important;
  max-width: 620px;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #ffffff;
}

.cta p {
  display: block;
  text-align: center !important;
  margin: 0 auto 32px !important;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.6;
  color: #b6c0cb;
}

/* ===================== FOOTER ===================== */
footer {
  background: #0f1925;
  color: #aeb8c3;
  padding: 48px 0;
  text-align: center;
}

footer .container {
  text-align: center;
}

.footer-name {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-line {
  font-size: 15px;
  line-height: 1.7;
  color: #aeb8c3;
}

.footer-line a {
  color: #ffffff;
  font-weight: 600;
}

.footer-line a:hover {
  color: #c8202f;
}

.footer-tagline {
  font-size: 13.5px;
  letter-spacing: 0.4px;
  color: #6f7d8b;
  margin-top: 14px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 760px) {
  .hero {
    padding: 64px 0 70px;
  }
  .hero h1 {
    font-size: 38px;
    letter-spacing: -0.6px;
  }
  .hero-subhead {
    font-size: 17px;
  }
  section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 30px;
  }
  .cta h2 {
    font-size: 29px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .topbar-nav {
    gap: 18px;
  }
  .nav-link {
    display: none;
  }
}
