/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --navy-mid: #334155;
  --gold: #d4af37;
  --gold-hover: #eab308;
  --gold-light: #fbbf24;
  --light-bg: #f8fafc;
  --light-text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --text-on-dark: #cbd5e1;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
  --header-h: 72px;
  --utility-h: 36px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --transition: 0.25s ease;
}

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--text-on-dark); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-light { background: var(--light-bg); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-subtitle { color: var(--text-on-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* GPU-friendly CTA pulse (no opacity/filter — better Lighthouse score) */
@keyframes btn-attention-blink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.45); }
  50% { box-shadow: 0 0 18px 6px rgba(201, 162, 39, 0.8); }
}

@media (prefers-reduced-motion: no-preference) {
  .btn,
  a.btn,
  button.btn,
  input.btn[type="submit"],
  input.btn[type="button"],
  button[type="submit"],
  input[type="submit"] {
    animation: btn-attention-blink 0.75s ease-in-out infinite;
    will-change: box-shadow;
  }

  .btn:hover,
  a.btn:hover,
  button.btn:hover,
  button[type="submit"]:hover,
  input[type="submit"]:hover {
    animation: none;
    will-change: auto;
  }
}

/* Utility Bar */
.utility-bar {
  background: var(--navy-light);
  color: var(--text-on-dark);
  font-size: 0.8125rem;
  height: var(--utility-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-bar a { color: var(--text-on-dark); }
.utility-bar a:hover { color: var(--gold); }

.utility-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
}

/* Header / Nav */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  overflow: visible;
}

.site-header {
  background: var(--navy);
  position: relative;
  z-index: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.site-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}
.site-logo:hover .site-logo-img {
  filter: brightness(1.08);
}
.site-logo:hover { color: var(--gold-hover) !important; }

.main-nav { display: flex; align-items: center; gap: 4px; }

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  color: var(--text-on-dark) !important;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
}
span.nav-link { cursor: default; }
span.site-logo { cursor: default; }

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: all var(--transition);
  display: block;
}

.result-loc-card { cursor: default; }

.guide-links span {
  font-size: 0.9rem;
  color: #92700c;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  font-size: 0.75rem;
}

.footer-legal span {
  color: var(--text-on-dark);
  font-size: 0.8125rem;
  margin: 0 10px;
}

.mobile-nav-overlay .nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-link:hover, .nav-item:hover > .nav-link {
  color: var(--gold) !important;
  background: rgba(212, 175, 55, 0.08);
}

.nav-link svg,
.nav-chevron { width: 12px; height: 12px; transition: transform var(--transition); flex-shrink: 0; }
.nav-item:hover .nav-link svg,
.nav-item:hover .nav-chevron,
.nav-item.is-open .nav-chevron { transform: rotate(180deg); }

/* Dropdown panels */
.site-mega-menus {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1100;
  pointer-events: none;
}

.site-mega-menus .mega-panel {
  display: none;
}

.site-mega-menus .mega-panel.is-active {
  display: block;
  pointer-events: auto;
}

.mega-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1100;
}

/* Full-width mega menus (Services, Industries, Company) */
.services-mega-panel {
  background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  padding: 20px 0;
  transform: translateY(0);
}

.site-mega-menus .services-mega-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body.mega-menu-open {
  overflow: hidden;
}

.services-mega-inner-company {
  display: block;
  max-width: 680px;
  margin: 0 auto;
  padding-top: 4px;
}

.services-mega-inner-company .services-mega-col-head {
  margin-bottom: 4px;
}

.services-mega-inner-company .services-mega-items-grid {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 2px 36px;
}

.services-mega-inner-company .services-mega-item {
  padding: 8px 10px;
}

.services-mega-inner-company .services-mega-text span {
  line-height: 1.35;
}

.services-mega-company-cta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-mega-company-cta .btn {
  width: 100%;
  justify-content: center;
}

.services-mega-items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 16px;
}

@media (max-width: 600px) {
  .services-mega-items-grid { grid-template-columns: 1fr; }
}

.services-mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}

.services-mega-inner-industries {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  max-width: 760px;
  margin: 0 auto;
}

.services-mega-inner-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-mega-footer-full {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-mega-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.services-mega-col-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.services-mega-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  padding: 3px 8px;
  text-transform: uppercase;
}

.services-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.services-mega-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.services-mega-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.services-mega-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.services-mega-text strong {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.services-mega-text span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.4;
}

.services-mega-footer {
  grid-column: 1 / -1;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: right;
}

.services-mega-view-all {
  color: var(--gold) !important;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Industries / Locations / Company list panels */
.nav-list-mega-panel {
  min-width: 280px;
  max-width: 520px;
  background: #0f172a;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  padding: 16px;
}

.nav-list-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 12px;
  max-height: 360px;
  overflow-y: auto;
}

.nav-company-panel { min-width: 220px; max-width: 260px; }
.nav-company-inner { display: flex; flex-direction: column; gap: 4px; }

.nav-mega-link {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  color: #cbd5e1 !important;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.nav-mega-link:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold) !important;
}

.nav-mega-view-all {
  display: inline-block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold) !important;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Legacy mega menu (fallback) */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 0 1px var(--border);
  padding: 24px;
  min-width: 560px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}

.mega-menu a {
  display: block;
  padding: 8px 12px;
  color: var(--light-text) !important;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: all var(--transition);
}
.mega-menu a:hover {
  background: var(--light-bg);
  color: var(--gold) !important;
}

.mega-menu-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0 12px 8px;
  grid-column: 1 / -1;
}

.header-cta { margin-left: 16px; flex-shrink: 0; }

@media (min-width: 992px) {
  .header-inner .main-nav {
    flex: 1;
    justify-content: center;
    margin: 0 8px;
    gap: 2px;
  }
  .header-inner .nav-link {
    padding: 10px 11px;
    font-size: 0.85rem;
  }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  max-width: 820px;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-on-dark);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-on-dark);
  margin-top: 4px;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold) !important;
}

/* Highlight Boxes */
.highlight-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.highlight-box {
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 32px;
  background: var(--white);
}

.highlight-box .stat {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.highlight-box h3 { font-size: 1.25rem; margin-bottom: 12px; }
.highlight-box p { color: var(--muted); font-size: 0.95rem; }

/* Comparison Table */
.comparison-table-wrap { overflow-x: auto; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.925rem;
}

.comparison-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
}

.comparison-table thead th:first-child { background: var(--navy-light); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--light-bg); }

.check { color: #16a34a; font-weight: 700; }
.cross { color: #dc2626; font-weight: 700; }

/* Stat Banner */
.stat-banner {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}

.stat-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 28px;
}

.search-cta {
  display: inline-flex;
  align-items: center;
  background: var(--navy-light);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 6px 6px 6px 24px;
  max-width: 480px;
  width: 100%;
}

.search-cta input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  min-width: 0;
}
.search-cta input::placeholder { color: var(--muted); }

/* Industry Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
}

.industry-card:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

.industry-card .icon { font-size: 1.75rem; margin-bottom: 8px; }
.industry-card span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--light-text);
  line-height: 1.3;
  display: block;
}

/* Logo Strip */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
}

.logo-placeholder {
  width: 120px;
  height: 40px;
  background: var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

/* Why Choose Section */
.why-choose-content {
  max-width: 900px;
  margin: 0 auto 48px;
}

.why-choose-content ul {
  list-style: none;
  margin: 24px 0;
}

.why-choose-content li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.975rem;
}

.why-choose-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-item .icon { font-size: 2rem; margin-bottom: 12px; }
.stat-item h4 { font-size: 1rem; margin-bottom: 8px; font-family: var(--font-sans); font-weight: 700; }
.stat-item p { font-size: 0.85rem; color: var(--muted); }

/* Long-form Content */
.content-block {
  max-width: 820px;
  margin: 0 auto 48px;
}

.content-block h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  padding-top: 24px;
}

.content-block h3 {
  font-size: 1.25rem;
  margin: 24px 0 12px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.content-block p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.75;
}

.content-block ul {
  margin: 16px 0 16px 24px;
  color: var(--muted);
}

.content-block li { margin-bottom: 8px; font-size: 0.975rem; }

/* FAQ Accordion */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--light-bg); }

.faq-question .icon {
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 500px; }

/* Trust Section */
.trust-section { text-align: center; }
.trust-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--gold);
  font-size: 1.25rem;
}
.trust-stars span { color: var(--muted); font-size: 0.9rem; margin-left: 8px; }

/* Newsletter */
.newsletter-band {
  background: var(--navy-light);
  padding: 56px 0;
}

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

.newsletter-inner h3 {
  color: var(--white);
  font-size: 1.5rem;
  max-width: 400px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex: 1;
  max-width: 480px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  outline: none;
  min-width: 0;
}
.newsletter-form input:focus { border-color: var(--gold); }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
  padding: 72px 0;
  text-align: center;
}

.final-cta h2 {
  color: var(--navy);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--navy-light);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.final-cta .btn-gold {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.final-cta .btn-gold:hover {
  background: var(--navy-light);
  color: var(--white);
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--text-on-dark);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-logo { display: inline-block; margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4,
.footer-col-title {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-on-dark) !important;
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold) !important; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.8125rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--text-on-dark) !important;
  font-size: 1.1rem;
}
.footer-social a:hover { color: var(--gold) !important; }

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a { color: var(--text-on-dark) !important; font-size: 0.8125rem; }
.footer-legal a:hover { color: var(--gold) !important; }

/* Inner Pages */
.page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-on-dark);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.breadcrumb a { color: var(--gold) !important; }
.breadcrumb span { color: var(--muted); }

.page-content { padding: 64px 0; }
.page-content .container { max-width: 820px; }
.page-content h2 { margin: 32px 0 16px; font-size: 1.5rem; }
.page-content p { margin-bottom: 16px; color: var(--muted); line-height: 1.75; }
.page-content ul, .page-content ol { margin: 16px 0 16px 24px; color: var(--muted); }

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form .form-group { margin-bottom: 20px; }

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--gold); }

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2.5rem;
}

.blog-card-body { padding: 24px; }

.blog-card .category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card h3 a { color: var(--navy) !important; }
.blog-card h3 a:hover { color: var(--gold) !important; }

.blog-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }

.blog-card .read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold) !important;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
}

.pricing-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  margin: 20px 0;
}
.pricing-card .price span { font-size: 1rem; color: var(--muted); font-family: var(--font-sans); }

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 24px 0;
}

.pricing-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Homepage Pricing Packages */
.homepage-pricing-section {
  background: var(--off-white);
}

.pricing-hero-card {
  max-width: 640px;
  margin: 40px auto 48px;
  padding: 48px 40px;
  text-align: center;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.2);
}

.pricing-hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.pricing-hero-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.pricing-hero-price {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin: 16px 0;
}

.pricing-hero-price span {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-on-dark);
}

.pricing-hero-note {
  font-size: 0.9375rem;
  color: var(--text-on-dark);
  margin-bottom: 8px;
}

.pricing-hero-includes {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.pricing-hero-includes strong {
  color: var(--gold);
}

.pricing-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pricing-category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pricing-category-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.pricing-category-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.pricing-category-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.pricing-category-head h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
  margin: 0;
}

.pricing-category-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
}

.pricing-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 1;
}

.pricing-category-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
  break-inside: avoid;
}

.pricing-category-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
}

.pricing-footer-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.pricing-footer-cta p {
  font-size: 1.125rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 20px;
}

@media (min-width: 1100px) {
  .pricing-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-category-card:nth-child(1),
  .pricing-category-card:nth-child(2) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .pricing-hero-card {
    padding: 36px 24px;
    margin-top: 32px;
  }

  .pricing-hero-price {
    font-size: 2.75rem;
  }

  .pricing-categories-grid {
    grid-template-columns: 1fr;
  }
}

/* Archive listing */
.archive-grid { padding: 64px 0; }

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.error-page h1 {
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1000;
  padding: 80px 24px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-overlay.active { display: block; }

.mobile-nav-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: var(--white) !important;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
}

.mobile-nav-toggle[aria-expanded="true"] {
  color: var(--gold) !important;
}

.mobile-nav-toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  padding: 0;
  margin: 0;
  max-height: 50vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.mobile-submenu.active { display: block; }

.mobile-mega-group {
  margin-bottom: 12px;
}

.mobile-mega-group-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.mobile-mega-group-title span {
  display: block;
  font-size: 0.62rem;
  color: rgba(212, 175, 55, 0.7);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.mobile-mega-link {
  display: block;
  padding: 14px 0;
  min-height: 44px;
  color: var(--text-on-dark) !important;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-tap-highlight-color: transparent;
}

.mobile-mega-link:hover { color: var(--gold) !important; }

.mobile-mega-view-all {
  color: var(--gold) !important;
  font-weight: 600;
  margin-top: 8px;
  border-bottom: none;
}

.mobile-mega-rich-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 8px;
  color: var(--text-on-dark) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-mega-rich-link:hover { background: rgba(255, 255, 255, 0.04); }

.mobile-mega-rich-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.mobile-mega-rich-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mobile-mega-rich-text strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.mobile-mega-rich-text span {
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.35;
}

.mobile-submenu-company {
  padding-bottom: 8px;
}

.mobile-company-cta {
  display: flex;
  width: calc(100% - 16px);
  margin: 12px 8px 4px;
  justify-content: center;
}

.mobile-nav-overlay .nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-submenu {
  display: none;
  padding-left: 16px;
  margin-bottom: 8px;
}

.mobile-submenu.active { display: block; }

.mobile-submenu a {
  display: block;
  padding: 10px 0;
  color: var(--text-on-dark) !important;
  font-size: 0.9rem;
}

.mobile-nav-toggle-sub {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 4px 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: repeat(3, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .mega-menu { min-width: 400px; }
  .services-mega-inner,
  .services-mega-inner-services { grid-template-columns: 1fr 1fr; }
  .services-mega-inner-industries { grid-template-columns: 1fr 1fr; max-width: none; }
}

@media (max-width: 900px) {
  .services-mega-inner,
  .services-mega-inner-services,
  .services-mega-inner-industries { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-mega-menus { display: none; }

  .section { padding: 56px 0; }

  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }

  .mobile-nav-overlay {
    padding: 16px 20px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-submenu {
    max-height: min(60vh, 420px);
  }

  .mobile-nav-toggle {
    min-height: 48px;
    padding: 12px 0;
  }

  .hero { padding: 64px 0 48px; }
  .hero-stats { gap: 24px; }

  .highlight-row { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; max-width: none; flex-direction: column; }

  .contact-grid { grid-template-columns: 1fr; }

  .comparison-table th,
  .comparison-table td { padding: 12px 16px; font-size: 0.85rem; }

  .industry-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .search-cta { flex-direction: column; padding: 16px; border-radius: var(--radius); }
  .search-cta .btn { width: 100%; justify-content: center; }
  .hero-split { grid-template-columns: 1fr; }
  .service-duo { grid-template-columns: 1fr; }
  .lead-split-grid { grid-template-columns: 1fr; }
  .feature-dark-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Reference Layout (seoagencyusa.com clone structure)
   ========================================================================== */
.hero-ref {
  padding: 72px 0 80px;
  background: var(--navy) url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-left h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  color: var(--white);
  margin-bottom: 20px;
  max-width: none;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.hero-phone {
  color: var(--white) !important;
  font-size: 1.05rem;
  font-weight: 600;
}
.hero-phone:hover { color: var(--gold) !important; }

.hero-trust-box {
  background: var(--navy-light);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.trust-stat .num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.trust-stat .lbl {
  display: block;
  font-size: 0.875rem;
  color: var(--text-on-dark);
  margin-top: 6px;
  line-height: 1.35;
}

.section-white { background: var(--white); }

.feature-dark-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-dark-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: border-color var(--transition);
}
.feature-dark-card:hover { border-color: var(--gold); }

.feature-dark-card .f-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-dark-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-dark-card p {
  color: var(--text-on-dark);
  font-size: 0.85rem;
  line-height: 1.55;
}

.service-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}

.service-duo-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.service-duo-box .s-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.service-duo-box h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.service-duo-box ul {
  list-style: none;
  margin: 0 0 24px;
}

.service-duo-box li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 0.925rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.service-duo-box li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.service-duo-box .duo-link {
  font-weight: 600;
  color: var(--gold) !important;
  font-size: 0.9rem;
}

.why-callout {
  background: var(--navy);
  padding: 56px 0;
  border-left: 5px solid var(--gold);
}

.why-callout-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.why-callout h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
}

.check-list li {
  color: var(--text-on-dark);
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.lead-split {
  padding: 72px 0;
}

.lead-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lead-split h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}

.lead-split p { color: var(--text-on-dark); margin-bottom: 12px; }

.lead-form {
  background: var(--navy-light);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  padding: 32px;
}

.lead-form .form-group { margin-bottom: 16px; }

.lead-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--white);
}

.lead-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

.content-section-alt { background: var(--light-bg); }
.content-section-alt .content-block h2 { padding-top: 0; }

.final-cta-dark {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.final-cta-dark h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 28px;
}

.btn-gold-lg {
  padding: 16px 36px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .feature-dark-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-split { grid-template-columns: 1fr; }
  .hero-trust-box { max-width: 480px; }
}

@media (max-width: 768px) {
  .feature-dark-grid { grid-template-columns: 1fr; }
  .service-duo { grid-template-columns: 1fr; }
  .lead-split-grid { grid-template-columns: 1fr; }
  .why-callout-inner { flex-direction: column; align-items: flex-start; }
  .core-services-grid { grid-template-columns: 1fr; }
  .why-partner-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .footer-mega-grid { grid-template-columns: 1fr 1fr; }
  .footer-header-row { flex-direction: column; align-items: flex-start; }
}

/* Section accent line */
.section-accent-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
}

/* Core Services 4x2 grid */
.core-services-section {
  background: var(--light-bg);
  background-image: radial-gradient(circle, #e2e8f0 1px, transparent 1px);
  background-size: 24px 24px;
}

.core-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

a.core-svc-card {
  text-decoration: none;
  color: inherit;
}

a.industry-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.core-svc-card {
  border-radius: 12px;
  padding: 28px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.core-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.core-svc-card.dark {
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.core-svc-card.light {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.core-svc-card .svc-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.core-svc-card.dark .svc-icon-wrap { background: rgba(0,0,0,0.3); }

.core-svc-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.core-svc-card.dark h3 { color: var(--white); }
.core-svc-card.light h3 { color: var(--navy); }

.core-svc-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.core-svc-card.dark p { color: var(--text-on-dark); }
.core-svc-card.light p { color: var(--muted); }

.core-svc-card .learn-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold) !important;
}

.guide-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.guide-links a {
  font-size: 0.9rem;
  color: #92700c !important;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Why SEO Matters - definition cards */
.why-seo-section { background: var(--white); }

.def-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.def-card {
  background: #fdfbf5;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 32px 28px;
  border: 1px solid #f0e6c8;
  border-left: 4px solid var(--gold);
}

.def-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.def-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.def-card strong { color: var(--navy); }

/* Recent Results - location cards */
.results-section {
  background: var(--light-bg);
  background-image: radial-gradient(circle, #e2e8f0 1px, transparent 1px);
  background-size: 24px 24px;
}

.results-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
  margin-bottom: 40px;
}

.results-tagline .pin { color: var(--gold); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.result-loc-card {
  background: var(--white);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
}

.result-loc-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.result-loc-card .code {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.result-loc-card .pin-sm { color: #94a3b8; font-size: 0.85rem; }

.result-loc-card .city {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-sans);
}

/* Why Partner 3x2 grid */
.why-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow var(--transition);
}

.partner-card:hover { box-shadow: var(--shadow); }

.partner-card .p-icon-wrap {
  width: 44px;
  height: 44px;
  background: #fff9e6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.partner-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.partner-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Trusted by Leaders - dark testimonial */
.trust-leaders-section {
  background: linear-gradient(180deg, #0a0e1b 0%, var(--navy) 100%);
  padding: 80px 0;
  color: var(--text-on-dark);
}

.trust-leaders-section .section-title { color: var(--white); }
.trust-leaders-section .section-subtitle { color: var(--text-on-dark); }

.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 40px;
}

.industry-tabs button {
  background: none;
  border: none;
  color: #64748b;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 6px 0;
  font-family: var(--font-sans);
  transition: color var(--transition);
}

.industry-tabs button.active,
.industry-tabs button:hover { color: var(--gold); }

.testimonial-carousel {
  position: relative;
  max-width: 820px;
  margin: 0 auto 48px;
}

.testimonial-card {
  background: #1a2744;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 48px 56px;
  text-align: center;
}

.testimonial-quote-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 24px; }

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.875rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  transition: all var(--transition);
}

.carousel-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #475569;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dots span.active {
  width: 24px;
  border-radius: 4px;
  background: var(--gold);
}

/* Newsletter dark section */
.newsletter-dark {
  background: transparent;
  padding: 0;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.newsletter-dark h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.newsletter-dark > p {
  color: var(--text-on-dark);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.newsletter-dark-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 16px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 4px;
}

.newsletter-dark-form input {
  flex: 1;
  border: none;
  padding: 14px 16px;
  font-size: 0.95rem;
  outline: none;
  min-width: 0;
}

.newsletter-dark-form .btn {
  border-radius: 6px;
  padding: 14px 24px;
}

.newsletter-privacy {
  font-size: 0.8rem;
  color: #64748b;
}

/* Mega Footer */
.site-footer-mega {
  background: #0a0e1b;
  padding: 64px 0 0;
  color: var(--text-on-dark);
}

.footer-header-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.footer-logo-block .site-logo {
  margin-bottom: 8px;
}

.footer-logo-block .site-logo-img {
  width: 56px;
  height: 56px;
}

.footer-logo-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-logo-block p {
  font-size: 0.875rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-contact-block {
  margin-top: 14px;
}

.footer-contact-block p {
  font-size: 0.85rem;
  margin-bottom: 4px;
  line-height: 1.5;
}

.footer-contact-block a {
  color: var(--gold) !important;
  font-weight: 600;
}

.footer-contact-block a:hover {
  color: var(--gold-hover) !important;
}

.footer-header-row-premium {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  align-items: start;
  gap: 32px;
}

.footer-brand-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 0.02em;
}

.footer-logo-accent {
  color: var(--gold);
}

.footer-header-row-premium .footer-social-row {
  align-self: center;
  justify-content: center;
}

.footer-mega-grid-premium {
  grid-template-columns: repeat(5, 1fr);
}

.footer-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.72rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.footer-mega-col a {
  gap: 8px;
}

.contact-form-success {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 32px;
}

/* Footer locations panel — country cards at bottom */
.footer-locations-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 8px;
  padding-bottom: 8px;
}

.footer-locations-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 28px 0 20px;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.footer-locations-toggle:hover {
  color: var(--gold);
}

.footer-locations-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.footer-locations-toggle[aria-expanded="false"] .footer-locations-chevron {
  transform: rotate(-90deg);
}

.footer-locations-body {
  display: none;
  padding-bottom: 28px;
}

.footer-locations-body.is-open {
  display: block;
}

.footer-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.footer-location-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 24px;
  transition: border-color var(--transition), background var(--transition);
}

.footer-location-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.25);
}

.footer-location-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-location-country {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.footer-location-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.footer-location-code {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

.footer-location-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.footer-location-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 14px;
  line-height: 1.45;
}

.footer-location-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-location-cities a {
  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-location-cities a:hover {
  color: var(--gold) !important;
}

.footer-locations-hub {
  margin: 20px 0 0;
  text-align: center;
}

.footer-locations-hub a {
  color: var(--gold) !important;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-locations-hub a:hover {
  color: var(--gold-hover) !important;
}

@media (max-width: 1024px) {
  .footer-locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-locations-grid {
    grid-template-columns: 1fr;
  }

  .footer-location-card {
    padding: 18px 20px;
  }
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal a {
  color: #94a3b8 !important;
  font-size: 0.8rem;
}

.footer-legal a:hover {
  color: var(--gold) !important;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-row a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark) !important;
  font-size: 0.75rem;
  transition: all var(--transition);
}

.footer-social-row a:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.footer-newsletter-block label {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-form input {
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  min-width: 200px;
}

.footer-newsletter-form .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.footer-mega-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-mega-col h4,
.footer-col-title {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 16px;
}

.footer-mega-col ul { list-style: none; }

.footer-mega-col li { margin-bottom: 6px; }

.footer-mega-col a {
  color: #94a3b8 !important;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.footer-mega-col a:hover { color: var(--gold) !important; }

.footer-mega-col .see-all {
  color: var(--gold) !important;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
  font-size: 0.8rem;
}

.footer-mega-col .see-all:hover { color: var(--gold-hover) !important; }

.footer-company-col {
  grid-column: 1;
}

.footer-intelligence {
  text-align: center;
  padding: 48px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-intelligence h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.footer-intelligence p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto 12px;
}

.inline-cta-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 32px 0;
  text-align: center;
}

.inline-cta-bar p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .core-services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-partner-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-mega-grid-premium,
  .footer-mega-grid-full { grid-template-columns: repeat(3, 1fr); }
  .footer-header-row-premium { grid-template-columns: 1fr; }
  .def-cards-row { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(3, 1fr); }
  .carousel-btn.prev { left: 0; }
  .carousel-btn.next { right: 0; }
}

/* ==========================================================================
   MOBILE RESPONSIVE — full site
   ========================================================================== */
@media (max-width: 768px) {
  html { font-size: 15px; }
  body { overflow-x: hidden; }

  .container { padding: 0 16px; }

  /* Utility bar */
  .utility-bar {
    height: auto;
    min-height: var(--utility-h);
    padding: 6px 0;
  }
  .utility-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .utility-bar .container > div:last-child {
    font-size: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
  }
  .utility-bar .container > div:first-child span:not(.utility-dot) {
    font-size: 0.7rem;
  }

  /* Header */
  .header-inner { height: 60px; }
  .site-logo { font-size: 1rem; letter-spacing: 0.08em; }
  .menu-toggle { display: block; z-index: 1001; }
  .main-nav, .header-cta { display: none; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-title { font-size: 1.65rem; margin-bottom: 12px; }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 32px; }

  /* Hero mobile — match reference screenshot */
  .hero-ref { padding: 40px 0 48px; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-left h1 {
    font-size: 1.65rem;
    line-height: 1.25;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
  }
  .hero-phone {
    text-align: center;
    font-size: 1rem;
  }
  .hero-trust-box {
    width: 100%;
    max-width: none;
    padding: 28px 24px;
    gap: 24px 16px;
  }
  .trust-stat .num { font-size: 1.75rem; }
  .trust-stat .lbl { font-size: 0.8rem; }

  /* Feature cards */
  .feature-dark-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-dark-card { padding: 24px 16px; }
  .feature-dark-card .f-icon { font-size: 1.5rem; }
  .feature-dark-card h3 { font-size: 0.9rem; }
  .feature-dark-card p { font-size: 0.8rem; }

  /* Core services */
  .core-services-grid { grid-template-columns: 1fr; gap: 16px; }
  .core-svc-card { min-height: auto; padding: 24px 20px; }

  /* Guide links */
  .guide-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 24px;
  }
  .guide-links a { font-size: 0.85rem; }

  /* Definition cards */
  .def-cards-row { grid-template-columns: 1fr; }
  .def-card { padding: 24px 20px; }

  /* Why callout */
  .why-callout { padding: 40px 0; }
  .why-callout-inner { flex-direction: column; align-items: stretch; }
  .why-callout .btn { width: 100%; justify-content: center; }

  /* Comparison */
  .comparison-table-wrap {
    margin: 0 -16px;
    padding: 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table { min-width: 520px; }

  /* Lead form */
  .lead-split { padding: 48px 0; }
  .lead-split-grid { grid-template-columns: 1fr; gap: 32px; }
  .lead-form { padding: 24px 20px; }

  /* Industries */
  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .industry-card { padding: 16px 10px; }
  .industry-card span { font-size: 0.75rem; }

  /* Results */
  .results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: none;
  }
  .result-loc-card { padding: 12px 14px; gap: 8px; }
  .result-loc-card .code { font-size: 0.65rem; padding: 6px 8px; }
  .result-loc-card .city { font-size: 0.8rem; }
  .results-tagline { flex-wrap: wrap; text-align: center; font-size: 0.85rem; }

  /* Partner cards */
  .why-partner-grid { grid-template-columns: 1fr; gap: 16px; }
  .partner-card { padding: 24px 20px; }

  /* Stat banner */
  .stat-banner { padding: 40px 0; }
  .stat-banner h2 { font-size: 1.35rem; }
  .search-cta {
    flex-direction: column;
    padding: 16px;
    border-radius: var(--radius);
    max-width: 100%;
  }
  .search-cta input { width: 100%; padding: 12px 0; text-align: center; }
  .search-cta .btn { width: 100%; justify-content: center; }

  /* CTA buttons centered sections */
  .section-cta-center .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  /* FAQ */
  .faq-question { font-size: 0.95rem; padding: 16px 18px; }
  .faq-answer-inner { padding: 0 18px 16px; font-size: 0.9rem; }

  /* Trust / testimonial */
  .trust-leaders-section { padding: 48px 0; }
  .industry-tabs { gap: 6px 12px; }
  .industry-tabs button { font-size: 0.8rem; }
  .testimonial-carousel { padding: 0 8px; }
  .testimonial-card { padding: 32px 20px; }
  .testimonial-card blockquote { font-size: 1rem; }
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .carousel-btn.prev { left: -4px; }
  .carousel-btn.next { right: -4px; }

  /* Newsletter dark */
  .newsletter-dark-form {
    flex-direction: column;
    padding: 8px;
    max-width: 100%;
  }
  .newsletter-dark-form input { padding: 14px 16px; }
  .newsletter-dark-form .btn { width: 100%; justify-content: center; }

  /* Final CTA */
  .final-cta-dark { padding: 48px 0; }
  .final-cta-dark .btn { width: 100%; max-width: 100%; justify-content: center; }

  /* Mega footer */
  .site-footer-mega { padding: 40px 0 0; }
  .footer-header-row {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
  .footer-social-row { justify-content: flex-start; }
  .footer-newsletter-block { width: 100%; }
  .footer-newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .footer-newsletter-form input {
    width: 100%;
    min-width: 0;
  }
  .footer-newsletter-form .btn { width: 100%; justify-content: center; }
  .footer-mega-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    padding-bottom: 32px;
  }
  .footer-intelligence { padding: 32px 16px; }
  .footer-intelligence h3 { font-size: 1.35rem; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding-bottom: 24px;
  }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* Page templates */
  .page-hero { padding: 48px 0 36px; }
  .page-hero h1 { font-size: 1.75rem; }
  .page-content { padding: 40px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .highlight-row { grid-template-columns: 1fr; }
  .logo-strip { gap: 16px; }
  .logo-placeholder { width: 90px; height: 36px; font-size: 0.65rem; }

  /* Mobile nav improvements */
  .mobile-nav-overlay { padding: 72px 16px 24px; }
  .mobile-nav-overlay .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .utility-bar .container > div:first-child {
    display: none;
  }
  .utility-bar .container {
    align-items: center;
    text-align: center;
  }

  .hero-left h1 { font-size: 1.45rem; }
  .hero-tag { font-size: 0.7rem; }

  .feature-dark-grid { grid-template-columns: 1fr; }

  .results-grid { grid-template-columns: 1fr; }

  .footer-mega-grid { grid-template-columns: 1fr; }

  .industry-grid { grid-template-columns: repeat(2, 1fr); }

  .stat-row { grid-template-columns: 1fr; }

  .service-duo { grid-template-columns: 1fr; }

  .btn-gold-lg {
    font-size: 0.9rem;
    padding: 14px 24px;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 360px) {
  .hero-trust-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .industry-tabs button { font-size: 0.75rem; }
}

/* ==========================================================================
   Services Page (seoagencyusa.com/services layout)
   ========================================================================== */
.services-page-hero {
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 50%, var(--navy) 100%);
}

.services-page-hero .breadcrumb {
  justify-content: center;
  margin-bottom: 24px;
}

.services-page-hero .breadcrumb span:last-child {
  color: var(--text-on-dark);
}

.page-hero-cta {
  margin-top: 28px;
}

.services-intro .content-block {
  margin-bottom: 0;
}

.services-intro .content-block p {
  font-size: 1.05rem;
  color: var(--light-text);
  line-height: 1.8;
  text-align: center;
}

.services-seo-grid .cards-grid {
  margin-top: 8px;
}

.section-dark.services-network {
  padding: 80px 0;
}

.section-dark.services-network .section-title {
  color: var(--white);
}

.section-dark.services-network .footer-mega-col h4,
.section-dark.services-network .footer-mega-col h3,
.section-dark.services-network .footer-col-title {
  color: var(--gold);
  text-decoration: none;
}

.services-network-grid {
  margin-top: 40px;
  text-align: left;
}

.services-network-grid .footer-mega-col a {
  color: var(--text-on-dark) !important;
}

.services-network-grid .footer-mega-col a:hover {
  color: var(--gold) !important;
}

/* ==========================================================================
   Industries Page (seoagencyusa.com/industries layout)
   ========================================================================== */
.industries-page-hero {
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 50%, var(--navy) 100%);
}

.industries-cards-grid {
  margin-top: 8px;
}

.industries-cards-grid .card-link {
  margin-top: 16px;
}

/* ==========================================================================
   About Page (seoagencyusa.com/about layout)
   ========================================================================== */
.about-hero-full {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 50%, var(--navy) 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.about-hero-full .container { position: relative; z-index: 1; }

.about-hero-tag {
  display: block;
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.about-hero-full h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.15;
}

.about-hero-full .hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.about-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.about-divisions-banner {
  background: var(--navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.about-divisions-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 40px 40px;
}

.about-divisions-banner .container { position: relative; z-index: 1; }

.about-divisions-label {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.about-divisions-banner h2 {
  text-align: center;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 40px;
}

.about-division-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.about-division-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.about-division-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
}

.about-division-card .div-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-division-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.about-division-card .div-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.about-division-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

.about-divisions-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  max-width: 640px;
  margin: 32px auto 0;
  line-height: 1.65;
}

.about-page-body {
  padding: 64px 0 80px;
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--utility-h) + 24px);
}

.about-sidebar h3,
.about-sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.about-sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: all var(--transition);
  border-left: 2px solid transparent;
}

.about-sidebar-nav a:hover {
  background: var(--light-bg);
  color: var(--navy);
}

.about-sidebar-nav a.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border-left-color: var(--gold);
}

.about-sidebar-nav .nav-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), rgba(212, 175, 55, 0.8));
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-main section {
  margin-bottom: 72px;
  scroll-margin-top: calc(var(--header-h) + var(--utility-h) + 24px);
}

.about-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.about-section-head .section-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), rgba(212, 175, 55, 0.8));
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section-head h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0;
}

.about-prose {
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.8;
}

.about-prose p { margin-bottom: 16px; }
.about-prose strong { color: var(--navy); }

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.about-stat-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about-stat-card .stat-val {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-card .stat-lbl {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.4;
}

.about-callout {
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.1));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-callout p {
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

.about-inline-cta {
  margin-top: 32px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.about-inline-cta h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.about-inline-cta p {
  color: var(--text-on-dark);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.about-service-tier {
  margin-bottom: 28px;
}

.about-service-tier h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-service-card {
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.about-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), rgba(212, 175, 55, 0.6));
}

.about-service-card h4,
.about-service-card-title {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-service-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  line-height: 1.6;
  margin: 0;
}

.about-metro-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.about-metro-card {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  transition: all var(--transition);
}

.about-metro-card:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

.about-metro-card .code {
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.about-metro-card .city {
  font-size: 0.8125rem;
  color: var(--navy);
  font-weight: 600;
}

.about-industry-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.about-industry-group {
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 20px;
}

.about-industry-group h4 {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.about-industry-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-industry-group li {
  margin-bottom: 6px;
}

.about-industry-group a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.8125rem;
  text-decoration: none;
}

.about-industry-group a:hover { color: var(--gold) !important; }

.about-leader-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.about-leader-photo {
  width: 192px;
  height: 192px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
}

img.about-leader-photo,
img.author-hero-photo {
  display: block;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.about-leader-social {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}

.about-leader-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.about-leader-social .linkedin {
  background: rgba(10, 102, 194, 0.1);
  border: 1px solid rgba(10, 102, 194, 0.2);
  color: #0A66C2 !important;
}

.about-leader-social .linkedin:hover {
  background: #0A66C2;
  color: var(--white) !important;
}

.about-leader-social .twitter {
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--navy) !important;
}

.about-leader-social .twitter:hover {
  background: var(--navy);
  color: var(--white) !important;
}

.about-founder-quote {
  margin-top: 24px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-founder-quote p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-founder-quote cite {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: normal;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
}

.homepage-founder-section .about-leader-grid {
  margin-top: 32px;
}

.homepage-founder-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.homepage-founder-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.homepage-founder-tagline {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.homepage-founder-section .about-founder-quote cite strong {
  color: var(--gold);
}

.about-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.about-diff-card {
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.about-diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), rgba(212, 175, 55, 0.6));
}

.about-diff-card .diff-num {
  font-family: monospace;
  font-size: 0.8125rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.about-diff-card h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-diff-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  line-height: 1.6;
  margin: 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.about-value-card {
  text-align: center;
  padding: 24px 16px;
}

.about-value-card .val-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), rgba(212, 175, 55, 0.8));
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.about-value-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.about-value-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.about-final-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  margin-top: 48px;
}

.about-final-cta-box h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.about-final-cta-box p {
  color: var(--text-on-dark);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.about-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-sidebar { position: static; margin-bottom: 32px; }
  .about-sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .about-sidebar-nav a { font-size: 0.8125rem; padding: 8px 10px; }
  .about-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-metro-grid { grid-template-columns: repeat(3, 1fr); }
  .about-diff-grid { grid-template-columns: repeat(2, 1fr); }
  .about-service-grid { grid-template-columns: 1fr; }
  .about-leader-grid { grid-template-columns: 1fr; text-align: center; }
  .about-leader-photo { margin: 0 auto; }
}

@media (max-width: 640px) {
  .about-stat-grid { grid-template-columns: 1fr; }
  .about-metro-grid { grid-template-columns: repeat(2, 1fr); }
  .about-diff-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-hero-full { padding: 80px 0 60px; }
}

/* ==========================================================================
   Industry Detail Pages (seoagencyusa.com/industries/* full layout)
   ========================================================================== */
.industry-detail-hero {
  text-align: center;
  padding: 72px 0 64px;
}

.industry-hero-premium .breadcrumb-gold a {
  color: var(--gold);
}

.industry-hero-premium .breadcrumb-gold a:hover {
  color: var(--white);
}

.industry-hero-premium .bc-home {
  margin-right: 4px;
}

.industry-detail-hero .breadcrumb {
  justify-content: center;
  margin-bottom: 20px;
}

.industry-detail-hero h1 {
  max-width: 54rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--white);
}

.industry-hero-desc,
.industry-detail-hero p.industry-hero-desc {
  max-width: 44rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.industry-hero-keywords {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.industry-hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 16px;
}

.page-hero-cta-dual {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.btn-hero-glow {
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

.industry-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.industry-hero-meta .meta-sep {
  opacity: 0.6;
}

.industry-hero-meta .meta-clock {
  margin-right: 4px;
}

/* Specialist comparison table */
.industry-compare-section {
  padding: 72px 0;
}

.industry-compare-table-wrap {
  overflow-x: auto;
  margin: 32px 0 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.industry-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.industry-compare-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.industry-compare-table .col-specialist-head {
  color: #9a7b2e;
  background: #faf6ee;
}

.industry-compare-table tbody th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  width: 22%;
}

.industry-compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}

.industry-compare-table .col-specialist {
  color: #9a7b2e;
  font-weight: 500;
  background: #faf6ee;
}

.industry-compare-table .col-generic {
  color: var(--muted);
}

.industry-compare-table tbody tr:last-child th,
.industry-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.industry-resources-box {
  background: #f4f5f7;
  border-radius: var(--radius);
  padding: 28px 32px;
}

.industry-resources-box h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.industry-resources-box > p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.industry-resource-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-resource-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid rgba(154, 123, 46, 0.35);
  border-radius: var(--radius);
  color: #9a7b2e;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}

.industry-resource-tag:hover {
  border-color: var(--gold);
  background: #fffdf8;
}

.industry-resource-tag .ext-icon {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Key marketing services — dark section */
.industry-key-services-section {
  background: linear-gradient(180deg, #0a0e1a 0%, var(--navy) 100%);
  padding: 72px 0;
}

.section-accent-line-light {
  background: var(--gold);
}

.section-title-light {
  color: var(--white);
  text-align: center;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.industry-key-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.industry-key-service-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--transition);
  min-height: 220px;
}

.industry-key-service-card.is-dark {
  background: #161c2d;
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.industry-key-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}

.industry-key-service-card .ks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.industry-key-service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.industry-key-service-card.is-dark h3 {
  color: var(--white);
}

.industry-key-service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
  margin-bottom: 16px;
}

.industry-key-service-card.is-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.industry-key-service-card .ks-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

.industry-key-service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.industry-key-service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* Customer journey */
.industry-journey-section {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.industry-journey-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  color: rgba(11, 17, 32, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.industry-journey-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0 28px;
  position: relative;
  z-index: 1;
}

.industry-journey-card {
  width: 160px;
  height: 160px;
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.industry-journey-card.stage-blue { background: linear-gradient(135deg, #4a90d9, #357abd); }
.industry-journey-card.stage-purple { background: linear-gradient(135deg, #8b6fc0, #6b4fa0); }
.industry-journey-card.stage-gold { background: linear-gradient(135deg, #d4a843, #b8922e); }
.industry-journey-card.stage-rose { background: linear-gradient(135deg, #d4737a, #b85a62); }

.industry-journey-card .journey-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.industry-journey-card .journey-stage {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 4px;
}

.industry-journey-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.industry-journey-card p {
  font-size: 0.75rem;
  opacity: 0.9;
  margin: 0;
}

.journey-arrow {
  font-size: 1.5rem;
  color: var(--muted);
  font-weight: 300;
  padding: 0 4px;
}

.industry-journey-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 10px 20px;
  background: #f5f0e6;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #9a7b2e;
  position: relative;
  z-index: 1;
}

.industry-journey-section .container {
  text-align: center;
}

.journey-cycle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* Future trends */
.industry-future-section {
  padding: 72px 0;
  background: #faf9f6;
}

.industry-future-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.industry-future-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}

.industry-future-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-sm);
}

.industry-future-card .future-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fdf2d0;
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.industry-future-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--light-text);
  margin: 0;
}

.industry-future-card p strong {
  color: var(--navy);
}

/* Dark main content body */
.industry-dark-body {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  padding: 48px 0 72px;
}

.industry-content-block {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-content-block:last-child {
  border-bottom: none;
}

.industry-content-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.industry-block-inner p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.industry-block-inner p:last-child {
  margin-bottom: 0;
}

.industry-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 28px 0 32px;
}

.industry-stat-card {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
}

.industry-stat-val {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 6px;
}

.industry-stat-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.industry-challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.industry-challenge-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}

.industry-challenge-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
}

.industry-challenge-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--font-serif);
}

.industry-challenge-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}

.industry-dark-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.industry-dark-list li {
  position: relative;
  padding: 14px 18px 14px 40px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.industry-dark-list li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--gold);
  font-weight: 700;
}

.industry-faq-dark .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.industry-faq-dark .faq-question {
  color: var(--white);
  background: transparent;
}

.industry-faq-dark .faq-question:hover {
  background: rgba(255, 255, 255, 0.04);
}

.industry-faq-dark .faq-answer-inner {
  color: rgba(255, 255, 255, 0.7);
}

.industry-methodology-modules {
  display: grid;
  gap: 20px;
}

.industry-methodology-module {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
}

.industry-methodology-module h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-serif);
  line-height: 1.4;
}

.industry-methodology-module p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 14px;
}

.industry-dark-links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-dark-links a {
  color: var(--gold);
  font-size: 0.9375rem;
  text-decoration: none;
}

.industry-dark-links a:hover {
  text-decoration: underline;
}

.industry-dark-cta-line {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.industry-dark-cta-line a {
  color: var(--gold);
  font-weight: 600;
}

/* City band */
.industry-city-band {
  background: linear-gradient(135deg, #0d1528 0%, var(--navy) 100%);
  padding: 64px 0;
  text-align: center;
}

.industry-city-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 12px;
}

.industry-city-sub {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  font-size: 1rem;
}

.industry-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  max-width: 900px;
  margin: 0 auto 24px;
}

.industry-city-link {
  display: block;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all var(--transition);
}

.industry-city-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.industry-view-all,
.industry-view-all-dark {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  margin-top: 8px;
}

.industry-view-all-dark {
  color: var(--navy);
}

.industry-view-all-dark:hover,
.industry-view-all:hover {
  text-decoration: underline;
}

/* Explore Our Services — white card grid */
.industry-explore-services-section {
  padding: 72px 0;
}

.industry-seo-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 32px 0 28px;
}

.industry-seo-service-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  min-height: 140px;
}

.industry-seo-service-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.industry-seo-service-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  padding-right: 24px;
}

.industry-seo-service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.industry-seo-service-card .card-arrow {
  position: absolute;
  top: 24px;
  right: 20px;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.industry-seo-service-card:hover .card-arrow {
  opacity: 1;
}

.industry-explore-cta-line {
  text-align: center;
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

.industry-explore-cta-line strong {
  color: var(--navy);
}

.industry-explore-cta-line a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.industry-explore-cta-line a:hover {
  text-decoration: underline;
}

.industry-explore-cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
  padding: 56px 0;
  margin-top: 48px;
  border-top: 3px solid var(--gold);
}

.industry-explore-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.explore-cta-copy {
  flex: 1;
  min-width: 280px;
  max-width: 620px;
}

.explore-cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
}

.explore-cta-copy h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 12px;
  font-weight: 600;
}

.explore-cta-copy h3 strong {
  color: var(--gold);
  font-weight: 700;
}

.explore-cta-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.975rem;
  line-height: 1.7;
  margin: 0;
}

.explore-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.explore-cta-actions .btn-gold-lg {
  white-space: nowrap;
}

.explore-cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.explore-cta-phone .phone-icon {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .industry-explore-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .explore-cta-copy {
    max-width: 100%;
  }

  .explore-cta-actions {
    width: 100%;
  }

  .explore-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Tools grid */
.industry-tools-section,
.industry-guides-section {
  padding: 72px 0;
}

.industry-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0 16px;
}

.industry-tool-card {
  display: block;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

.industry-tool-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.industry-tool-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.industry-tool-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.industry-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin: 32px 0 16px;
}

.industry-guide-link {
  display: block;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}

.industry-guide-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Mid-page CTAs */
.industry-mid-cta {
  background: #f5f0e6;
  padding: 56px 0;
  text-align: center;
}

.industry-mid-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--navy);
  margin-bottom: 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.industry-mid-cta p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 1rem;
}

/* Related industries */
.industry-related-section {
  padding: 72px 0;
}

.industry-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.industry-related-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  box-shadow: 0 1px 4px rgba(11, 17, 32, 0.04);
}

.industry-related-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.industry-related-card .rel-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
  line-height: 1;
}

.industry-related-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.industry-related-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
}

.industry-related-card .rel-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

/* Author */
.industry-author-section {
  padding: 64px 0;
}

.industry-author-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 900px;
}

.industry-author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a2744);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-serif);
  border: 3px solid rgba(212, 175, 55, 0.3);
}

.industry-author-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.industry-author-info h2 {
  font-size: 1.75rem;
  margin-bottom: 4px;
}

.industry-author-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.industry-author-info > p {
  color: var(--light-text);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.9375rem;
}

.industry-author-credentials {
  background: #f5f0e6;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}

.industry-author-credentials h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.industry-author-credentials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-author-credentials li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 0.875rem;
  color: var(--light-text);
}

.industry-author-credentials li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.industry-author-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

/* Explore more */
.industry-explore-more {
  padding: 64px 0;
}

.industry-explore-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 32px;
}

.industry-explore-cols h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.industry-explore-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-explore-cols li {
  margin-bottom: 8px;
}

.industry-explore-cols a {
  color: var(--navy);
  font-size: 0.9rem;
  text-decoration: none;
}

.industry-explore-cols a:hover {
  color: var(--gold);
}

.industry-final-cta h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.industry-final-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .industry-detail-hero { text-align: center; }
  .industry-detail-hero .breadcrumb { justify-content: center; }
  .industry-detail-hero h1,
  .industry-detail-hero p { text-align: center; margin-left: auto; margin-right: auto; }
  .industry-key-services-grid { grid-template-columns: 1fr; }
  .industry-key-service-card,
  .industry-key-service-card:nth-child(4),
  .industry-key-service-card:nth-child(5) { grid-column: span 1; }
  .industry-future-grid { grid-template-columns: 1fr; }
  .industry-journey-track { flex-direction: column; }
  .journey-arrow { transform: rotate(90deg); }
  .industry-compare-table tbody th { width: auto; }
  .industry-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-challenges-grid { grid-template-columns: 1fr; }
  .industry-author-card { grid-template-columns: 1fr; text-align: center; }
  .industry-author-photo { margin: 0 auto; }
}

@media (max-width: 480px) {
  .industry-stats-grid { grid-template-columns: 1fr; }
  .industry-city-grid { grid-template-columns: 1fr; }
}

/* Industry page — top sections (trust, intro, services, process) */
.industry-trust-bar {
  background: linear-gradient(180deg, #f8f9fb 0%, #f0f2f5 100%);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.industry-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.industry-trust-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.industry-trust-accent {
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.industry-trust-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin: 0;
}

.industry-trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.industry-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 1px 3px rgba(11, 17, 32, 0.04);
}

.industry-trust-chip:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
  color: var(--navy);
}

.industry-trust-chip .chip-icon {
  font-size: 1rem;
  line-height: 1;
}

.industry-trust-chip .chip-label {
  white-space: nowrap;
}

.industry-intro-block {
  padding: 72px 0;
}

.industry-intro-prose {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.industry-intro-prose p {
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.industry-intro-callout {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 28px;
  background: #f5f0e6;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  text-align: center;
}

.industry-intro-callout p {
  color: var(--light-text);
  line-height: 1.75;
  margin: 0;
  font-size: 1rem;
}

.industry-services-block {
  padding: 72px 0;
}

.industry-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.industry-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.industry-service-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-sm);
}

.industry-service-card .svc-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
}

.industry-service-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.industry-service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.industry-cta-band-dark {
  background: var(--navy);
  padding: 56px 0;
}

.industry-cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.industry-cta-band-inner .cta-band-text h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 8px;
}

.industry-cta-band-inner .cta-band-text p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 520px;
}

.industry-process-block {
  padding: 72px 0;
}

.industry-process-steps {
  display: grid;
  gap: 24px;
  margin-top: 8px;
  max-width: 900px;
}

.industry-process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.industry-process-step .step-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.industry-process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.industry-process-step p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.industry-benefits-block {
  padding: 72px 0;
}

.industry-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.industry-benefit-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.industry-benefit-card .ben-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.industry-benefit-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.industry-benefit-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.industry-results-block {
  padding: 72px 0;
}

.industry-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.industry-result-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.industry-result-card .result-val {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
}

.industry-result-card .result-lbl {
  font-size: 0.875rem;
  color: var(--muted);
}

.industry-faq-light {
  padding: 72px 0;
}

.industry-faq-light .section-title {
  text-align: left;
}

.faq-count-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #f5f0e6;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #9a7b2e;
  margin-bottom: 28px;
}

.faq-category-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.faq-category-title:first-of-type {
  margin-top: 0;
}

.industry-faq-light-inner .faq-item {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .industry-cta-band-inner { flex-direction: column; text-align: center; }
  .industry-cta-band-inner .cta-band-text p { margin: 0 auto; }
  .industry-process-step { flex-direction: column; gap: 12px; }
}

/* ==========================================================================
   Site Search, Back to Top, New Pages
   ========================================================================== */
.site-search-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  margin-right: 12px;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.site-search-toggle:hover { background: rgba(212,175,55,0.15); border-color: var(--gold); }

.header-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.header-inner .site-search-toggle { margin-left: auto; }
@media (min-width: 992px) {
  .header-inner .site-search-toggle { margin-left: 0; order: 0; }
  .header-inner .main-nav { flex: 1; }
  .header-inner .header-cta { margin-left: 0; }
}

.site-search-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15,23,42,0.75);
  backdrop-filter: blur(4px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 80px 24px 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.site-search-overlay.is-open { opacity: 1; visibility: visible; }
.site-search-panel {
  background: var(--white); border-radius: 12px;
  width: 100%; max-width: 560px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  overflow: hidden;
}
.site-search-header {
  display: flex; align-items: center; gap: 8px;
  padding: 16px; border-bottom: 1px solid var(--border);
}
.site-search-input {
  flex: 1; border: none; font-size: 1.05rem;
  font-family: var(--font-sans); outline: none;
}
.site-search-close {
  background: none; border: none; font-size: 1.75rem;
  line-height: 1; cursor: pointer; color: var(--muted); padding: 4px 8px;
}
.site-search-results { max-height: 360px; overflow-y: auto; }
.site-search-result {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  color: var(--navy) !important; text-decoration: none;
}
.site-search-result:hover { background: var(--light-bg); color: var(--gold) !important; }
.site-search-result-name { font-weight: 600; }
.site-search-result-cat { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.site-search-empty, .site-search-hint {
  padding: 16px 20px; font-size: 0.875rem; color: var(--muted); margin: 0;
}

.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  border: none; cursor: pointer; font-size: 1.25rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(212,175,55,0.45);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-hover); }

/* Sub-page hero (Sitemap, Contact) */
.sub-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a2d4a 100%);
  color: var(--text-on-dark);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.sub-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201, 162, 39, 0.12), transparent 60%);
  pointer-events: none;
}
.sub-page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.sub-page-breadcrumb { margin-bottom: 20px; }
.sub-page-breadcrumb a { color: rgba(255,255,255,0.75); }
.sub-page-breadcrumb a:hover { color: var(--gold); }
.sub-page-breadcrumb span[itemprop="name"] { color: var(--gold); }
.bc-sep { color: rgba(255,255,255,0.35); margin: 0 8px; }
.sub-page-eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem;
  font-weight: 700; color: var(--gold); margin-bottom: 12px;
}
.sub-page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem); color: var(--white);
  line-height: 1.15; margin-bottom: 16px;
}
.sub-page-desc { font-size: 1.1rem; color: rgba(255,255,255,0.82); line-height: 1.6; max-width: 640px; }
.sub-page-breadcrumb-bar {
  background: var(--navy); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sub-page-breadcrumb-bar .breadcrumb a { color: rgba(255,255,255,0.7); }
.sub-page-breadcrumb-bar .breadcrumb a:hover { color: var(--gold); }
.sub-page-breadcrumb-bar .breadcrumb span[itemprop="name"] { color: var(--gold); }

/* HTML Sitemap */
.html-sitemap-section { padding-top: 48px; padding-bottom: 64px; }
.sitemap-stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px;
}
@media (max-width: 700px) { .sitemap-stats-bar { grid-template-columns: repeat(2, 1fr); } }
.sitemap-stat {
  text-align: center; padding: 20px 16px;
  background: var(--light-bg); border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
}
.sitemap-stat-num {
  display: block; font-size: 1.75rem; font-weight: 800; color: var(--navy);
  font-family: var(--font-serif, Georgia, serif);
}
.sitemap-stat-label { font-size: 0.8125rem; color: var(--muted); font-weight: 600; }
.sitemap-toolbar {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  justify-content: space-between; margin-bottom: 12px;
}
.sitemap-search-wrap {
  flex: 1; min-width: 220px; max-width: 420px; position: relative; display: flex; align-items: center;
}
.sitemap-search-icon {
  position: absolute; left: 14px; font-size: 1rem; pointer-events: none; opacity: 0.5;
}
.sitemap-filter-input {
  width: 100%; padding: 12px 14px 12px 42px; border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.12); font-size: 1rem; font-family: var(--font-sans);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
}
.sitemap-filter-input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}
.sitemap-jump-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.sitemap-jump-btn {
  padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(0,0,0,0.12);
  background: var(--white); font-size: 0.875rem; font-weight: 600; color: var(--navy);
  cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.sitemap-jump-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.sitemap-xml-link { margin-bottom: 28px; color: var(--muted); font-size: 0.9375rem; }
.sitemap-xml-link a { font-weight: 600; }
.html-sitemap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 1024px) { .html-sitemap-grid { grid-template-columns: 1fr; } }
.sitemap-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px; padding: 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
}
.sitemap-col-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 2px solid var(--gold);
}
.sitemap-col-icon { font-size: 1.5rem; line-height: 1; }
.sitemap-card h2 { font-size: 1.125rem; margin: 0; }
.sitemap-count {
  font-size: 0.7rem; background: var(--light-bg); padding: 3px 10px;
  border-radius: 999px; font-weight: 700; color: var(--muted); margin-left: 6px; vertical-align: middle;
}
.sitemap-link-list { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.sitemap-link-list-scroll { max-height: 480px; overflow-y: auto; padding-right: 4px; }
.sitemap-link-list-scroll::-webkit-scrollbar { width: 5px; }
.sitemap-link-list-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }
.sitemap-link-card {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 14px; border-radius: 8px; color: var(--navy); font-weight: 500;
  font-size: 0.9375rem; transition: background 0.15s, color 0.15s;
  border: 1px solid transparent;
}
.sitemap-link-card:hover {
  background: var(--light-bg); color: var(--gold); border-color: rgba(201,162,39,0.25);
}
.sitemap-link-card.is-hidden { display: none !important; }
.slc-text { flex: 1; line-height: 1.35; }
.slc-arrow { opacity: 0; transform: translateX(-4px); transition: opacity 0.15s, transform 0.15s; color: var(--gold); font-weight: 700; }
.sitemap-link-card:hover .slc-arrow { opacity: 1; transform: translateX(0); }
.sitemap-hub-link { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.06); font-weight: 600; }
.html-sitemap-cta { margin-top: 48px; }
.html-sitemap-cta-inner {
  text-align: center; padding: 40px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px; color: var(--text-on-dark);
}
.html-sitemap-cta-inner h2 { color: var(--white); margin-bottom: 12px; font-size: 1.5rem; }
.html-sitemap-cta-inner p { color: rgba(255,255,255,0.8); margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }
.html-sitemap-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Contact Page — Enterprise layout */
.contact-page-section { padding-top: 40px; padding-bottom: 72px; }

.contact-enterprise-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.85fr);
  gap: 40px;
  align-items: start;
}

@media (max-width: 1024px) {
  .contact-enterprise-layout { grid-template-columns: 1fr; }
}

.contact-enterprise-form-wrap {
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

@media (max-width: 540px) {
  .contact-enterprise-form-wrap { padding: 24px 18px; }
}

.contact-enterprise-form.lead-form {
  background: transparent;
  border: none;
  padding: 0;
}

.contact-enterprise-form .form-group { margin-bottom: 18px; }

.contact-enterprise-form label,
.contact-enterprise-form .cf-services-head label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-enterprise-form input,
.contact-enterprise-form select,
.contact-enterprise-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-enterprise-form input:focus,
.contact-enterprise-form select:focus,
.contact-enterprise-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.contact-enterprise-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-enterprise-form input[readonly] {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-weight: 600;
  cursor: default;
}

.cf-services-block { margin-top: 4px; }

.cf-services-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.cf-services-head label { margin-bottom: 0; }

.cf-services-hint {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8125rem;
}

.cf-select-all {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  font-family: var(--font-sans);
}

.cf-select-all:hover { color: var(--gold-hover); }

.cf-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

@media (max-width: 640px) {
  .cf-services-grid { grid-template-columns: 1fr; }
}

.cf-service-group-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.cf-check-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  margin-bottom: 6px;
  font-weight: 400;
}

.cf-check-label input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.cf-services-error {
  color: #b91c1c;
  font-size: 0.8125rem;
  margin-top: 8px;
}

.cf-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 1rem;
  padding: 14px 24px;
}

.cf-privacy-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin-top: 14px;
}

.contact-form-success-light {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9375rem;
}

.contact-enterprise-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: calc(var(--utility-h) + var(--header-h) + 16px);
}

@media (max-width: 1024px) {
  .contact-enterprise-sidebar { position: static; }
}

.cf-sidebar-card {
  border-radius: 10px;
  padding: 22px 20px;
}

.cf-sidebar-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.cf-sidebar-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 0;
}

.cf-sidebar-card-navy {
  background: var(--navy);
  color: var(--text-on-dark);
}

.cf-sidebar-card-navy h3 { color: var(--gold); }

.cf-sidebar-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cf-sidebar-checklist li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
}

.cf-sidebar-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.cf-sidebar-card-cream {
  background: #faf6ee;
  border: 1px solid #e8dfc8;
}

.cf-sidebar-email {
  margin-top: 12px !important;
}

.cf-sidebar-email a {
  color: var(--navy);
  font-weight: 600;
}

.cf-sidebar-card-muted {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.cf-sidebar-icon {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

/* Legacy contact page (kept for other references) */
.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start;
}
.contact-page-section-title {
  grid-column: 1 / -1;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
  text-align: center;
}
.contact-info-block h3,
.contact-form-card-head h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
@media (max-width: 960px) { .contact-page-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-trust-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.contact-pill {
  font-size: 0.8125rem; font-weight: 600; padding: 6px 14px;
  background: rgba(201,162,39,0.12); color: var(--navy); border-radius: 999px;
  border: 1px solid rgba(201,162,39,0.3);
}
.contact-lead { font-size: 1.0625rem; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.contact-detail-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-detail-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; background: var(--light-bg); border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06); transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-detail-card-link { text-decoration: none; color: inherit; }
.contact-detail-card-link:hover {
  border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,162,39,0.12);
}
.contact-detail-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-card strong { display: block; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 4px; }
.contact-detail-value { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-info-block { margin-bottom: 24px; }
.contact-info-block h2 { font-size: 1.125rem; margin-bottom: 12px; }
.contact-benefits-list { list-style: none; padding: 0; }
.contact-benefits-list li {
  padding: 10px 0 10px 28px; position: relative; color: var(--muted);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-benefits-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}
.contact-trust { font-size: 0.9375rem; color: var(--muted); }
.contact-form-card {
  background: var(--navy); color: var(--text-on-dark);
  padding: 36px 32px; border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  position: sticky; top: 100px;
}
@media (max-width: 960px) { .contact-form-card { position: static; } }
.contact-form-card-head { margin-bottom: 24px; }
.contact-form-card h2 { color: var(--white); margin-bottom: 8px; font-size: 1.35rem; }
.contact-form-card-head p { color: rgba(255,255,255,0.75); font-size: 0.9375rem; }
.contact-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 540px) { .contact-form-row { grid-template-columns: 1fr; } }
.contact-page-form .form-group { margin-bottom: 16px; }
.contact-page-form label {
  display: block; font-size: 0.8125rem; font-weight: 600;
  margin-bottom: 6px; color: rgba(255,255,255,0.9);
}
.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%; padding: 12px 14px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.07);
  color: var(--white); font-family: var(--font-sans); font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1);
}
.contact-page-form select option { color: var(--navy); background: var(--white); }
.contact-page-form textarea { resize: vertical; min-height: 110px; }
.contact-page-form .btn-block { width: 100%; justify-content: center; margin-top: 4px; }
.form-privacy-note { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 14px; text-align: center; }

/* Author Page */
.author-hero-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #152238 50%, var(--navy-mid) 100%);
  color: var(--text-on-dark); padding: 0 0 56px;
}
.author-hero-inner {
  display: flex; gap: 40px; align-items: center; flex-wrap: wrap; padding-top: 8px;
}
.author-hero-photo {
  width: 160px; height: 160px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover;
  border: 4px solid var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.author-hero-content { flex: 1; min-width: 280px; }
.author-eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem;
  font-weight: 700; color: var(--gold); margin-bottom: 8px;
}
.author-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem); color: var(--white); margin-bottom: 12px; line-height: 1.1;
}
.author-tagline { font-size: 1.0625rem; color: rgba(255,255,255,0.82); max-width: 600px; line-height: 1.6; margin-bottom: 24px; }
.author-hero-stats {
  display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 24px;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.author-hero-stat { text-align: center; min-width: 80px; }
.ahs-num { display: block; font-size: 1.75rem; font-weight: 800; color: var(--gold); }
.ahs-label { font-size: 0.75rem; color: rgba(255,255,255,0.65); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.author-profile-social { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .author-profile-social .btn { flex: 1 1 calc(50% - 5px); justify-content: center; min-width: 120px; }
}
.author-page-section { padding-top: 48px; padding-bottom: 64px; }
.author-content-grid {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start;
}
@media (max-width: 960px) { .author-content-grid { grid-template-columns: 1fr; } }
.author-bio-prose h2 { margin: 36px 0 14px; font-size: 1.35rem; }
.author-bio-prose h2:first-of-type { margin-top: 0; }
.author-quote-block {
  margin: 0 0 36px; padding: 28px 32px;
  background: var(--light-bg); border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
}
.author-quote-block p {
  font-size: 1.125rem; font-style: italic; color: var(--navy); line-height: 1.6; margin-bottom: 12px;
}
.author-quote-block cite { font-size: 0.875rem; font-weight: 700; color: var(--gold); font-style: normal; }
.author-expertise-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px;
}
@media (max-width: 600px) { .author-expertise-grid { grid-template-columns: 1fr; } }
.author-expertise-card {
  padding: 20px; background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px; transition: border-color 0.2s, box-shadow 0.2s;
}
.author-expertise-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,162,39,0.1); }
.author-exp-icon { font-size: 1.5rem; display: block; margin-bottom: 10px; }
.author-expertise-card h3 { font-size: 1rem; margin-bottom: 6px; }
.author-expertise-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.5; margin: 0; }
.author-badges-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.author-cta-row { margin-top: 28px; }
.author-sidebar { position: sticky; top: 100px; }
@media (max-width: 960px) { .author-sidebar { position: static; } }
.author-sidebar-card {
  background: var(--light-bg); padding: 24px; border-radius: 12px;
  margin-bottom: 16px; border: 1px solid rgba(0,0,0,0.06);
}
.author-sidebar-card-highlight {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--text-on-dark); border: none;
}
.author-sidebar-card-highlight h3 { color: var(--white); }
.author-sidebar-card-highlight p { color: rgba(255,255,255,0.75); font-size: 0.9375rem; margin-bottom: 16px; }
.author-sidebar-card h3 { font-size: 1rem; margin-bottom: 12px; }
.author-links-list { list-style: none; padding: 0; }
.author-links-list li { margin-bottom: 8px; }
.author-links-list a {
  font-weight: 600; color: var(--navy); display: flex; align-items: center;
  padding: 6px 0; transition: color 0.15s;
}
.author-links-list a::before { content: '→'; margin-right: 8px; color: var(--gold); font-size: 0.875rem; }
.author-links-list a:hover { color: var(--gold); }
.btn-block { display: flex; width: 100%; }

/* ── Location Pages ── */
.location-intro-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}
.location-intro-right p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.location-benefits-box {
  background: var(--navy);
  color: var(--text-on-dark);
  border-radius: 12px;
  padding: 32px 40px;
  margin-top: 8px;
}
.location-benefits-box h3 {
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: 20px;
}
.location-benefits-box .check-list li {
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}
.location-process-section {
  background: var(--navy);
  color: var(--text-on-dark);
}
.location-process-section .section-title,
.location-process-section .section-subtitle {
  color: var(--white);
}
.location-process-section .section-subtitle { color: rgba(255,255,255,0.7); }
.location-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-process-grid .industry-process-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 24px;
}
.location-process-grid .step-num { color: var(--gold); }
.location-process-grid h3 { color: var(--white); }
.location-process-grid p { color: rgba(255,255,255,0.75); }
.location-industries-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.location-industries-left p {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 16px;
}
.location-industries-left a { color: var(--gold); font-weight: 600; }
.location-services-grid { grid-template-columns: repeat(2, 1fr); }
.location-pricing-section .section-title,
.location-pricing-section .section-subtitle {
  color: var(--navy);
}
.location-pricing-section .section-subtitle { color: var(--text-muted); }
.final-cta-sub {
  color: rgba(255,255,255,0.75);
  margin: 12px 0 24px;
  font-size: 1.05rem;
}
.location-hub-hero { text-align: center; }
.location-hub-hero h1 { max-width: 800px; margin: 0 auto 16px; }
.location-hub-hero .industry-hero-desc { max-width: 600px; margin: 0 auto; font-size: 1.25rem; }
.location-country-head {
  text-align: center;
  margin-bottom: 48px;
}
.location-country-flag { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.location-country-head h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.location-country-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.location-hub-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.location-hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location-hub-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.1);
}
.location-hub-code {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  align-self: flex-start;
}
.location-hub-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 4px 0;
}
.location-hub-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
}
.location-hub-arrow {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 8px;
}
.location-hub-grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) {
  .location-hub-grid-main { grid-template-columns: repeat(2, 1fr); }
  .location-hub-grid { grid-template-columns: repeat(3, 1fr); }
  .location-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .location-intro-split,
  .location-industries-split,
  .location-why-choose-grid { grid-template-columns: 1fr; gap: 24px; }
  .location-hub-grid-main,
  .location-services-grid,
  .location-process-grid,
  .location-hub-grid { grid-template-columns: 1fr; }
  .location-benefits-box { padding: 24px; }
  .location-city-hero h1 { font-size: 1.75rem; line-height: 1.25; }
  .location-trust-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .location-industry-grid { grid-template-columns: repeat(2, 1fr); }
  .location-services-full .core-services-grid { grid-template-columns: 1fr; }
  .location-process-light .location-process-grid-light { grid-template-columns: 1fr; }
  .location-services-dark .loc-dark-svc-grid { grid-template-columns: 1fr; }
  .location-industries-centered .location-industry-grid-proper { grid-template-columns: repeat(2, 1fr); }
  .location-founder-photo { max-width: 200px; margin: 0 auto; }
  .location-why-choose-photo { text-align: center; }
  .hero-phone-link { display: block; margin-top: 12px; text-align: center; }
}

/* Location page — screenshot layout */
.location-city-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 900px;
}
.hero-phone-link {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
.hero-phone-link:hover { text-decoration: underline; }
.location-trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.location-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.location-trust-inner .trust-stat .num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
}
.location-trust-inner .trust-stat .lbl {
  font-size: 0.8125rem;
  color: var(--muted);
}
.location-why-choose-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.location-founder-photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  font-size: 3rem;
}
.location-why-choose-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.location-why-list { margin: 20px 0 28px; }
.location-why-list a { color: var(--gold); font-weight: 600; }
.location-industries-dark {
  background: var(--navy);
  color: var(--text-on-dark);
}
.location-industries-dark .section-title { color: var(--white); }
.location-industries-dark .section-subtitle { color: rgba(255,255,255,0.7); }
.location-industries-dark .location-industry-grid .industry-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.location-industries-dark .location-industry-grid .industry-card:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.location-industries-dark .location-industry-grid .industry-card span { color: var(--white); }
.location-key-market-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.location-key-market-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
.location-key-market-list li {
  padding-left: 24px;
  position: relative;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}
.location-key-market-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.location-pro-tip {
  background: linear-gradient(135deg, #fef9e7, #fdf6e3);
  border: 1px solid #e8d48b;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 32px;
}
.location-pro-tip-label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 0.9375rem;
}
.location-pro-tip p {
  color: var(--navy);
  margin: 0;
  line-height: 1.7;
}
.location-services-full .core-services-grid {
  grid-template-columns: repeat(3, 1fr);
}
.location-final-cta h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}
@media (max-width: 1100px) {
  .location-services-full .core-services-grid { grid-template-columns: repeat(2, 1fr); }
  .location-key-market-list { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .location-trust-inner { grid-template-columns: 1fr 1fr; }
  .location-industry-grid { grid-template-columns: 1fr 1fr; }
}

/* Location page — Houston-style layout */
.location-hero-city { color: var(--gold); }
.location-value-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.location-value-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.location-value-text a { color: var(--gold); font-weight: 600; }
.location-value-aside { display: flex; flex-direction: column; gap: 20px; }
.location-quick-fact {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 24px;
  border-radius: 8px;
}
.location-quick-fact-label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.location-quick-fact p { margin: 0; color: var(--text-muted); line-height: 1.65; }
.location-stat-box {
  background: var(--navy);
  color: var(--white);
  padding: 28px;
  border-radius: 8px;
}
.location-stat-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.location-stat-row:last-child { border-bottom: none; }
.location-stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 72px;
}
.location-stat-lbl { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.location-mid-cta { margin: 0; }
.location-services-dark {
  background: var(--navy);
  color: var(--white);
}
.location-services-dark .section-title { color: var(--white); }
.location-services-dark .section-subtitle { color: rgba(255,255,255,0.75); }
.location-services-dark .section-subtitle a { color: var(--gold); }
.loc-dark-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.loc-dark-svc-card {
  display: block;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.loc-dark-svc-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.loc-dark-svc-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin: 12px 0 8px;
}
.loc-dark-svc-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 12px;
}
.loc-svc-icon { font-size: 1.5rem; }
.loc-svc-link { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.location-industries-light .industry-grid { margin-top: 28px; }
.location-industries-light .section-subtitle a { color: var(--gold); font-weight: 600; }
.location-industries-section {
  background: var(--section-light, #f4f6f9);
}
.location-industries-centered {
  text-align: center;
}
.location-industries-centered .section-accent-line {
  margin-left: auto;
  margin-right: auto;
}
.location-industries-centered .section-title,
.location-industries-centered .section-subtitle {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.location-industry-grid-proper {
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 32px auto 0;
  text-align: center;
}
.location-industry-grid-proper .industry-card {
  padding: 20px 10px;
}
.location-industry-grid-proper .industry-card span {
  color: var(--navy);
  font-weight: 600;
}
.location-faq-intro-content {
  max-width: 900px;
  margin: 0 auto;
}
.location-faq-intro-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.location-faq-intro-content a {
  color: var(--gold);
  font-weight: 600;
}
.location-key-market-dark {
  background: var(--navy);
  color: var(--white);
}
.location-key-market-dark .section-title { color: var(--white); }
.location-key-market-lead {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 900px;
  margin-bottom: 28px;
}
.location-key-market-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.location-key-market-block:last-of-type { border-bottom: none; }
.location-key-market-block h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.location-key-market-block p {
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin: 0;
}
.location-key-market-block a { color: var(--gold); font-weight: 600; }
.location-key-market-list-dark { margin-top: 24px; }
.location-key-market-list-dark li { color: rgba(255,255,255,0.85); }
.location-key-market-list-dark li::before { color: var(--gold); }
.location-pro-tip-dark {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--gold);
  margin-top: 28px;
}
.location-pro-tip-dark .location-pro-tip-label { color: var(--gold); }
.location-pro-tip-dark p { color: rgba(255,255,255,0.85); }
.location-process-light .location-process-grid-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
  max-width: 100%;
}
.location-process-grid-light .industry-process-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: var(--off-white, #f8f6f2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.location-process-grid-light .industry-process-step .step-num {
  color: var(--gold);
  font-size: 1.5rem;
  min-width: 36px;
}
.location-process-grid-light .industry-process-step h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.location-process-grid-light .industry-process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.location-process-grid-light .step-num { color: var(--gold); }
.location-lead-cta { padding: 64px 0; }
.location-lead-links { margin-top: 16px; font-size: 0.9rem; }
.location-lead-links a { color: var(--gold) !important; }
.location-lead-form .form-group input[readonly] {
  opacity: 0.85;
  background: rgba(255,255,255,0.08);
}
@media (max-width: 992px) {
  .location-value-grid { grid-template-columns: 1fr; }
  .location-services-dark .loc-dark-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .location-process-light .location-process-grid-light { grid-template-columns: repeat(2, 1fr); }
  .location-industries-centered .location-industry-grid-proper { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .location-process-light .location-process-grid-light {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .location-process-grid-light .industry-process-step {
    padding: 20px 18px;
  }
  .location-services-dark .loc-dark-svc-grid { grid-template-columns: 1fr; }
  .location-industries-centered .location-industry-grid-proper { grid-template-columns: repeat(3, 1fr); }
  .location-key-market-list { grid-template-columns: 1fr; }
  .location-mid-cta .why-callout-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .location-lead-cta .lead-split-grid { grid-template-columns: 1fr; }
  .location-faq-intro-content { padding: 0 4px; }
}
@media (max-width: 480px) {
  .location-services-dark .loc-dark-svc-grid { grid-template-columns: 1fr; }
  .location-industries-centered .location-industry-grid-proper { grid-template-columns: repeat(2, 1fr); }
  .location-process-grid-light .industry-process-step {
    padding: 18px 16px;
    gap: 14px;
  }
  .location-process-grid-light .industry-process-step .step-num {
    font-size: 1.35rem;
    min-width: 32px;
  }
  .location-process-grid-light .industry-process-step h3 { font-size: 1rem; }
  .location-process-grid-light .industry-process-step p { font-size: 0.875rem; }
}

/* WhatsApp + social */
.utility-bar .utility-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  border-radius: 50%;
  background: #25D366;
  color: #fff !important;
  vertical-align: middle;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.utility-bar .utility-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.utility-bar .wa-icon {
  width: 16px;
  height: 16px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25D366;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-float-label {
  white-space: nowrap;
}

.about-leader-social .instagram,
.footer-social-row .instagram { background: rgba(225, 48, 108, 0.1); border: 1px solid rgba(225, 48, 108, 0.2); color: #E1306C !important; }
.about-leader-social .pinterest,
.footer-social-row .pinterest { background: rgba(189, 8, 28, 0.1); border: 1px solid rgba(189, 8, 28, 0.2); color: #BD081C !important; }
.about-leader-social .reddit,
.footer-social-row .reddit { background: rgba(255, 69, 0, 0.1); border: 1px solid rgba(255, 69, 0, 0.2); color: #FF4500 !important; }
.about-leader-social .quora,
.footer-social-row .quora { background: rgba(185, 43, 39, 0.1); border: 1px solid rgba(185, 43, 39, 0.2); color: #B92B27 !important; }

.footer-social-row a.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.footer-social-row a.footer-social-icon:hover {
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 76px;
    padding: 12px;
  }

  .whatsapp-float-label {
    display: none;
  }
}

.service-trust-note {
  margin-top: 20px;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 77, 0.06);
  color: var(--muted);
  font-size: 0.95rem;
}

.location-seo-gaps-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.location-seo-gaps-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.location-seo-gaps-list li {
  color: var(--text);
  line-height: 1.6;
}

.location-seo-gaps-aside {
  padding: 24px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--text-on-dark);
}

.location-seo-gaps-aside h3 {
  color: var(--gold);
  margin-bottom: 12px;
}

.location-sme-prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .location-seo-gaps-grid {
    grid-template-columns: 1fr;
  }
}

/* Location outcome / ROI / forecast sections */
.location-outcome-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.loc-outcome-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-muted, #475569);
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.loc-outcome-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0 2rem;
}

.loc-outcome-block h3 {
  font-size: 1.1rem;
  margin: 0 0 1rem;
  color: var(--navy, #1e293b);
}

.loc-outcome-outcomes li::before {
  color: var(--gold, #c9a227);
}

.loc-outcome-alert-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.loc-outcome-alert-list li {
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  background: #fef2f2;
  border-left: 4px solid #dc2626;
  border-radius: 0 8px 8px 0;
  position: relative;
  line-height: 1.55;
}

.loc-outcome-alert-list li::before {
  content: '⚠';
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
}

.loc-outcome-callout {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.loc-outcome-kw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}

.loc-outcome-research-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.25rem;
  margin: 1.25rem 0;
}

.loc-outcome-research-box h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.loc-outcome-research-steps {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.loc-outcome-research-steps li {
  line-height: 1.6;
  color: #334155;
}

.loc-outcome-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.loc-outcome-guide-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--gold, #c9a227);
}

.loc-outcome-guide-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: #1e293b;
}

.loc-outcome-guide-card p {
  margin: 0;
  line-height: 1.65;
  color: #475569;
  font-size: 0.975rem;
}

@media (max-width: 768px) {
  .loc-outcome-guide-grid {
    grid-template-columns: 1fr;
  }
}

.loc-outcome-kw-tag {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  background: #1e293b;
  color: #fff;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.loc-outcome-note {
  font-size: 1rem;
  line-height: 1.65;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-radius: 10px;
  border: 1px solid #fde68a;
  margin-bottom: 1.5rem;
}

.loc-outcome-market h3 {
  margin-top: 1.5rem;
}

.location-outcome-forecast-section {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 56px 0;
}

.location-outcome-forecast-section .section-title,
.location-outcome-forecast-section .section-subtitle {
  color: #fff;
}

.location-outcome-forecast-section .section-subtitle {
  opacity: 0.85;
}

.loc-outcome-forecast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.loc-forecast-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.5rem;
}

.loc-forecast-card-highlight {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold, #c9a227);
}

.loc-forecast-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.loc-forecast-value {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold, #c9a227);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.loc-forecast-unit {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.85;
}

.loc-outcome-competitor-roi {
  margin: 1.5rem auto 0;
  max-width: 820px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.loc-outcome-competitor-roi-light {
  color: #475569;
  background: #f8fafc;
  border-color: #e2e8f0;
  text-align: left;
  max-width: none;
  margin-top: 1.5rem;
}

.loc-outcome-competitor-roi-light strong {
  color: #1e293b;
}

.loc-forecast-desc {
  font-size: 0.925rem;
  line-height: 1.55;
  opacity: 0.88;
  margin: 0;
}

.loc-outcome-roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.loc-roi-stat {
  text-align: center;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.loc-roi-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold, #c9a227);
  font-family: Georgia, 'Times New Roman', serif;
}

.loc-roi-lbl {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.35rem;
}

.loc-outcome-roi-detail p {
  line-height: 1.7;
  margin: 0;
}

.location-outcome-risks .loc-outcome-risks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.loc-outcome-block-wide {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .loc-outcome-two-col,
  .loc-outcome-forecast-grid,
  .loc-outcome-roi-grid,
  .location-outcome-risks .loc-outcome-risks-grid {
    grid-template-columns: 1fr;
  }
}

/* Below-fold sections: skip paint until near viewport */
.core-services-section,
.why-seo-section,
.why-callout,
.content-section-alt,
.lead-split,
.stat-banner,
#faq,
#faq-list,
.trust-leaders-section,
.homepage-founder-section,
.final-cta-dark,
.site-footer,
.section:not(.hero):not(.sub-page-breadcrumb-bar) {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* FAQs hub page */
.faq-hub-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.faq-hub-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.faq-hub-pill:hover {
  border-color: var(--gold);
  background: #fdfaf3;
  color: var(--gold);
}

.faq-hub-service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.faq-hub-subgrid-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 8px;
}

.faq-hub-service-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
}

.faq-hub-service-link:hover {
  color: var(--gold);
}

.faq-hub-section {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.faq-hub-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-hub-section-title {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.faq-hub-section-title a {
  color: var(--navy);
}

.faq-hub-section-title a:hover {
  color: var(--gold);
}

.faq-hub-section-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}

.faq-hub-learn-more {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 720px;
}

.industry-hero-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.industry-hero-layout .industry-hero-copy {
  flex: 1 1 320px;
}

.industry-hero-visual {
  flex: 0 0 auto;
}

.industry-hero-img,
.industry-icon-img,
.card-icon-img {
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

.card-icon-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.services-mega-icon img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: contain;
}

.industry-competition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.industry-competition-stat {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.comp-stat-val {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold, #C9A227);
  margin-bottom: 8px;
}

.comp-stat-lbl {
  display: block;
  font-size: 0.875rem;
  color: var(--muted, #64748b);
  line-height: 1.5;
}

.industry-competition-body {
  max-width: 820px;
  margin: 0 auto 32px;
}

.industry-competition-body p {
  margin: 16px 0;
  line-height: 1.75;
  color: #334155;
}

.industry-competition-cta {
  text-align: center;
}

.industry-founder-section .about-leader-grid {
  margin-top: 24px;
}

/* ==========================================================================
   Homepage Interactive Visual Design
   ========================================================================== */
.page-home .sub-page-breadcrumb-bar { display: none; }

.hero-interactive {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: heroOrbFloat 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.5), transparent 70%);
  top: -80px;
  right: 10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 70%);
  bottom: -40px;
  left: 5%;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25), transparent 70%);
  top: 40%;
  left: 45%;
  animation-delay: -8s;
}

@keyframes heroOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -16px) scale(1.08); }
}

.hero-interactive .hero-split {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hero-visual-panel {
  position: relative;
}

.hero-dashboard {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.hero-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-dash-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #86efac;
  font-size: 0.7rem;
}

.hero-dash-live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-dash-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.hero-metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.hero-metric-val {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.hero-metric-lbl {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.hero-dash-bars {
  margin-bottom: 20px;
}

.hero-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-bar-row span:first-child {
  flex: 0 0 72px;
}

.hero-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.hero-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), #f0d878);
  border-radius: 99px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-orbit-wrap {
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(201, 162, 39, 0.25);
  border-radius: 50%;
  animation: orbitSpin 24s linear infinite;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-orbit-center {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8b6914);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.4);
}

.orbit-node {
  position: absolute;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid rgba(201, 162, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  animation: orbitBob 3s ease-in-out infinite;
}

.orbit-node:hover,
.orbit-node.is-active {
  transform: scale(1.12);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.45);
}

.orbit-node-1 { top: 8px; left: 50%; margin-left: -22px; animation-delay: 0s; }
.orbit-node-2 { right: 12%; top: 50%; margin-top: -22px; animation-delay: -0.8s; }
.orbit-node-3 { bottom: 8px; left: 50%; margin-left: -22px; animation-delay: -1.6s; }
.orbit-node-4 { left: 12%; top: 50%; margin-top: -22px; animation-delay: -2.4s; }

@keyframes orbitBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.homepage-seo-visual {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding: 72px 0;
}

.seo-channel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 32px 0 28px;
}

.seo-channel-tab {
  padding: 12px 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.seo-channel-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.seo-channel-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.seo-channel-panel {
  display: none;
  animation: panelFadeIn 0.35s ease;
}

.seo-channel-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.seo-panel-visual {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 36px;
  color: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.seo-panel-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15), transparent 70%);
  border-radius: 50%;
}

.seo-panel-stat {
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.seo-panel-stat-lbl {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 14px;
  line-height: 1.45;
  max-width: 14ch;
  position: relative;
  z-index: 1;
}

.seo-panel-copy h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.seo-panel-copy p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
}

.seo-panel-copy ul {
  margin: 0;
  padding-left: 20px;
  color: #475569;
  line-height: 1.8;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.core-svc-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.core-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.partner-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.industry-card {
  transition: transform 0.2s ease, background 0.2s ease;
}

.industry-card:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .hero-interactive .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-visual-panel {
    max-width: 420px;
    margin: 0 auto;
  }

  .seo-channel-panel.active {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .seo-panel-visual {
    padding: 36px 28px;
    min-height: 200px;
    text-align: center;
    align-items: center;
  }

  .seo-panel-stat {
    font-size: clamp(3.75rem, 16vw, 5rem);
  }

  .seo-panel-stat-lbl {
    max-width: 22ch;
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .hero-interactive { padding: 64px 0 72px; }
  .hero-dash-metrics { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-metric-val { font-size: 1.35rem; }
  .seo-channel-tabs { gap: 8px; }
  .seo-channel-tab { padding: 10px 14px; font-size: 0.8rem; flex: 1 1 calc(50% - 8px); text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb, .hero-orbit-ring, .orbit-node, .hero-dash-live::before {
    animation: none;
  }
  .reveal-on-scroll { opacity: 1; transform: none; }
  .hero-bar-fill { width: var(--bar-width, 70%) !important; transition: none; }
}