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

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #191a1e;
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 17px;
}

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

/* Topbar */
.topbar {
  background-color: #ffffff;
  border-bottom: 1px solid #ececec;
  padding: 18px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #191a1e;
  text-decoration: none;
}

.logo .accent {
  color: #f26522;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-site-link {
  color: #191a1e;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.main-site-link:hover {
  color: #f26522;
}

.topbar-phone {
  color: #191a1e;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.topbar-phone:hover {
  color: #f26522;
}

/* Hero */
.hero {
  padding: 84px 0 78px;
  text-align: center;
}

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

.badge {
  display: inline-block;
  background-color: #fcebe1;
  color: #c04e17;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
}

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

.location-label {
  margin-bottom: 18px !important;
}

.hero h1 {
  display: block !important;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 800;
  color: #191a1e;
  max-width: 760px;
  text-align: center !important;
  margin: 0 auto 22px !important;
  letter-spacing: -0.5px;
}

.hero h1 .accent {
  color: #f26522;
}

.hero-subhead {
  display: block !important;
  font-size: 19px;
  color: #4a4b52;
  max-width: 620px;
  text-align: center !important;
  margin: 0 auto 34px !important;
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  padding: 16px 40px;
  font-size: 16px;
  transition: transform 0.12s ease, background-color 0.12s ease;
}

.btn-apply,
.btn-apply:link,
.btn-apply:visited {
  background-color: #f26522;
  color: #ffffff !important;
}

.btn-apply:hover,
.btn-apply:active {
  background-color: #d9531a;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Who We Are */
.section-alt {
  background-color: #f7f6f4;
  padding: 78px 0;
  text-align: center;
}

.section-alt .container,
.section-why .container {
  text-align: center;
}

.section-title {
  display: block !important;
  font-size: 36px;
  font-weight: 800;
  color: #191a1e;
  max-width: 700px;
  text-align: center !important;
  margin: 0 auto 20px !important;
  letter-spacing: -0.3px;
}

.section-subtitle {
  display: block !important;
  font-size: 18px;
  color: #4a4b52;
  max-width: 720px;
  text-align: center !important;
  margin: 0 auto 44px !important;
}

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

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

.value-item:hover {
  border-color: #f26522;
  box-shadow: 0 6px 20px rgba(25, 26, 30, 0.06);
}

.value-item h3 {
  font-size: 20px;
  font-weight: 800;
  color: #191a1e;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 16px;
  color: #55565d;
}

/* Why Work Here */
.section-why {
  padding: 82px 0;
  text-align: center;
}

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

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

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

.perk-number {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #fcebe1;
  color: #f26522;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perk-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: #191a1e;
  margin-bottom: 6px;
}

.perk-content p {
  font-size: 16px;
  color: #55565d;
}

/* CTA */
.cta {
  background-color: #191a1e;
  padding: 76px 0;
  text-align: center;
}

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

.cta-title {
  display: block !important;
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  max-width: 700px;
  text-align: center !important;
  margin: 0 auto 16px !important;
}

.cta-subtitle {
  display: block !important;
  font-size: 18px;
  color: #c7c8cd;
  max-width: 560px;
  text-align: center !important;
  margin: 0 auto 32px !important;
}

/* Footer */
.footer {
  background-color: #191a1e;
  border-top: 1px solid #2a2b31;
  padding: 46px 0;
  text-align: center;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-brand .accent {
  color: #f26522;
}

.footer-tagline {
  font-size: 15px;
  color: #a9aab0;
  max-width: 520px;
  margin: 0 auto 18px;
}

.footer-detail {
  font-size: 14px;
  color: #c7c8cd;
  margin-bottom: 4px;
}

.footer-link {
  color: #c7c8cd;
  text-decoration: none;
  font-weight: 700;
}

.footer-link:hover {
  color: #f26522;
}

.footer-license {
  color: #7d7e85;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 720px) {
  .hero h1 {
    font-size: 38px;
  }
  .section-title {
    font-size: 29px;
  }
  .cta-title {
    font-size: 30px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 60px 0 54px;
  }
}
