/* ============================================================
   PHOENIX PEAK SEO — GLOBAL STYLES
   Brand: #1B2A4A navy | #B87333 copper | #E8913A amber CTA
   Font: Inter 400/500/600/700
   ============================================================ */

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #2D3748; background: #F8F9FA; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* --- VARIABLES --- */
:root {
  --navy: #1B2A4A;
  --light-navy: #253D6B;
  --copper: #B87333;
  --cta: #E8913A;
  --off-white: #F8F9FA;
  --charcoal: #1E1E2E;
  --text: #2D3748;
  --muted: #64748B;
  --white: #FFFFFF;
  --red: #DC3545;
  --green: #28A745;
  --max-w: 1200px;
}

/* --- UTILITY --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.section { padding: 100px 24px; }
.section-label {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em;
  color: var(--copper); text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-size: 2.4rem; font-weight: 700; color: var(--navy);
  line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.1rem; color: var(--muted); max-width: 600px;
  line-height: 1.7; margin-bottom: 48px;
}
.section-desc.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title.center { text-align: center; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1rem; border-radius: 8px;
  padding: 16px 36px; transition: all 0.25s ease; letter-spacing: 0.01em;
}
.btn-cta {
  background: var(--cta); color: var(--white);
  box-shadow: 0 4px 14px rgba(232,145,58,0.35);
}
.btn-cta:hover {
  background: #D4800E; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,145,58,0.5);
}
.btn-cta:active { transform: translateY(0); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 12px 24px; font-size: 0.9rem; }
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

/* --- NAVIGATION --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06); transition: all 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { flex-shrink: 0; }
.nav-brand { display: flex; flex-direction: column; }
.nav-brand-name { font-weight: 700; font-size: 1.1rem; color: var(--navy); line-height: 1.1; }
.nav-brand-sub { font-weight: 600; font-size: 0.6rem; color: var(--copper); letter-spacing: 0.2em; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > a, .nav-links > .nav-dropdown > a { font-size: 0.88rem; font-weight: 500; color: var(--text); transition: color 0.2s; }
.nav-links > a:hover, .nav-links > .nav-dropdown > a:hover { color: var(--copper); }
.nav-links > a.active, .nav-links > .nav-dropdown > a.active { color: var(--copper); }
.nav-phone { font-weight: 600; font-size: 0.88rem; color: var(--copper); white-space: nowrap; }
.nav-phone:hover { color: #D4800E; }
.nav-cta.btn { padding: 10px 22px; font-size: 0.85rem; }
.hamburger { display: none; background: none; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* --- DROPDOWN NAV --- */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after {
  content: ''; display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; transition: transform 0.2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12); border: 1px solid rgba(0,0,0,0.06);
  padding: 16px 8px; min-width: 240px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
  transition: all 0.25s ease; pointer-events: none;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0); pointer-events: auto;
}
.nav-dropdown-menu a {
  display: block; padding: 10px 16px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500; color: var(--text);
  transition: all 0.15s;
}
.nav-dropdown-menu a:hover { background: rgba(27,42,74,0.04); color: var(--copper); }
.nav-dropdown-menu .dd-label {
  font-size: 0.72rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 8px 16px 4px; pointer-events: none;
}

/* --- HERO (reusable) --- */
.hero {
  background: var(--navy); padding: 140px 24px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(37,61,107,0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(184,115,51,0.08) 0%, transparent 50%);
}
.hero-content { max-width: 780px; position: relative; z-index: 2; }
.hero-content.center { margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,115,51,0.12); border: 1px solid rgba(184,115,51,0.25);
  border-radius: 100px; padding: 8px 18px;
  font-size: 0.78rem; font-weight: 600; color: var(--copper); margin-bottom: 24px;
}
.hero h1 {
  font-size: 3rem; font-weight: 700; color: var(--white);
  line-height: 1.12; margin-bottom: 22px; letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--copper), var(--cta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.7);
  margin-bottom: 36px; line-height: 1.65;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-content.center .hero-buttons { justify-content: center; }

/* --- PAGE HERO (shorter for inner pages) --- */
.page-hero { padding: 130px 24px 60px; }
.page-hero h1 { font-size: 2.4rem; margin-bottom: 14px; }

/* --- BREADCRUMBS --- */
.breadcrumbs {
  background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 12px 24px;
}
.breadcrumbs-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; gap: 8px; align-items: center;
  font-size: 0.8rem; color: var(--muted);
}
.breadcrumbs a { color: var(--copper); font-weight: 500; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { color: var(--muted); }

/* --- PROOF BAR --- */
.proof-bar { background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.06); }
.proof-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.proof-item { text-align: center; padding: 28px 16px; border-right: 1px solid rgba(0,0,0,0.06); }
.proof-item:last-child { border-right: none; }
.proof-num { font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.proof-num span { color: var(--navy); }
.proof-label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* --- CARDS --- */
.card {
  background: var(--white); border-radius: 12px; padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s ease;
}
.card:hover { box-shadow: 0 12px 40px rgba(27,42,74,0.08); transform: translateY(-4px); }
.card-dark {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.card-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(184,115,51,0.3); transform: translateY(-4px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.3rem;
}
.card-icon-light { background: rgba(27,42,74,0.06); }
.card-icon-copper { background: rgba(184,115,51,0.12); }
.card h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.card-dark h3 { color: var(--white); }
.card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.card-dark p { color: rgba(255,255,255,0.6); }
.card-tag {
  display: inline-block; margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06); font-size: 0.82rem;
  color: var(--copper); font-weight: 600;
}
.card-dark .card-tag { border-top-color: rgba(255,255,255,0.08); }
.card-link { display: block; color: var(--copper); font-weight: 600; font-size: 0.9rem; margin-top: 16px; }
.card-link:hover { text-decoration: underline; }

/* --- ROI CARD --- */
.roi-card {
  background: var(--white); border-radius: 16px; padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06); text-align: center;
}
.roi-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.roi-card .roi-math { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.roi-card .roi-result {
  font-size: 2.2rem; font-weight: 700; color: var(--copper); line-height: 1;
}
.roi-card .roi-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; margin-top: 4px; }

/* --- CITY GRID --- */
.city-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.city-card {
  background: var(--white); border-radius: 10px; padding: 20px 16px;
  border: 1px solid rgba(0,0,0,0.06); text-align: center;
  transition: all 0.2s; font-size: 0.92rem; font-weight: 500; color: var(--navy);
}
.city-card:hover { border-color: var(--copper); color: var(--copper); transform: translateY(-2px); }
.city-card small { display: block; font-size: 0.75rem; color: var(--muted); font-weight: 400; margin-top: 4px; }
.city-card.featured { border-color: var(--copper); background: rgba(184,115,51,0.04); }

/* --- INDUSTRY GRID --- */
.industry-card {
  background: var(--white); border-radius: 12px; padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.06); text-align: center;
  transition: all 0.3s;
}
.industry-card:hover { box-shadow: 0 8px 30px rgba(27,42,74,0.08); transform: translateY(-4px); }
.industry-card .industry-icon { font-size: 2rem; margin-bottom: 12px; }
.industry-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.industry-card p { font-size: 0.82rem; color: var(--muted); }

/* --- GRID --- */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* --- PROCESS STEPS --- */
.step { text-align: center; position: relative; }
.step::after {
  content: ''; position: absolute; top: 28px; left: 60%; right: -40%;
  height: 2px; background: linear-gradient(90deg, var(--copper), transparent);
}
.step:last-child::after { display: none; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 18px;
  position: relative; z-index: 2;
}
.step h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.step p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); padding: 22px 0; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; text-align: left;
  font-size: 1.02rem; font-weight: 600; color: var(--navy); padding: 0; gap: 16px;
}
.faq-q:hover { color: var(--copper); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(27,42,74,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s; font-size: 1.2rem; color: var(--navy);
}
.faq-item.open .faq-toggle { background: var(--navy); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 600px; padding-top: 14px; }
.faq-a p { font-size: 0.94rem; color: var(--muted); line-height: 1.7; }

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--navy); padding: 72px 24px; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(184,115,51,0.1) 0%, transparent 60%);
}
.cta-banner-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.cta-banner h2 { font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.15; letter-spacing: -0.02em; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.6); margin-bottom: 32px; }

/* --- FORM --- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 14px 18px; border-radius: 8px;
  border: 2px solid rgba(0,0,0,0.1); font-size: 1rem; font-family: inherit;
  color: var(--text); background: var(--white); transition: border-color 0.2s;
}
.form-input:focus { outline: 2px solid var(--copper); outline-offset: 0; border-color: var(--copper); }
.form-input::placeholder { color: #A0AEC0; }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-dark .form-input {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.form-dark .form-input::placeholder { color: rgba(255,255,255,0.4); }
.form-dark .form-input:focus { border-color: var(--copper); }
.form-dark label { color: rgba(255,255,255,0.8); }

/* --- CONTENT PAGES (long-form) --- */
.content-body { max-width: 800px; }
.content-body h2 {
  font-size: 1.6rem; font-weight: 700; color: var(--navy);
  margin-top: 48px; margin-bottom: 16px; line-height: 1.2;
}
.content-body h3 {
  font-size: 1.2rem; font-weight: 600; color: var(--navy);
  margin-top: 32px; margin-bottom: 12px;
}
.content-body p {
  font-size: 1.02rem; color: var(--text); line-height: 1.8;
  margin-bottom: 18px;
}
.content-body ul, .content-body ol {
  margin-bottom: 18px; padding-left: 24px;
}
.content-body li {
  font-size: 1.02rem; color: var(--text); line-height: 1.8;
  margin-bottom: 8px; list-style: disc;
}
.content-body ol li { list-style: decimal; }
.content-body strong { color: var(--navy); }
.content-body blockquote {
  border-left: 4px solid var(--copper); padding: 20px 24px;
  background: rgba(184,115,51,0.04); border-radius: 0 8px 8px 0;
  margin: 24px 0; font-size: 1.02rem; color: var(--text);
}
.content-sidebar {
  position: sticky; top: 100px;
}

/* --- TIER CARDS --- */
.tier-card {
  background: var(--white); border-radius: 16px; padding: 36px 28px;
  border: 2px solid rgba(0,0,0,0.06); transition: all 0.3s;
}
.tier-card:hover { border-color: var(--copper); box-shadow: 0 12px 40px rgba(27,42,74,0.08); }
.tier-card.featured { border-color: var(--cta); position: relative; }
.tier-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cta); color: var(--white); font-size: 0.75rem; font-weight: 700;
  padding: 5px 18px; border-radius: 100px; letter-spacing: 0.05em;
}
.tier-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tier-card .tier-desc { font-size: 0.92rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.tier-card ul { margin-bottom: 24px; }
.tier-card li {
  font-size: 0.9rem; color: var(--text); padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex; gap: 10px; align-items: start; list-style: none;
}
.tier-card li::before { content: '\2713'; color: var(--copper); font-weight: 700; flex-shrink: 0; }

/* --- BLOG --- */
.blog-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s;
}
.blog-card:hover { box-shadow: 0 8px 30px rgba(27,42,74,0.08); transform: translateY(-3px); }
.blog-card-body { padding: 24px; }
.blog-card .blog-tag {
  font-size: 0.72rem; font-weight: 600; color: var(--copper);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px;
}
.blog-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.blog-card .blog-meta { font-size: 0.78rem; color: var(--muted); margin-top: 14px; }

/* --- FOOTER --- */
.footer { background: var(--charcoal); padding: 64px 24px 32px; color: rgba(255,255,255,0.6); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-name { font-weight: 700; font-size: 1.05rem; color: var(--white); }
.footer-brand-sub { font-weight: 600; font-size: 0.6rem; color: var(--copper); letter-spacing: 0.2em; }
.footer-text { font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.footer h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; color: var(--white); margin-bottom: 18px; text-transform: uppercase; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer li a { font-size: 0.88rem; transition: color 0.2s; }
.footer li a:hover { color: var(--copper); }
.footer-nap { font-size: 0.88rem; line-height: 1.8; }
.footer-nap a { color: var(--copper); }
.footer-bottom {
  max-width: var(--max-w); margin: 36px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem;
}
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 0.78rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--copper); }

/* --- ANIMATIONS --- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.3rem; }
  .section-title { font-size: 1.9rem; }
  .proof-bar-inner { grid-template-columns: repeat(2,1fr); }
  .proof-item:nth-child(2) { border-right: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 64px 20px; }
  .hero { padding: 120px 20px 60px; }
  .page-hero { padding: 110px 20px 48px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-sub { font-size: 1rem; }
  .section-title { font-size: 1.6rem; }
  .proof-bar-inner { grid-template-columns: repeat(2,1fr); }
  .proof-num { font-size: 1.5rem; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.06);
    gap: 16px;
  }
  .nav-links.open .nav-dropdown-menu {
    position: static; transform: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none; padding: 0 0 0 16px;
    min-width: auto;
  }
  .nav-dropdown > a::after { display: none; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { text-align: center; }
  .cta-banner h2 { font-size: 1.7rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta { display: flex; }
  body { padding-bottom: 60px; }
  .content-body h2 { font-size: 1.35rem; }
  .visi-card { width: 95%; padding: 28px 20px; max-height: 85vh; }
  .visi-industries { grid-template-columns: 1fr; }
  .visi-step h2 { font-size: 1.2rem; }
  .visi-mobile-bar { display: block; }
}

/* --- VISIBILITY SCORE POPUP --- */
.visi-overlay {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(3px);
  align-items: center; justify-content: center;
}
.visi-overlay.active { display: flex; animation: visiFade 0.3s ease; }
@keyframes visiFade { from { opacity: 0; } to { opacity: 1; } }
.visi-card {
  background: var(--white); max-width: 520px; width: 92%; border-radius: 16px;
  padding: 40px 36px; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  max-height: 90vh; overflow-y: auto;
  animation: visiFade 0.3s ease;
}
.visi-close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; font-size: 1.6rem; color: var(--muted);
  cursor: pointer; width: 44px; height: 44px; display: flex;
  align-items: center; justify-content: center; border-radius: 50%;
  transition: all 0.2s; z-index: 1;
}
.visi-close:hover { background: rgba(0,0,0,0.06); color: var(--navy); }
.visi-progress {
  font-size: 0.72rem; font-weight: 600; color: var(--copper);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}
.visi-step { display: none; opacity: 0; transition: opacity 0.25s ease; }
.visi-step.active { display: block; opacity: 1; }
.visi-step.fade-out { opacity: 0; }
.visi-step h2 {
  font-size: 1.35rem; font-weight: 700; color: var(--navy);
  line-height: 1.3; margin-bottom: 8px; padding-right: 32px;
}
.visi-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.visi-industries { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.visi-industry-btn {
  background: var(--off-white); border: 2px solid rgba(0,0,0,0.06);
  border-radius: 10px; padding: 14px 16px; font-size: 0.92rem;
  font-weight: 500; color: var(--navy); cursor: pointer;
  transition: all 0.2s; text-align: center; font-family: inherit;
}
.visi-industry-btn:hover { border-color: var(--copper); background: rgba(184,115,51,0.04); color: var(--copper); }
.visi-checklist { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.visi-check-item {
  font-size: 0.88rem; color: var(--text); line-height: 1.5;
  display: flex; gap: 8px; align-items: start;
}
.visi-check-icon { color: var(--copper); font-weight: 700; flex-shrink: 0; }
.visi-input {
  width: 100%; padding: 14px 16px; font-size: 0.95rem;
  border: 1.5px solid rgba(0,0,0,0.1); border-radius: 8px;
  margin-bottom: 10px; font-family: inherit;
  transition: border-color 0.2s; min-height: 48px; background: var(--white);
}
.visi-input:focus { border-color: var(--copper); outline: 3px solid rgba(184,115,51,0.15); }
.visi-submit { width: 100%; min-height: 48px; margin-top: 4px; }
.visi-micro { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 12px; }
.visi-proof { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 6px; font-style: italic; }
.visi-confirm-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(34,197,94,0.1); color: #22C55E;
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
/* Click-trigger CTA */
.visi-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--off-white); border: 2px solid var(--copper);
  color: var(--copper); font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 10px; cursor: pointer;
  transition: all 0.25s; font-family: inherit;
}
.visi-trigger:hover { background: var(--copper); color: var(--white); }
/* Mobile visibility bar */
.visi-mobile-bar {
  display: none; position: fixed; bottom: 68px;
  left: 0; right: 0; z-index: 998;
  background: var(--navy); padding: 8px 16px;
  text-align: center; border-top: 1px solid rgba(255,255,255,0.08);
}
.visi-mobile-bar-btn {
  background: none; border: none; color: var(--cta);
  font-weight: 600; font-size: 0.88rem; cursor: pointer;
  padding: 4px 0; font-family: inherit;
}

/* --- GLOBAL TRUST BAR --- */
.trust-bar {
  background: #F9FAFB; padding: 12px 16px; text-align: center;
  border-bottom: 1px solid #E5E7EB; font-size: 0.88rem; color: #374151;
}

/* --- FLOATING MOBILE CTA (redesigned) --- */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); padding: 8px 12px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15); z-index: 9999;
  gap: 8px; align-items: center;
}
.sticky-cta-primary {
  flex: 6; text-align: center; display: inline-flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.88rem; border-radius: 6px;
  padding: 0; height: 40px; background: var(--cta); color: var(--white);
  transition: all 0.25s ease;
}
.sticky-cta-primary:hover { background: #D4800E; }
.sticky-cta-phone {
  flex: 4; height: 40px; border-radius: 6px; display: flex;
  align-items: center; justify-content: center; background: transparent;
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--white); font-size: 0.88rem; font-weight: 700;
  transition: all 0.2s; gap: 6px;
}
.sticky-cta-phone:hover { background: rgba(255,255,255,0.1); }

/* --- PRICING PAGE --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--white); border-radius: 16px; padding: 36px 28px;
  border: 2px solid rgba(0,0,0,0.06); transition: all 0.3s; position: relative;
}
.pricing-card:hover { box-shadow: 0 12px 40px rgba(27,42,74,0.08); }
.pricing-card.featured {
  border-color: var(--cta); transform: scale(1.03);
  box-shadow: 0 16px 50px rgba(232,145,58,0.15);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cta); color: var(--white); font-size: 0.72rem; font-weight: 700;
  padding: 5px 16px; border-radius: 100px; letter-spacing: 0.03em; white-space: nowrap;
}
.pricing-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pricing-card .pricing-subtitle { font-size: 0.92rem; color: var(--muted); margin-bottom: 16px; }
.pricing-card .pricing-price {
  font-size: 2.4rem; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.pricing-card .pricing-strikethrough {
  font-size: 0.85rem; color: var(--muted); text-decoration: line-through; margin-bottom: 4px;
}
.pricing-card .pricing-savings {
  display: inline-block; font-size: 0.78rem; font-weight: 600; color: var(--green);
  background: rgba(40,167,69,0.08); padding: 3px 10px; border-radius: 100px; margin-bottom: 20px;
}
.pricing-card ul { margin-bottom: 24px; }
.pricing-card li {
  font-size: 0.88rem; color: var(--text); padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex; gap: 10px; align-items: start; list-style: none;
}
.pricing-card li::before { content: '\2713'; color: var(--copper); font-weight: 700; flex-shrink: 0; }
.pricing-card .btn { width: 100%; text-align: center; }

/* --- ADD-ON CARDS --- */
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.addon-card {
  background: var(--white); border-radius: 12px; padding: 24px;
  border: 1px solid rgba(0,0,0,0.06);
}
.addon-card h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.addon-card .addon-price { font-size: 0.92rem; color: var(--copper); font-weight: 600; }

/* --- CTA MICRO TEXT --- */
.cta-micro {
  font-size: 0.82rem; color: var(--muted); margin-top: 8px; text-align: center;
}
.cta-micro a { color: var(--copper); font-weight: 500; }

/* --- BLOG POST --- */
.blog-content { max-width: 760px; margin: 0 auto; }
.blog-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 40px 0 16px; }
.blog-content h3 { font-size: 1.2rem; font-weight: 600; color: var(--navy); margin: 28px 0 12px; }
.blog-content p { font-size: 1.02rem; color: var(--text); line-height: 1.8; margin-bottom: 18px; }
.blog-content ul, .blog-content ol { padding-left: 24px; margin-bottom: 18px; }
.blog-content li { font-size: 1.02rem; color: var(--text); line-height: 1.8; margin-bottom: 8px; list-style: disc; }
.blog-content ol li { list-style: decimal; }
.blog-content blockquote {
  border-left: 4px solid var(--copper); padding: 20px 24px;
  background: rgba(184,115,51,0.04); border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.blog-meta-header { font-size: 0.88rem; color: var(--muted); margin-bottom: 32px; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .addon-grid { grid-template-columns: 1fr; }
}
@media (max-width: 390px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-sub { font-size: 0.95rem; }
  .visi-card { padding: 24px 16px; }
  .section-title { font-size: 1.4rem; }
  .proof-num { font-size: 1.3rem; }
  .city-grid { grid-template-columns: 1fr; }
}
/* --- PRINT --- */
@media print {
  .nav, .hamburger, .sticky-cta, .cta-banner, .exit-overlay, .footer { display: none !important; }
  body { padding-bottom: 0; background: #fff; color: #000; font-size: 12pt; }
  .hero { padding: 20px 0; background: none !important; }
  .hero h1 { color: #000; font-size: 18pt; }
  .section { padding: 20px 0; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
  .btn::after, .nav-links a::after { content: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}
