/* ═══════════ AI with Renew — Landing Page Shared CSS ═══════════ */
/* Used by all pages under /local/ — local and national landing pages + index */

/* ═══════════ RESET & VARIABLES ═══════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --blue: #3967AF;
  --blue-dark: #2B4F8A;
  --navy: #152040;
  --navy-mid: #1A2D55;
  --navy-light: #22386A;
  --orange: #F38431;
  --orange-dark: #D96E1E;
  --charcoal: #212529;
  --midgray: #6C757D;
  --lightgray: #F8F9FA;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --text-dark: #212529;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(57,103,175,0.08);
  --shadow-lg: 0 8px 32px rgba(57,103,175,0.10);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-align: justify;
  text-align-last: left;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-dark); }

/* ═══════════ TYPOGRAPHY ═══════════ */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--charcoal);
  text-align: left;
  text-align-last: left;
}
h2 { color: var(--blue); }
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 20px; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: inline-block;
  text-align: left;
  text-align-last: left;
}
.overline.light { color: rgba(255,255,255,0.45); }

/* ═══════════ LAYOUT ═══════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
}
.section {
  padding: 88px 0;
}
.section.alt {
  background: var(--lightgray);
}
.section.dark {
  background: var(--charcoal);
  color: var(--white);
}
.section.dark h2, .section.dark h3 { color: var(--white) !important; }
.section.dark p { color: rgba(255,255,255,0.75); }
.section.dark .overline { color: rgba(255,255,255,0.45); }

.text-center { text-align: center; text-align-last: center; }
.text-center h2 { text-align: center; text-align-last: center; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.mid-width { max-width: 880px; margin-left: auto; margin-right: auto; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0;
  white-space: nowrap;
}
.nav-logo img {
  height: 46px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links .nav-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  padding: 10px 22px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}
.nav-links .nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ═══════════ BREADCRUMB ═══════════ */
.breadcrumb {
  background: var(--lightgray);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  margin-top: 72px;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
  font-size: 12px;
  color: var(--midgray);
}
.breadcrumb-inner a {
  color: var(--midgray);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-inner a:hover { color: var(--blue); }
.breadcrumb-inner .sep { margin: 0 6px; color: var(--border); }
.breadcrumb-inner .current { color: var(--charcoal); font-weight: 500; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-orange {
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
}
.btn-orange:hover {
  background: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(243,132,49,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  padding: 14px 30px;
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-white-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 14px 30px;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-white-ghost:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  text-align-last: left;
}

/* ═══════════ HERO ═══════════ */
.hero {
  padding: 56px 0 56px;
  background: linear-gradient(160deg, #F0F4FA 0%, #E4ECF6 40%, #DAE3F2 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(57,103,175,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin-bottom: 20px;
  color: var(--charcoal);
}
.hero-sub {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--midgray);
  line-height: 1.5;
  margin-bottom: 12px;
}
.hero-body {
  font-size: 1.05rem;
  color: var(--midgray);
  margin-bottom: 36px;
  max-width: 640px;
}

/* ═══════════ HERO — DARK VARIANT (proof page) ═══════════ */
/* Used by landing pages that want the executive-ai treatment.
   Mirrors executive-ai.html hero: navy gradient, white type, orange overline.
   Composes with the existing .hero rules above (override only what differs). */
.hero.hero-dark {
  background: linear-gradient(160deg, var(--navy, #152040) 0%, var(--navy-mid, #1A2D55) 45%, var(--navy-light, #22386A) 100%);
  color: var(--white);
  padding: 96px 0 80px;
}
.hero.hero-dark::after {
  /* keep the soft radial accent, retuned for dark backdrop */
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(57,103,175,0.22) 0%, transparent 70%);
  width: 900px;
  height: 700px;
  top: -20%;
  right: -10%;
  border-radius: 0;
}
.hero.hero-dark .hero-inner { max-width: 820px; }
.hero.hero-dark h1 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.hero.hero-dark .overline {
  color: var(--orange);
  letter-spacing: 0.2em;
  font-size: 12px;
}
.hero.hero-dark .hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 720px;
}
.hero.hero-dark .hero-sub a {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, color 0.2s;
}
.hero.hero-dark .hero-sub a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.hero.hero-dark .cta-group { margin-top: 28px; }
/* Light/ghost outline button for dark hero */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border: 1.5px solid rgba(255,255,255,0.35);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  transform: translateY(-1px);
}

/* ═══════════ CITY INTRO — two-column copy + imagery ═══════════ */
.city-intro {
  padding: 88px 0;
  background: var(--white);
}
.city-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.city-intro-copy { max-width: 560px; }
.city-intro-copy .overline { margin-bottom: 12px; }
.city-intro-copy h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  margin-bottom: 20px;
  color: var(--charcoal);
}
.city-intro-copy p {
  color: var(--midgray);
  margin-bottom: 16px;
}
.city-intro-copy p:last-child { margin-bottom: 0; }

/* Image montage — primary large + secondary stacked accent */
.city-intro-media {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.city-intro-media .img-primary {
  grid-column: 1 / 7;
  grid-row: 1 / 2;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.city-intro-media .img-secondary {
  grid-column: 2 / 6;
  grid-row: 2 / 3;
  margin-top: -56px;
  margin-left: auto;
  margin-right: 0;
  width: 70%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  position: relative;
  z-index: 2;
}
.city-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.city-intro-caption {
  font-size: 11px;
  color: var(--midgray);
  margin-top: 14px;
  letter-spacing: 0.04em;
  text-align: right;
  text-align-last: right;
  opacity: 0.7;
}
.city-intro-caption a {
  color: var(--midgray);
  text-decoration: underline;
  text-decoration-color: var(--border);
}
.city-intro-caption a:hover { color: var(--blue); }

@media (max-width: 900px) {
  .city-intro { padding: 64px 0; }
  .city-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .city-intro-copy { max-width: 100%; }
  .city-intro-media .img-secondary { margin-top: -40px; width: 75%; }
}
@media (max-width: 600px) {
  .city-intro-media .img-secondary { margin-top: -28px; width: 80%; }
}

/* ═══════════ CONTENT SECTIONS ═══════════ */
.content-section {
  max-width: 880px;
}
.content-section h2 { margin-bottom: 24px; }
.content-section p { margin-bottom: 16px; }

/* Industry subsections */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.industry-item {
  padding: 28px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.industry-item:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.industry-item h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.industry-item p {
  font-size: 0.95rem;
  color: var(--midgray);
  margin: 0;
}

/* Industry catch-all — sits below industry grid, names broader industry experience */
.industry-catchall {
  max-width: 880px;
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
  box-shadow: var(--shadow-sm);
}
.industry-catchall p {
  font-size: 0.98rem;
  color: var(--midgray);
  line-height: 1.7;
  margin: 0;
}

/* Service area box */
.service-area-box {
  border-left: 3px solid var(--orange);
  padding: 24px 28px;
  margin-top: 16px;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.service-area-box p {
  font-size: 1.0rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════ CTA SECTION ═══════════ */
.cta-section {
  background: var(--charcoal);
  padding: 96px 0;
  text-align: center;
}
.cta-section { text-align: center; text-align-last: center; }
.cta-section h2 { color: var(--white) !important; margin-bottom: 16px; text-align: center; text-align-last: center; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; }
.cta-section .cta-group { justify-content: center; }

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 36px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
}
.footer-nav {
  display: flex;
  gap: 24px;
  list-style: none;
  justify-self: center;
}
.footer-nav a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-nav a:hover { color: var(--white); }
.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.footer-logo svg {
  margin-left: -3px;
  height: 32px;
  width: auto;
}
.footer-location {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  line-height: 1.5;
  text-align: left;
  text-align-last: left;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  justify-self: end;
  text-align: right;
}

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ LOCAL INDEX ═══════════ */
.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.index-market {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.index-market h3 {
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--charcoal);
}
.index-market ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.index-market ul li a {
  font-size: 0.9rem;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.index-market ul li:last-child a {
  border-bottom: none;
}
.index-market ul li a:hover { color: var(--blue-dark); }
.index-intro {
  max-width: 720px;
  margin-bottom: 8px;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .industry-grid { grid-template-columns: 1fr; }
  .index-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .breadcrumb-inner { padding: 0 24px; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 56px; }
  .industry-grid { grid-template-columns: 1fr; }
  .index-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; justify-items: center; }
  .footer-left { align-items: center; width: 100%; }
  .footer-logo { justify-content: center; }
  .footer-location { text-align: center; text-align-last: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }
  .footer-copy { justify-self: center; text-align: center; }
  .cta-group { flex-direction: column; align-items: stretch; text-align: center; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
}
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .nav-logo img { height: 32px; }
}
