/* =============================================================
   PIKES PEAK WEB DESIGNS - MAIN STYLESHEET
   Colorado Springs, CO - Custom-coded Websites

   FONT GUIDE
   ---------
   Headings:  Playfair Display (serif) - 400 body, 600 sub-headings, 700-800 display
              Use for: h1-h3, logo, stat numbers, price displays
   Body/UI:   Source Sans 3 (humanist sans) - 400 regular, 600 medium, 700 bold
              Use for: body text, nav, labels, buttons, captions
   Sizes:     h1 clamp(2.1-3.4rem) - h2 clamp(1.75-2.5rem) - h3 1.0-1.25rem
              Body 1rem / 1.75 leading - Small 0.875rem - Label 0.68-0.72rem

   COLOR GUIDE
   -----------
   --blue #003DA5      Primary: CTAs, links, accents, borders
   --blue-dark #002472 Hover states
   --navy #0C1A3E      Hero + CTA section backgrounds
   --dark #111827      Display headings on light backgrounds
   --text #1F2937      Body text
   --text-muted #4A5568 Secondary text, captions, subtitles
   --red #BF0A30       Colorado flag accent - use sparingly (pain items, error)
   --gold #C8900A      On-white accent - use only for logo, hero badge
   --gold-bright #E8AA14 On-dark accent - logo, hero badges on navy bg
   --off-white #F9F8F5  Alternate section background
   --light #EFF2F9     Subtle blue-tint backgrounds, icon bg
   --border #D1D5DB    Standard border
   ============================================================= */

/* Google Fonts loaded via <link> in base.njk head */

/* ===================== SKIP LINK ===================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--blue, #003DA5);
  color: #fff;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ===================== VARIABLES ===================== */
:root {
  --blue:       #003DA5;
  --blue-dark:  #002472;
  --blue-mid:   #1A4DB8;
  --red:        #BF0A30;
  --gold:       #C8900A;   /* Refined dark gold - passes contrast on white */
  --gold-bright:#E8AA14;   /* For text/icons on dark backgrounds */
  --gold-tint:  #FEF3C7;   /* Subtle tint backgrounds */
  --white:      #FFFFFF;
  --off-white:  #F9F8F5;   /* Warm off-white for section alternation */
  --light:      #EFF2F9;   /* Blue-tinted light background */
  --dark:       #111827;
  --navy:       #0C1A3E;   /* Deep navy — hero & CTA */
  --text:       #1F2937;
  --text-muted: #4A5568;   /* Sufficient contrast on white: ~6.6:1 */
  --border:     #D1D5DB;
  --border-dark:#C4C9D4;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, 'Helvetica Neue', sans-serif;

  --radius:    5px;    /* Formal, restrained */
  --radius-lg: 8px;
  --shadow:    0 2px 14px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,61,165,0.13);
  --max-width: 1160px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 600; }
p  { line-height: 1.75; }

/* ===================== LAYOUT ===================== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(80px, 10vw, 120px) 24px; }
.section--dark    { background: var(--navy); color: var(--white); }
.section--off     { background: var(--off-white); }
.section--light   { background: var(--light); }
.section--blue    { background: var(--blue); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--blue h1, .section--blue h2, .section--blue h3 { color: var(--white); }
.text-center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--blue);
  flex-shrink: 0;
}
.section--dark .section-label,
.section--blue .section-label { color: rgba(255,255,255,0.60); }
.section--dark .section-label::before,
.section--blue .section-label::before,
.page-hero .section-label::before,
.cta-section .section-label::before,
.sunshine-section .section-label::before { background: var(--gold-bright); }

.section-title  { margin-bottom: 20px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.8;
}
.section--dark .section-subtitle,
.section--blue .section-subtitle { color: rgba(255,255,255,0.84); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,61,165,0.32);
}
.btn-gold {
  background: var(--gold-bright);
  color: var(--dark);
  border-color: var(--gold-bright);
}
.btn-gold:hover {
  background: #D4980E;
  border-color: #D4980E;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(200,144,10,0.38);
}
/* btn-blue is an alias for btn-primary */
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,61,165,0.32);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.80);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-lg   { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

/* ===================== TOP BAR ===================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left {
  font-size: 0.70rem;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  white-space: nowrap;
}
.topbar-right a {
  color: rgba(255,255,255,0.84);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.topbar-right a:hover { color: var(--gold-bright); }
.topbar-right svg { width: 11px; height: 11px; stroke: var(--gold-bright); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.topbar-sep { color: rgba(255,255,255,0.28); }

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  background: rgba(12,26,62,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: transform 0.28s ease, box-shadow 0.2s;
}
.header--hidden {
  transform: translateY(calc(-100% - 36px));
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.logo-accent { color: var(--gold-bright); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links .btn { margin-left: 4px; padding: 9px 18px; font-size: 0.84rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 11px 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 104px; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 24px 28px;
  z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-bright); }
.mobile-nav .btn { margin-top: 20px; }

/* ===================== MEGA MENU ===================== */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-arrow {
  font-size: 0.6rem;
  opacity: 0.60;
  transition: transform 0.22s;
  line-height: 1;
  margin-top: 1px;
}
.nav-dropdown:hover .nav-arrow,
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); opacity: 1; }
.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 20px 60px rgba(0,0,0,0.18);
  padding: 26px 32px 18px;
  display: none;
  z-index: 9999;
  border-top: 3px solid var(--blue);
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--blue);
}
.nav-dropdown:hover .mega-menu,
.nav-dropdown.open .mega-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 32px;
}
.mega-menu--services {
  width: 380px;
  padding: 22px 24px 16px;
}
.nav-dropdown:hover .mega-menu--services,
.nav-dropdown.open .mega-menu--services {
  grid-template-columns: 1fr;
  gap: 8px;
}
.mega-menu--services .mega-col h5 { margin-bottom: 6px; }
.mega-menu--services .mega-col a { padding: 8px 0; }
.mega-col h5 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--border);
}
.mega-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  padding: 4px 0;
  transition: color 0.15s, padding-left 0.15s;
}
.mega-col a:hover { color: var(--blue); padding-left: 5px; }
.mega-foot {
  grid-column: 1 / -1;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mega-foot span {
  font-size: 0.77rem;
  color: var(--text-muted);
  font-style: italic;
}
.mega-foot a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
}
.mega-foot a:hover { color: var(--blue-dark); }
.mega-canada { grid-column: 1 / -1; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px; }
.mega-canada h5 { margin-bottom: 10px; }
.mega-canada-cities { display: flex; flex-wrap: wrap; gap: 4px 16px; }
.mega-canada-cities a { font-size: 0.83rem; font-weight: 600; color: var(--text); transition: color 0.15s; }
.mega-canada-cities a:hover { color: var(--blue); }

/* ===================== MOBILE DROPDOWN ===================== */
.mobile-dropdown { border-bottom: 1px solid rgba(255,255,255,0.10); }
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.mobile-dropdown-toggle:hover { color: var(--gold-bright); }
.mobile-arrow {
  font-size: 0.68rem;
  transition: transform 0.25s;
  opacity: 0.65;
}
.mobile-dropdown-toggle.open .mobile-arrow { transform: rotate(180deg); opacity: 1; }
.mobile-dropdown-menu {
  display: none;
  padding: 4px 0 12px 14px;
}
.mobile-dropdown-menu.open { display: block; }
.mobile-dropdown-menu a {
  font-size: 0.875rem;
  padding: 6px 0;
  color: rgba(255,255,255,0.70);
  border-bottom: none;
  display: block;
}
.mobile-dropdown-menu a:hover { color: var(--gold-bright); }
.mobile-view-all {
  display: block;
  color: var(--gold-bright) !important;
  font-size: 0.82rem !important;
  font-weight: 700;
  margin-top: 6px;
  padding-top: 10px !important;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===================== HERO ===================== */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 156px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(232,170,20,0.06) 0%, transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, rgba(0,61,165,0.20) 0%, transparent 65%);
  pointer-events: none;
}
.hero-sun {
  position: absolute;
  top: 72px; right: 72px;
  width: 180px; height: 180px;
  opacity: 0.05;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,170,20,0.12);
  border: 1px solid rgba(232,170,20,0.32);
  border-radius: 3px;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
}
.hero h1 .highlight { color: var(--gold-bright); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.86);
  max-width: 500px;
  margin-bottom: 20px;
  line-height: 1.8;
}
.hero-industries {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.70);
  margin-bottom: 34px;
  font-style: italic;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.84);
  letter-spacing: 0.01em;
}
.trust-chip::before {
  content: '✓';
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
}

/* Hero pricing card */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.hero-price-block {
  background: var(--blue);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 26px;
  text-align: center;
}
.hero-price-block .price-main {
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-price-block .price-per {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  margin-top: 5px;
}
.hero-price-block .price-zero {
  display: inline-block;
  margin-top: 12px;
  background: var(--gold-bright);
  border-radius: 3px;
  padding: 5px 14px;
  font-family: var(--font-body);
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.03em;
}
.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 24px;
}
.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.88);
}
.hero-card-list li::before {
  content: '';
  width: 17px; height: 17px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(232,170,20,0.15)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23E8AA14' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / 10px;
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 40px;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-bar-item svg {
  width: 13px; height: 13px;
  stroke: var(--blue);
  fill: none;
  flex-shrink: 0;
}

/* ===================== MOUNTAIN DIVIDER ===================== */
.mountain-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.mountain-divider svg { display: block; width: 100%; }

/* ===================== PROBLEM SECTION ===================== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pain-item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.pain-emoji { font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.pain-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.pain-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ===================== HOW IT WORKS ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.step-num {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
}
.step-card:nth-child(1) .step-num { background: var(--blue); }
.step-card:nth-child(2) .step-num { background: var(--blue-mid); }
.step-card:nth-child(3) .step-num { background: var(--blue-dark); }
.step-card h3 { margin-bottom: 10px; }
.step-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ===================== FEATURES (light bg) ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-icon {
  width: 42px; height: 42px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.feature-card { text-align: center; }
.feature-icon svg {
  width: 20px; height: 20px;
  stroke: var(--blue); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.feature-card h3 { color: var(--dark); font-size: 0.98rem; margin-bottom: 8px; }
.feature-card p  { font-size: 0.855rem; color: var(--text-muted); line-height: 1.7; }

/* ===================== WHY CUSTOM CODE ===================== */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.vs-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}
.vs-card.good {
  background: var(--white);
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: var(--shadow);
}
.vs-card.bad { background: var(--off-white); }
.vs-card-label {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.vs-card.good .vs-card-label { background: rgba(0,61,165,0.08); color: var(--blue); }
.vs-card.bad  .vs-card-label { background: #FDE8EC; color: var(--red); }
.vs-card h3 { margin-bottom: 18px; }
.vs-list { display: flex; flex-direction: column; gap: 11px; }
.vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text);
}
.vs-list li::before {
  content: '';
  width: 17px; height: 17px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.vs-list.good li::before {
  background-color: rgba(0,61,165,0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1.5 5l2.5 2.5 4.5-4.5' stroke='%23003DA5' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.vs-list.bad li::before {
  background-color: #FDE8EC;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2.5 2.5l5 5M7.5 2.5l-5 5' stroke='%23BF0A30' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ===================== SUNSHINE SECTION ===================== */
.sunshine-section {
  background: var(--off-white);
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sunshine-inner { position: relative; z-index: 1; }
.sunshine-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

/* ===================== PRICING ===================== */
.pricing-card {
  max-width: 500px;
  margin: 48px auto 0;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pricing-header {
  background: var(--blue);
  padding: 32px;
  text-align: center;
}
.pricing-header .plan-name {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.84);
  margin-bottom: 16px;
}
.price-display {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  line-height: 1;
}
.price-dollar {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-top: 10px;
}
.price-amount {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.price-period {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  margin-top: auto;
  margin-bottom: 8px;
}
.price-badge {
  display: inline-flex;
  margin-top: 14px;
  background: var(--gold-bright);
  border-radius: 3px;
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.05em;
}
.pricing-body { padding: 32px; }
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 26px;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.92rem;
  color: var(--text);
}
.pricing-list li::before {
  content: '';
  width: 19px; height: 19px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(0,61,165,0.08)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23003DA5' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / 11px;
}
.pricing-note {
  font-size: 0.80rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.65;
}
.pricing-note a { color: var(--blue); font-weight: 600; }

/* ===================== FAQ ===================== */
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item  { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  background: none;
  transition: color 0.2s;
}
.faq-btn:hover,
.faq-btn[aria-expanded="true"] { color: var(--blue); }
.faq-icon {
  width: 24px; height: 24px;
  background: var(--light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s;
}
.faq-btn[aria-expanded="true"] .faq-icon { background: var(--blue); }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--blue);
  border-radius: 1px;
  transition: all 0.3s;
}
.faq-btn[aria-expanded="true"] .faq-icon::before,
.faq-btn[aria-expanded="true"] .faq-icon::after { background: var(--white); }
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; }
.faq-btn[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-answer.open { max-height: 500px; }
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-more { text-align: center; margin-top: 36px; }

/* ===================== LOCAL / ABOUT ===================== */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.local-points { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.local-point  { display: flex; gap: 16px; }
.local-icon {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.local-icon svg {
  width: 19px; height: 19px;
  stroke: var(--white); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.local-point h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.local-point p { font-size: 0.865rem; color: var(--text-muted); }

/* Colorado flag graphic */
.co-graphic {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
}
.co-flag-stripes {
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}
.co-stripe         { height: 33.33%; }
.co-stripe.blue    { background: var(--blue); }
.co-stripe.white   { background: var(--white); }
.co-stripe.blue2   { background: var(--blue); }
.co-flag-c {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  text-shadow: 3px 3px 0 var(--gold);
  margin-bottom: 14px;
}
.co-graphic p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,170,20,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 18px; }
.cta-section p  {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.84);
  max-width: 500px;
  margin: 0 auto 36px;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-sub {
  margin-top: 24px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.68);
}
.cta-sub a { color: var(--gold-bright); font-weight: 600; }
.cta-sub a:hover { text-decoration: underline; }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  background: var(--navy);
  padding: 156px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(232,170,20,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1  { color: var(--white); position: relative; z-index: 1; }
.page-hero p   {
  color: rgba(255,255,255,0.84);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 16px auto 0;
  position: relative; z-index: 1;
}

/* ===================== CONTACT ===================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { color: var(--text-muted); margin-bottom: 32px; }
.contact-points  { display: flex; flex-direction: column; gap: 18px; }
.contact-point   { display: flex; gap: 14px; align-items: flex-start; }
.contact-point-icon {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-point-icon svg {
  width: 17px; height: 17px;
  stroke: var(--white); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.contact-point h4 { font-family: var(--font-body); font-size: 0.84rem; font-weight: 700; margin-bottom: 2px; }
.contact-point p  { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,61,165,0.20);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#contactForm button[type="submit"] { margin-top: 8px; }
.form-submit-error {
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-left: 4px solid #ef4444;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.875rem;
  color: #7f1d1d;
  margin-bottom: 16px;
}
.form-submit-error a { color: #b91c1c; }

/* ===================== PRICING PAGE ===================== */
.pricing-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
.pricing-page-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-page-card.featured { border: 2px solid var(--blue); box-shadow: var(--shadow-lg); }
.pricing-card-top {
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-page-card.featured .pricing-card-top {
  background: var(--blue);
  border-color: transparent;
}
.popular-badge {
  display: inline-flex;
  background: var(--gold-bright);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.pricing-page-card.featured .pricing-card-top h3  { color: var(--white); }
.pricing-page-card.featured .price-display .price-dollar { color: var(--gold-bright); }
.pricing-page-card.featured .price-display .price-amount { color: var(--white); }
.pricing-page-card.featured .price-display .price-period { color: rgba(255,255,255,0.82); }
.pricing-card-body { padding: 28px; }
.pricing-card-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 22px; line-height: 1.65; }
.pricing-page-card.featured .pricing-card-top .pricing-card-desc { color: rgba(255,255,255,0.84); }

/* ===================== ABOUT PAGE ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  text-align: center;
}
.value-card h3 { font-size: 0.98rem; margin-bottom: 8px; }
.value-card p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }

/* ===================== FOOTER ===================== */
.footer { background: #07111E; color: rgba(255,255,255,0.82); }

/* Trust band — sits at top of footer */
.footer-trust {
  background: #09172a;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 16px 24px;
}
.footer-trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.footer-trust-item svg {
  width: 13px; height: 13px;
  stroke: var(--gold-bright);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Main footer body */
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 52px 24px 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 28px;
}
.footer-brand .logo { display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 270px; color: rgba(255,255,255,0.72); margin-bottom: 16px; }
.footer-brand-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.71rem;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.03em;
}
.footer-badge::before {
  content: '✓';
  color: var(--gold-bright);
  font-size: 0.75rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.76);
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-col .footer-view-all {
  color: var(--gold-bright);
  font-size: 0.79rem;
  font-weight: 700;
  margin-top: 4px;
}
.footer-contact-info {
  margin-top: 4px;
}
.footer-contact-info strong {
  display: block;
  color: rgba(255,255,255,0.84);
  font-size: 0.80rem;
  margin-bottom: 6px;
}
.footer-contact-info a {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact-info svg {
  width: 12px; height: 12px;
  stroke: var(--gold-bright);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0.85;
}
.footer-contact-address {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.44);
  line-height: 1.6;
  margin-top: 14px;
}
.footer-contact-address strong { color: rgba(255,255,255,0.62); font-weight: 600; display: block; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.44);
}
.footer-bottom a { color: rgba(255,255,255,0.44); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-bright); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .hero-inner     { grid-template-columns: 1fr; gap: 0; }
  .hero-visual    { display: none; }
  .problem-grid   { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid     { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .vs-grid        { grid-template-columns: 1fr; }
  .local-grid     { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top     { grid-template-columns: 1fr 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .footer-trust-inner { gap: 20px; }
  .pricing-page-grid { grid-template-columns: 1fr; }
  .about-grid     { grid-template-columns: 1fr; gap: 40px; }
  .mega-menu      { display: none !important; }
}
@media (max-width: 768px) {
  .nav-links      { display: none; }
  .hamburger      { display: flex; }
  .sunshine-stats { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr 1fr; }
  .footer-top     { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .footer-trust-inner { justify-content: flex-start; gap: 16px; }
  .values-grid    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  /* Hide topbar on mobile, reset header and section offsets */
  .topbar         { display: none; }
  .header         { top: 0; }
  .mobile-nav     { top: 68px; }
  .hero           { padding-top: 120px; }
  .page-hero      { padding-top: 120px; }
}
@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-ctas     { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .cta-buttons   { flex-direction: column; align-items: center; }
  .footer-top    { grid-template-columns: 1fr; }
  .footer-trust-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ===================== AREA PAGES ===================== */
.area-hero {
  background: var(--navy);
  padding: clamp(100px, 12vw, 140px) 24px clamp(60px, 8vw, 90px);
  position: relative;
  overflow: hidden;
}
.area-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(232,170,20,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.area-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.area-breadcrumb {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-breadcrumb a { color: rgba(255,255,255,0.60); transition: color 0.2s; }
.area-breadcrumb a:hover { color: var(--gold-bright); }
.area-hero h1 { color: var(--white); margin-bottom: 18px; }
.area-hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.area-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 36px;
}
.area-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.area-body {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) 24px;
}
.area-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.area-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--dark);
  margin: 40px 0 14px;
  line-height: 1.25;
}
.area-content h2:first-child { margin-top: 0; }
.area-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 18px;
}
.area-content ul {
  list-style: none;
  margin: 0 0 20px;
}
.area-content ul li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  padding: 4px 0 4px 20px;
  position: relative;
}
.area-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.area-sidebar {
  position: sticky;
  top: 120px;
}
.area-cta-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  margin-bottom: 24px;
}
.area-cta-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}
.area-cta-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 20px; }
.area-industries-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.area-industries-card h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.area-industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.area-tag {
  display: inline-block;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
}
.area-nearby-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 20px;
}
.area-nearby-card h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.area-nearby-card a {
  display: block;
  font-size: 0.84rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 7px;
  transition: color 0.15s;
}
.area-nearby-card a:hover { color: var(--blue-dark); }
@media (max-width: 900px) {
  .area-grid { grid-template-columns: 1fr; }
  .area-sidebar { position: static; }
}

/* ===================== BLOG ===================== */
.blog-page-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 88px) 24px;
  display: grid;
  grid-template-columns: 1fr 296px;
  gap: 56px;
  align-items: start;
}
.blog-main-col { min-width: 0; }

/* Featured post */
.blog-featured {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
}
.blog-featured-thumb {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
}
.blog-featured-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  line-height: 1.6;
}
.blog-featured-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-featured-body h2 a { color: inherit; }
.blog-featured-body h2 a:hover { color: var(--blue); }
.blog-featured-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.blog-featured-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.blog-card-thumb {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.blog-thumb-label {
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
  line-height: 1.5;
}
.blog-card-thumb.thumb--gold { background: #FEF3C7; }
.blog-card-thumb.thumb--gold .blog-thumb-label { color: var(--gold); }
.blog-card-thumb.thumb--dark { background: var(--navy); }
.blog-card-thumb.thumb--dark .blog-thumb-label { color: var(--gold-bright); }
.blog-card-body {
  padding: 20px 22px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-cat {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.blog-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--blue); }
.blog-card-excerpt {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 12px 22px;
  border-top: 1px solid var(--border);
}
.blog-read-more {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
}
.blog-read-more:hover { color: var(--blue-dark); }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.pagination-info { font-size: 0.875rem; color: var(--text-muted); }

/* Blog listing sidebar */
.blog-listing-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-topic-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sidebar-topic-list li { border-bottom: 1px solid var(--border); }
.sidebar-topic-list li:last-child { border-bottom: none; }
.sidebar-topic-list a {
  display: block;
  padding: 9px 0;
  font-size: 0.84rem;
  color: var(--text);
  font-weight: 500;
  transition: color 0.15s;
}
.sidebar-topic-list a:hover { color: var(--blue); }

/* ---- Blog post page ---- */
.post-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(80px, 10vw, 120px) 24px clamp(56px, 7vw, 80px);
}
.post-hero .section-label { color: rgba(255,255,255,0.60); }
.post-hero .section-label::before { background: var(--gold-bright); }
.post-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 24px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  flex-wrap: wrap;
}
.post-meta span { display: flex; align-items: center; gap: 6px; }
.post-body {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 52px;
}
.post-back:hover { color: var(--blue-dark); }

/* ---- Blog Sidebar ---- */
.post-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}
.sidebar-card--cta {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-card--cta h4 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.15);
}
.sidebar-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.sidebar-card--cta p { color: rgba(255,255,255,0.75); }
.sidebar-card .btn { display: block; text-align: center; width: 100%; }
.sidebar-post-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.sidebar-post-list li { border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.sidebar-post-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post-list a { font-size: 0.84rem; color: var(--text); font-weight: 600; line-height: 1.4; transition: color 0.15s; }
.sidebar-post-list a:hover { color: var(--blue); }
.sidebar-service-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.sidebar-service-list li { font-size: 0.84rem; color: var(--text); display: flex; align-items: flex-start; gap: 8px; }
.sidebar-service-list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
@media (max-width: 960px) {
  .post-body { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}
.post-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--dark);
  margin: 52px 0 16px;
  line-height: 1.25;
}
.post-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 36px 0 12px;
}
.post-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 22px;
}
.post-content ul, .post-content ol {
  margin: 0 0 22px 24px;
}
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 10px;
}
.post-content strong { color: var(--dark); font-weight: 700; }
.post-content a { color: var(--blue); text-decoration: underline; }
.post-content a:hover { color: var(--blue-dark); }
/* Override for buttons inside post content — restore correct colors */
.post-content .btn { text-decoration: none; }
.post-content .btn-primary { color: var(--white); }
.post-content .btn-primary:hover { color: var(--white); }
.post-content .btn-gold { color: var(--dark); }
.post-content .btn-gold:hover { color: var(--dark); }
.post-content .btn-outline-dark { color: var(--blue); }
.post-content .btn-outline-dark:hover { color: var(--white); }
/* ---- Privacy Policy / Prose Policy ---- */
.prose-policy {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dark);
}
.prose-policy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--dark);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.prose-policy h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--dark);
  margin: 1.5rem 0 0.5rem;
}
.prose-policy p { margin-bottom: 1rem; }
.prose-policy ul, .prose-policy ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose-policy li { margin-bottom: 0.375rem; }
.prose-policy a { color: var(--blue); text-decoration: underline; }
.prose-policy a:hover { color: var(--blue-dark); }
.prose-policy strong { font-weight: 700; }

.post-cta-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 48px 0;
}
.post-cta-box h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.post-cta-box p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; }

/* ---- Blog responsive ---- */
@media (max-width: 1040px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-thumb { min-height: 100px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .blog-page-layout { grid-template-columns: 1fr; }
  .blog-listing-sidebar { position: static; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
}

/* ---- Post nav ---- */
.post-nav { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }

/* ---- Sidebar pricing card ---- */
.sidebar-pricing-card { text-align: center; }
.sidebar-price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.sidebar-price span { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.sidebar-price-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; }

/* ===================== SAMPLES ===================== */
.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.sample-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.sample-card:hover { box-shadow: var(--shadow-lg); }

/* Browser chrome mock */
.sample-preview { background: #e8eaed; padding: 8px 8px 0; }
.sample-browser {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  background: #d1d5db;
  border-radius: 5px 5px 0 0;
}
.sample-browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9ca3af;
  flex-shrink: 0;
}
.sample-browser-bar {
  flex: 1;
  height: 9px;
  background: #e5e7eb;
  border-radius: 4px;
  margin-left: 4px;
}
.sample-screen {
  border-radius: 0;
  overflow: hidden;
}

/* Nav mock */
.sample-nav-mock {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: var(--navy);
}
.sample-nav-dot {
  width: 24px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.sample-nav-dot.wide { width: 40px; }
.sample-nav-btn {
  margin-left: auto;
  width: 40px;
  height: 18px;
  border-radius: 3px;
  background: var(--blue);
  flex-shrink: 0;
}

/* Hero mock */
.sample-hero-mock {
  padding: 16px 12px 12px;
  background: var(--navy);
}
.sample-h1-mock {
  height: 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}
.sample-h1-mock.w70 { width: 70%; }
.sample-h1-mock.w50 { width: 50%; }
.sample-p-mock {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.3);
  margin-bottom: 5px;
}
.sample-p-mock.w90 { width: 90%; }
.sample-p-mock.w75 { width: 75%; }
.sample-btn-mock {
  width: 72px;
  height: 18px;
  border-radius: 3px;
  background: var(--blue);
  margin-top: 8px;
}

/* Cards mock */
.sample-cards-mock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 8px;
  background: var(--light);
}
.sample-card-mock {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 7px;
}
.sample-card-icon-mock {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: var(--blue);
  margin-bottom: 5px;
}
.sample-card-text-mock {
  height: 5px;
  border-radius: 2px;
  background: var(--border);
  margin-bottom: 4px;
}
.sample-card-text-mock.short { width: 60%; }

/* Info section */
.sample-info { padding: 24px 26px; flex: 1; display: flex; flex-direction: column; }
.sample-industry {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.sample-info h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.sample-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.sample-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.sample-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 8px;
}
@media (max-width: 720px) {
  .sample-grid { grid-template-columns: 1fr; }
}

/* ===================== SERVICE AREAS ===================== */
.areas-section-header { text-align: center; margin-bottom: 48px; }
.areas-intro { margin-bottom: 32px; }

/* Remote banner */
.remote-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}
.remote-banner h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.remote-banner p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}
@media (max-width: 680px) {
  .remote-banner { flex-direction: column; align-items: flex-start; }
}

/* Industries section */
.industries-section { background: var(--light); }
.industries-header { margin-bottom: 40px; }
.industries-header .section-subtitle { margin-bottom: 0; }
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.industry-pill {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  line-height: 1;
  transition: border-color 0.15s, color 0.15s;
}
.industry-pill--featured {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.industries-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.industries-note a { color: var(--blue); font-weight: 600; }

/* Region sections */
.region-section {
  margin-bottom: 48px;
}
.region-section:last-child { margin-bottom: 0; }
.region-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* State grid */
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.state-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.canada-card { border-left: 3px solid var(--blue); }
.state-name {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.city-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--light);
  border-radius: 4px;
  padding: 3px 8px;
  line-height: 1.4;
}
.city-tag--link {
  color: var(--blue);
  font-weight: 600;
  background: #EFF6FF;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.city-tag--link:hover {
  background: var(--blue);
  color: var(--white);
}
@media (max-width: 640px) {
  .state-grid { grid-template-columns: 1fr; }
}
