/* ============================================================
   North Alabama Garage Pros — Main Stylesheet
   Theme: Industrial Bold | Trustworthy | Local Authority
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Roboto:wght@300;400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:      #0f1f3d;
  --navy-mid:  #1a2f54;
  --orange:    #e85d04;
  --orange-lt: #f48c06;
  --gold:      #ffd60a;
  --white:     #ffffff;
  --off-white: #f7f8fc;
  --gray-100:  #eef0f5;
  --gray-300:  #c8cdd8;
  --gray-600:  #5a6175;
  --gray-800:  #2d3142;
  --text:      #1e2235;
  --success:   #10b981;
  --shadow-sm: 0 2px 8px rgba(15,31,61,.10);
  --shadow-md: 0 8px 32px rgba(15,31,61,.18);
  --shadow-lg: 0 20px 60px rgba(15,31,61,.22);
  --radius:    6px;
  --radius-lg: 12px;
  --transition: .25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-lt); }

ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.15;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: .5px;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--gray-600); font-size: .97rem; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  display: block;
  margin-bottom: .5rem;
}

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: var(--gray-300); }
.section-gray { background: var(--off-white); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,93,4,.35);
}
.btn-primary:hover {
  background: var(--orange-lt);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,93,4,.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  color: var(--white);
}

.btn-call {
  background: var(--success);
  color: var(--white);
  font-size: 1.3rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 4px 20px rgba(16,185,129,.3);
}
.btn-call:hover {
  background: #0da271;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16,185,129,.4);
}

.btn-lg { padding: 1.1rem 2.8rem; font-size: 1.15rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: .5rem;
  overflow: hidden;
}
.top-bar span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
}
.top-bar a { color: var(--gold); font-weight: 500; }
.top-bar .emergency { color: #f87171; font-weight: 600; }

/* ── Header / Nav ── */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(15,31,61,.1);
  border-bottom: 3px solid var(--orange);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  line-height: 1;
}
.logo-name span { color: var(--orange); }
.logo-tagline {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-600);
}

.main-nav { display: flex; align-items: center; gap: .5rem; }
.main-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: .4rem .75rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--orange);
  background: rgba(232,93,4,.06);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.header-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.header-phone .icon { color: var(--orange); font-size: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .3rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #16315c 60%, #1a3a6e 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,.018) 40px,
      rgba(255,255,255,.018) 80px
    );
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt), var(--gold));
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,214,10,.12);
  border: 1px solid rgba(255,214,10,.3);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero h1 span { color: var(--orange-lt); }

.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
}
.trust-item .dot { color: var(--success); font-size: 1rem; }

.stars-row {
  display: flex;
  align-items: center;
  gap: .25rem;
  color: var(--gold);
  font-size: 1rem;
}
.stars-row .count { color: rgba(255,255,255,.6); font-size: .8rem; margin-left: .3rem; }

/* ── Lead Form (Hero Card) ── */
.lead-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.1);
  padding: 2rem 1.75rem;
  position: relative;
}

.lead-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.lead-card h3 {
  font-size: 1.3rem;
  margin-bottom: .25rem;
  color: var(--navy);
}
.lead-card .subtitle {
  font-size: .82rem;
  color: var(--gray-600);
  margin-bottom: 1.4rem;
}

.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: .35rem;
  letter-spacing: .3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,4,.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-disclaimer {
  font-size: .72rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: .75rem;
  line-height: 1.4;
}
.form-disclaimer a { color: var(--gray-600); text-decoration: underline; }

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  transition: all var(--transition);
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--orange);
  transition: width .35s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(232,93,4,.2); }
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(232,93,4,.1), rgba(244,140,6,.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: .4rem; }
.service-card p { font-size: .85rem; color: var(--gray-600); margin: 0; }
.service-meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: .75rem;
  font-size: .78rem;
  color: var(--orange);
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .5px;
}

/* ── Contractor Directory ── */
.contractor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.contractor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  padding: 1.5rem;
  transition: all var(--transition);
}
.contractor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.contractor-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contractor-name { font-size: 1.1rem; color: var(--navy); margin-bottom: .15rem; }
.contractor-city { font-size: .78rem; color: var(--gray-600); }
.contractor-badge {
  background: rgba(16,185,129,.1);
  color: var(--success);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 50px;
  white-space: nowrap;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .5px;
}
.contractor-badge.featured {
  background: rgba(232,93,4,.1);
  color: var(--orange);
}

.contractor-rating {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .75rem;
}
.star-fill { color: var(--gold); font-size: .9rem; }
.rating-score { font-weight: 700; font-size: .9rem; color: var(--gray-800); }
.rating-count { font-size: .8rem; color: var(--gray-600); }

.contractor-details { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.detail-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--gray-600);
}
.detail-item .icon { color: var(--orange); font-size: .85rem; width: 16px; }

.contractor-cta {
  display: flex;
  gap: .75rem;
}
.cta-call {
  flex: 1;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: .65rem 1rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  transition: all var(--transition);
}
.cta-call:hover { background: var(--orange); color: var(--white); }
.cta-quote {
  flex: 1;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: .65rem 1rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  transition: all var(--transition);
}
.cta-quote:hover { background: var(--orange-lt); color: var(--white); }

/* ── Cost Table ── */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.cost-table thead { background: var(--navy); }
.cost-table thead th {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-align: left;
}
.cost-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: background var(--transition); }
.cost-table tbody tr:hover { background: rgba(232,93,4,.04); }
.cost-table tbody tr:last-child { border-bottom: none; }
.cost-table td { padding: .9rem 1.25rem; font-size: .9rem; color: var(--gray-600); }
.cost-table td:first-child { font-weight: 500; color: var(--gray-800); }
.cost-table .price { font-weight: 700; color: var(--navy); }
.cost-table .highlight { background: rgba(232,93,4,.04); }
.cost-table .badge-hot {
  display: inline-block;
  background: rgba(232,93,4,.1);
  color: var(--orange);
  font-size: .7rem;
  font-weight: 700;
  padding: .1rem .5rem;
  border-radius: 50px;
  margin-left: .4rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .5px;
}

/* ── FAQ Accordion ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition);
  user-select: none;
}
.faq-q:hover { background: var(--off-white); }
.faq-q.open { background: rgba(232,93,4,.04); color: var(--orange); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; color: var(--orange); transition: transform var(--transition); }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 1.4rem 1.2rem;
  color: var(--gray-600);
  font-size: .93rem;
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* ── Stats Banner ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255,255,255,.04);
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange-lt);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Review Cards ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.review-stars { color: var(--gold); font-size: .95rem; margin-bottom: .75rem; }
.review-text {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  flex-shrink: 0;
}
.reviewer-name { font-size: .88rem; font-weight: 600; color: var(--gray-800); }
.reviewer-city { font-size: .78rem; color: var(--gray-600); }

/* ── Affiliate Products ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.product-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-emoji { font-size: 2.5rem; margin-bottom: .75rem; }
.product-name { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--navy); margin-bottom: .35rem; }
.product-price { font-size: .85rem; color: var(--gray-600); margin-bottom: .75rem; }
.product-price strong { color: var(--orange); font-size: 1.1rem; }
.product-cta {
  background: var(--orange);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: .88rem;
  letter-spacing: .5px;
  display: inline-block;
  transition: background var(--transition);
}
.product-cta:hover { background: var(--orange-lt); color: var(--white); }

/* ── Alert / CTA Strip ── */
.cta-strip {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-lt) 100%);
  padding: 28px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-strip h2 { color: var(--white); font-size: 1.6rem; margin-bottom: .2rem; }
.cta-strip p { color: rgba(255,255,255,.85); margin: 0; font-size: .95rem; }
.cta-strip .actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); color: var(--navy); }

/* ── Area Map / Cities ── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .75rem;
}
.city-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  border-radius: 50px;
  padding: .6rem 1.1rem;
  font-size: .85rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.city-pill:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.city-pill .pop { font-size: .7rem; opacity: .65; display: block; margin-top: .1rem; }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: .75rem 0;
  font-size: .82rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb .sep { color: var(--gray-300); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #16315c 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .subtitle { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 1.5rem; }

/* ── Content Layout ── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.sidebar { position: sticky; top: 90px; }

/* ── Sidebar Widgets ── */
.widget {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.widget-header {
  background: var(--navy);
  color: var(--white);
  padding: .9rem 1.25rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .5px;
}
.widget-body { padding: 1.25rem; }

.urgent-widget .widget-header { background: var(--orange); }
.urgent-widget .big-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  display: block;
  text-align: center;
  margin: .5rem 0;
  transition: color var(--transition);
}
.urgent-widget .big-phone:hover { color: var(--orange); }

/* ── Footer ── */
.site-footer {
  background: #080f1e;
  color: rgba(255,255,255,.6);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 50px;
}
.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: .87rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-contact a {
  color: var(--orange-lt);
  font-weight: 500;
  font-size: .9rem;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange-lt); }

/* footer-links inside white sidebar widgets need dark text */
.widget-body .footer-links a {
  color: var(--gray-600);
}
.widget-body .footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
}
.footer-bottom .legal { display: flex; gap: 1.25rem; }
.footer-bottom .legal a { color: rgba(255,255,255,.4); }
.footer-bottom .legal a:hover { color: rgba(255,255,255,.7); }
.affiliate-notice {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.section-head {
  max-width: 680px;
}
.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head p { font-size: 1rem; }

.divider {
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt), transparent);
  border: none;
  margin: 2.5rem 0;
  border-radius: 2px;
}

.tag {
  display: inline-block;
  background: rgba(232,93,4,.1);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  padding: .15rem .6rem;
  border-radius: 50px;
  margin-right: .3rem;
  margin-bottom: .3rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .5px;
}

.check-list { display: flex; flex-direction: column; gap: .6rem; }
.check-list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--gray-600);
}
.check-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ── Success Message ── */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success .icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--success); margin-bottom: .5rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 70px 0 0;
    background: var(--white);
    z-index: 998;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    gap: .25rem;
  }
  .main-nav.open a { font-size: 1.3rem; padding: .75rem 1rem; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .contractor-cta { flex-direction: column; }

  /* Mobile header cleanup */
  .top-bar { display: none; }
  .header-inner { padding: .6rem 0; }
  .logo-name { font-size: 1.1rem; letter-spacing: .5px; white-space: nowrap; }
  .logo-tagline { display: none; }
  .header-cta .btn { font-size: .8rem; padding: .5rem .9rem; }
}

@media (max-width: 480px) {
  .header-phone { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 { animation: fadeUp .7s ease both; }
.hero .hero-desc { animation: fadeUp .7s .12s ease both; }
.hero .hero-trust { animation: fadeUp .7s .22s ease both; }
.lead-card { animation: fadeUp .7s .1s ease both; }

.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 1.8s infinite;
  margin-right: .35rem;
}
