*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0f1f2e;
  --navy-light: #1a3247;
  --orange: #c94520;
  --orange-light: #db5530;
  --gray-light: #f5f1ec;
  --gray-mid: #e3dbd1;
  --gray-text: #5a5a5a;
  --white: #ffffff;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); background: var(--white); line-height: 1.6; font-size: 16px; }

/* ===================== NAV ===================== */
nav {
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links li a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 2px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--orange); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-phone {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-phone:hover { color: var(--orange-light); }

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-light);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
    gap: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    padding: 13px 5%;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 0;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
  .nav-phone { display: none; }
}

/* ===================== STICKY MOBILE CALL BAR ===================== */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--orange);
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}
.sticky-mobile-bar a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .sticky-mobile-bar { display: block; }
  body { padding-bottom: 60px; }
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
  background: var(--gray-light);
  padding: 10px 5%;
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.4;
}
.breadcrumb a { color: var(--gray-text); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 6px; color: var(--gray-mid); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-sm { min-height: 380px; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  z-index: 0;
}
/* Gradient flips dark RIGHT, fades LEFT — opposite of Lehi */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(15,31,46,0.93) 50%, rgba(15,31,46,0.55) 100%);
  z-index: 1;
}
/* Hero text anchors to the RIGHT side */
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 5%;
  max-width: 700px;
  margin-left: auto;
}
/* Option C: decorative rule + eyebrow line above H1 */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
/* .hero-badge kept for inner pages */
.hero-badge {
  display: inline-block;
  background: rgba(201,69,32,0.15);
  border: 1px solid rgba(201,69,32,0.4);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-light); }
.btn-secondary {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover { color: var(--white); border-color: var(--white); }
.hero-trust {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 28px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span::before { content: '✓ '; color: var(--orange); }

/* ===================== SECTION COMMON ===================== */
.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

/* ===================== SERVICES ===================== */
.services { padding: 80px 5%; background: var(--white); }
.services-intro { font-size: 16px; color: var(--gray-text); max-width: 640px; margin-bottom: 40px; line-height: 1.7; }
/* Card grid LEFT, image RIGHT — flipped from Lehi */
.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.services-image { order: 2; }
.services-grid-wrap { order: 1; }
@media (max-width: 860px) {
  .services-layout { grid-template-columns: 1fr; }
  .services-image { order: 1; }
  .services-grid-wrap { order: 2; }
}
.services-image img { width: 100%; border-radius: 4px; display: block; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--gray-mid); border: 2px solid var(--gray-mid); }
.service-card { background: var(--white); padding: 24px 20px; transition: background 0.2s; }
.service-card:hover { background: var(--gray-light); }
.service-icon { width: 36px; height: 3px; background: var(--orange); margin-bottom: 14px; }
.service-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.02em; }
.service-card p { font-size: 13px; color: var(--gray-text); line-height: 1.6; }

/* ===================== WHY — 2x2 bordered cards ===================== */
.why { background: var(--navy); padding: 80px 5%; }
.why .section-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--orange);
  padding: 28px 24px;
  border-radius: 2px;
}
.why-number { font-family: var(--font-display); font-size: 44px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.why-item h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.why-item p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===================== AREAS ===================== */
.areas { padding: 80px 5%; background: var(--gray-light); }
.areas-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
/* Left-bar accent tags instead of Lehi's full-border pills */
.area-tag {
  background: var(--white);
  border-left: 3px solid var(--orange);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ===================== FAQ — alternating rows ===================== */
.faq { padding: 80px 5%; background: var(--white); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid var(--gray-mid); padding: 24px 20px; }
.faq-item:nth-child(even) { background: var(--gray-light); }
.faq-item h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 10px; }
.faq-item p { font-size: 15px; color: var(--gray-text); line-height: 1.7; }

/* ===================== CONTACT CTA ===================== */
.contact-cta { background: var(--orange); padding: 80px 5%; text-align: center; }
.contact-cta h2 { font-family: var(--font-display); font-size: clamp(36px, 6vw, 60px); font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.contact-cta p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.contact-phone { display: inline-block; font-family: var(--font-display); font-size: clamp(36px, 6vw, 56px); font-weight: 800; color: var(--white); text-decoration: none; letter-spacing: 0.04em; border-bottom: 3px solid rgba(255,255,255,0.4); padding-bottom: 4px; }
.contact-phone:hover { border-color: var(--white); }
.contact-sub { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 16px; }

/* ===================== FORM ===================== */
.form-section { padding: 80px 5%; background: var(--navy-light); }
.form-wrap { max-width: 520px; margin: 0 auto; }
.form-wrap .section-title { color: var(--white); }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; background: var(--orange); color: var(--white); font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 18px; border: none; border-radius: 3px; cursor: pointer; transition: background 0.2s; margin-top: 8px; }
.btn-submit:hover { background: var(--orange-light); }
.form-note { font-size: 13px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 16px; }

/* ===================== FOOTER ===================== */
footer { background: var(--navy); border-top: 3px solid var(--orange); }
.footer-main { padding: 48px 5%; display: grid; grid-template-columns: 1.2fr 1.8fr 1.2fr; gap: 40px; align-items: start; }
@media (max-width: 768px) { .footer-main { grid-template-columns: 1fr; gap: 32px; } }
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--white); text-decoration: none; display: block; margin-bottom: 12px; }
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-nav-list li a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-nav-list li a:hover { color: var(--orange); }
.footer-phone-link { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--white); text-decoration: none; display: block; margin-bottom: 16px; }
.footer-phone-link:hover { color: var(--orange); }
.footer-cities { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }

/* ===================== CONTENT SECTIONS (inner pages) ===================== */
.content-section { padding: 80px 5%; background: var(--white); }
.content-section.alt { background: var(--gray-light); }
.content-section.dark { background: var(--navy); }
.content-inner { max-width: 880px; margin: 0 auto; }
.content-section h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 40px); font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; letter-spacing: 0.01em; line-height: 1.05; }
.content-section.dark h2 { color: var(--white); }
.content-section h3 { font-family: var(--font-display); font-size: clamp(20px, 3vw, 28px); font-weight: 700; text-transform: uppercase; color: var(--navy); margin: 32px 0 12px; letter-spacing: 0.01em; }
.content-section.dark h3 { color: var(--white); }
.content-section p { font-size: 16px; color: var(--gray-text); line-height: 1.8; margin-bottom: 20px; }
.content-section.dark p { color: rgba(255,255,255,0.65); }
.content-section ul,
.content-section ol { margin-bottom: 20px; margin-left: 0; list-style: none; }
.content-section ul li,
.content-section ol li { font-size: 15px; color: var(--gray-text); line-height: 1.7; padding: 5px 0 5px 26px; position: relative; }
.content-section ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 12px; height: 2px; background: var(--orange); }
.content-section ol { counter-reset: ol-counter; }
.content-section ol li { counter-increment: ol-counter; }
.content-section ol li::before { content: counter(ol-counter); position: absolute; left: 0; top: 5px; font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--orange); }
.content-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 720px) { .content-2col { grid-template-columns: 1fr; gap: 32px; } }
.content-img { width: 100%; border-radius: 4px; display: block; }

/* ===================== PROCESS STEPS ===================== */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; margin: 40px 0; }
.process-step { display: flex; flex-direction: column; }
.step-number { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.step-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--gray-text); line-height: 1.6; }

/* ===================== PRICING ===================== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; margin: 40px 0; }
.pricing-card { background: var(--white); border: 2px solid var(--gray-mid); border-radius: 4px; padding: 32px 24px; }
.pricing-card.featured { border-color: var(--orange); position: relative; }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -1px; right: 20px; background: var(--orange); color: var(--white); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 0 0 3px 3px; }
.pricing-card-label { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.pricing-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.pricing-range { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--orange); margin-bottom: 20px; line-height: 1; }
.pricing-range sub { font-size: 16px; font-weight: 400; color: var(--gray-text); }
.pricing-card ul { list-style: none; }
.pricing-card ul li { font-size: 14px; color: var(--gray-text); padding: 7px 0 7px 22px; position: relative; border-top: 1px solid var(--gray-light); }
.pricing-card ul li:first-child { border-top: none; }
.pricing-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ===================== FEATURE CARDS ===================== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin: 40px 0; }
.feature-card { background: var(--gray-light); padding: 28px 24px; border-radius: 3px; }
.feature-card .feature-icon { width: 36px; height: 3px; background: var(--orange); margin-bottom: 14px; }
.feature-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-text); line-height: 1.6; margin: 0; }

/* ===================== COMPARISON TABLE ===================== */
.compare-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 15px; }
.compare-table th { background: var(--navy); color: var(--white); font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 14px 16px; text-align: left; }
.compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-mid); color: var(--gray-text); }
.compare-table tr:nth-child(even) td { background: var(--gray-light); }
.compare-table td:first-child { font-weight: 600; color: var(--navy); }
.compare-check { color: var(--orange); font-weight: 700; }

/* ===================== URGENCY BAR ===================== */
.urgency-bar { background: var(--navy-light); border-left: 4px solid var(--orange); padding: 16px 24px; margin-bottom: 32px; border-radius: 0 3px 3px 0; }
.urgency-bar p { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--white); letter-spacing: 0.03em; }
.urgency-bar span { color: var(--orange); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 640px) {
  .hero { min-height: 460px; }
  .hero-sm { min-height: 300px; }
  .hero-inner { padding: 60px 4%; }
  .hero-sub { font-size: 16px; }
  .services, .why, .areas, .faq, .contact-cta, .form-section, .content-section { padding-left: 4%; padding-right: 4%; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-main { padding: 36px 4%; }
  .footer-bottom { padding: 16px 4%; }
}
