/* =========================================================
   TPP Global Services — Main Stylesheet
   Clean, modern, crisp design
   ========================================================= */

:root {
  /* Brand colors derived from logo + PowerPoint theme */
  --tpp-navy:        #0f2a47;
  --tpp-navy-deep:   #0a1f36;
  --tpp-blue:        #1f497d;
  --tpp-blue-bright: #2a6cb0;
  --tpp-cyan:        #3ba3d0;

  /* Neutrals */
  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Type */
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(15,42,71,0.06);
  --shadow:    0 4px 16px rgba(15,42,71,0.08);
  --shadow-lg: 0 12px 32px rgba(15,42,71,0.12);

  --header-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--tpp-blue-bright);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--tpp-navy); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--tpp-navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.25rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1.1em; color: var(--gray-700); }

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header .logo img {
  height: 60px;
  width: auto;
}
.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-header nav a {
  display: inline-block;
  color: var(--gray-700);
  font-weight: 500;
  font-size: .95rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.site-header nav a:hover,
.site-header nav a.active {
  color: var(--tpp-navy);
  background: var(--gray-100);
}
.site-header nav .nav-cta {
  margin-left: 8px;
  background: var(--tpp-navy);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
}
.site-header nav .nav-cta:hover {
  background: var(--tpp-blue-bright);
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  opacity: .6;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 0;
}
.dropdown a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: flex;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tpp-navy);
  margin: 5px 0;
  transition: transform .25s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  padding: 96px 0 110px;
  background:
    linear-gradient(135deg, rgba(10,31,54,0.88) 0%, rgba(31,73,125,0.82) 100%),
    url('../images/hero/hero-teamwork.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  /* subtle geometric accent */
  content: "";
  position: absolute;
  right: -160px; top: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(59,163,208,0.35), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero .lede {
  font-size: 1.2rem;
  max-width: 680px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
}
.hero .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--tpp-cyan);
  margin-bottom: 20px;
}

/* Compact hero for inner pages */
.hero-sub {
  padding: 72px 0 56px;
}
.hero-sub h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.hero-sub .lede { font-size: 1.1rem; margin-bottom: 0; }

.hero--strategy { background:
  linear-gradient(135deg, rgba(10,31,54,0.85) 0%, rgba(31,73,125,0.75) 100%),
  url('../images/hero/hero-strategy.jpg') center/cover no-repeat; }
.hero--security { background:
  linear-gradient(135deg, rgba(10,31,54,0.88) 0%, rgba(31,73,125,0.78) 100%),
  url('../images/hero/hero-security.jpg') center/cover no-repeat; }
.hero--data { background:
  linear-gradient(135deg, rgba(10,31,54,0.85) 0%, rgba(31,73,125,0.75) 100%),
  url('../images/hero/hero-data.jpg') center/cover no-repeat; }
.hero--teamwork { background:
  linear-gradient(135deg, rgba(10,31,54,0.88) 0%, rgba(31,73,125,0.82) 100%),
  url('../images/hero/hero-teamwork.jpg') center/cover no-repeat; }
.hero--solid { background: linear-gradient(135deg, var(--tpp-navy-deep) 0%, var(--tpp-blue) 100%); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all .2s ease;
}
.btn-primary {
  background: var(--tpp-cyan);
  color: var(--tpp-navy-deep);
}
.btn-primary:hover {
  background: #fff;
  color: var(--tpp-navy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}
.btn-dark {
  background: var(--tpp-navy);
  color: #fff;
}
.btn-dark:hover { background: var(--tpp-blue-bright); color: #fff; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--gray-50); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--tpp-blue-bright);
  margin-bottom: 10px;
}
.section-head h2 { margin: 0 0 16px; }
.section-head p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: 1.1rem;
}

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tpp-blue);
}
.card h3 { margin-top: 14px; }
.card p:last-child { margin-bottom: 0; }

.card .card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--tpp-blue) 0%, var(--tpp-cyan) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.card .card-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Practice row — 3-across, centered, always on one line on wider screens */
.practice-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}
.practice-row > .practice-card { width: 100%; max-width: 340px; }
@media (max-width: 900px) {
  .practice-row { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}
@media (max-width: 560px) {
  .practice-row { grid-template-columns: 1fr; max-width: 360px; }
}
.practice-row .practice-card .pc-img { height: 140px; }
.practice-row .practice-card h3 { font-size: 1.15rem; }
.practice-row .practice-card .pc-body { padding: 22px 22px 26px; }

/* Practice card (larger, link) */
.practice-card {
  display: block;
  color: inherit;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s ease;
}
.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tpp-blue);
}
.practice-card .pc-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.practice-card .pc-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,42,71,0.55), rgba(31,73,125,0.35));
}
.practice-card .pc-body { padding: 28px 30px 32px; }
.practice-card h3 { margin: 0 0 10px; }
.practice-card p { color: var(--gray-600); margin-bottom: 14px; }
.practice-card .pc-link {
  color: var(--tpp-blue-bright);
  font-weight: 600;
  font-size: .95rem;
}
.practice-card .pc-link::after {
  content: "→";
  margin-left: 6px;
  transition: margin-left .2s;
  display: inline-block;
}
.practice-card:hover .pc-link::after { margin-left: 10px; }

/* Bio card */
.bio-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .2s;
}
.bio-card:hover { box-shadow: var(--shadow); border-color: var(--tpp-blue); }
.bio-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--tpp-blue), var(--tpp-cyan));
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  flex-shrink: 0;
}
.bio-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Initials fallback when image fails to load */
.bio-avatar.no-photo::before {
  content: attr(data-initials);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
/* Larger avatar on individual bio detail pages */
.bio-avatar-lg .bio-avatar {
  width: 180px;
  height: 180px;
  font-size: 3.2rem;
  margin-bottom: 0;
}
.bio-card h3 { margin: 0 0 4px; font-size: 1.15rem; }
.bio-card .bio-title {
  color: var(--tpp-blue-bright);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 12px;
}
.bio-card p { font-size: .95rem; color: var(--gray-600); margin-bottom: 14px; }
.bio-card .bio-link { font-weight: 600; font-size: .9rem; }

/* ---------- Services list (within practice page) ---------- */
.service-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 40px;
}
.service-item {
  display: block;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--tpp-cyan);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  transition: box-shadow .18s ease, transform .18s ease, border-left-color .18s ease;
}
.service-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-left-color: var(--tpp-blue-bright);
}
.service-item h4 {
  color: var(--tpp-navy);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-item p { margin: 0 0 14px; color: var(--gray-600); font-size: .95rem; }
.service-link {
  display: inline-block;
  color: var(--tpp-blue-bright);
  font-weight: 600;
  font-size: .88rem;
}

/* Service detail page */
.hero-service { padding: 64px 0 48px; }
.hero-service h1 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 0; line-height: 1.22; }
.service-lede {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0 0 1.4em;
  padding-bottom: 1.2em;
  border-bottom: 1px solid var(--gray-200);
}

/* ---------- Feature strip (icons + text) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}
.feature {
  text-align: left;
}
.feature .feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--tpp-blue), var(--tpp-cyan));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature .feature-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
.feature h4 { margin: 0 0 8px; font-size: 1.05rem; color: var(--tpp-navy); }
.feature p { margin: 0; font-size: .95rem; color: var(--gray-600); }

/* ---------- CTA block ---------- */
.cta {
  background: linear-gradient(135deg, var(--tpp-navy-deep) 0%, var(--tpp-blue) 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.88); max-width: 620px; margin: 0 auto 28px; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--tpp-navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 24px;
  font-size: .92rem;
}
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: #fff; }
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer h5 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer .footer-brand img { height: 44px; margin-bottom: 14px; filter: brightness(1.2); }
.site-footer .footer-brand p { color: rgba(255,255,255,0.7); max-width: 320px; }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.55);
  font-size: .85rem;
}

/* ---------- Article / Content ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.8em; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.2em; color: var(--gray-700); }
.prose li { margin-bottom: 6px; }

/* Compact article variant — smaller headings, tighter vertical rhythm */
.prose-compact { font-size: .93rem; }
.prose-compact p { margin: 0 0 .7em; line-height: 1.5; }
.prose-compact h2 {
  font-size: 1.05rem;
  margin: 1.1em 0 .25em;
  line-height: 1.3;
  color: var(--tpp-navy-deep);
  font-weight: 700;
}
.prose-compact h3 {
  font-size: .98rem;
  margin: 1em 0 .25em;
  line-height: 1.3;
}
.prose-compact ul, .prose-compact ol {
  padding-left: 18px;
  margin: .1em 0 .7em;
}
.prose-compact li { margin-bottom: 2px; line-height: 1.45; }
.prose-compact li > strong { display: inline-block; margin: 6px 0 4px; color: var(--tpp-navy-deep); }
.prose-compact li > ul {
  margin: 4px 0 10px;
  padding-left: 18px;
  list-style: disc;
}
.prose-compact li > ul > li {
  color: var(--gray-700);
  margin-bottom: 3px;
}
.prose-compact .article-meta { margin-bottom: 10px; }

/* Compact article hero — less top/bottom padding, smaller h1, no lede */
.article-section { padding: 24px 0 48px; }
.hero-article { padding: 40px 0 32px; }
.hero-article h1 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-bottom: 0; line-height: 1.25; }

/* Feature image in the article body */
.article-image {
  margin: 12px 0 18px;
  text-align: center;
}
.article-image img {
  max-width: 100%;
  max-height: 340px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: inline-block;
}
.article-image--contain {
  background: #fff;
  padding: 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.article-image--contain img {
  max-height: 320px;
  box-shadow: none;
  border-radius: 0;
}

/* Author byline — partner headshot next to name + date */
.author-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 6px 0 10px;
  border-bottom: 1px solid var(--gray-200);
}
.author-byline .author-avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
.author-byline .author-avatar .bio-avatar {
  width: 38px !important;
  height: 38px !important;
  margin: 0 !important;
  border-radius: 50%;
}
.author-byline .author-avatar .bio-avatar img {
  width: 38px;
  height: 38px;
  object-fit: cover;
}
.author-byline .author-avatar .bio-avatar.no-photo::before {
  font-size: .8rem;
  line-height: 38px;
}
.author-meta { display: flex; flex-direction: column; line-height: 1.2; }
.author-byline .author-name {
  color: var(--tpp-navy-deep);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
}
.author-byline .author-name:hover { color: var(--tpp-blue-bright); }
.author-byline .author-date { color: var(--gray-500); font-size: .78rem; }

/* Article tile with image — used on home and TL index */
.article-card {
  display: flex !important;
  flex-direction: column;
  padding: 0 !important;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.article-card-img {
  width: 100%;
  height: 180px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--gray-100);
}
.article-card-body { padding: 22px 24px 24px; }
.article-card-body .article-meta { margin-bottom: 10px; }
.article-card-body h3 { margin: 0 0 8px; font-size: 1.08rem; line-height: 1.3; }
.article-card-body p { margin: 0 0 12px; font-size: .92rem; color: var(--gray-600); }
.article-card-body .byline { margin-top: 0; margin-bottom: 10px; }
.article-card-body .read-more {
  color: var(--tpp-blue-bright);
  font-weight: 600;
  font-size: .88rem;
}

.prose blockquote {
  margin: 1.5em 0;
  padding: 18px 24px;
  border-left: 4px solid var(--tpp-cyan);
  background: var(--gray-50);
  color: var(--gray-800);
  font-style: italic;
}

.article-meta {
  color: var(--gray-500);
  font-size: .9rem;
  margin-bottom: 12px;
}
.article-meta .tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gray-100);
  color: var(--tpp-blue);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  margin-right: 8px;
}
.byline {
  display: block;
  margin-top: 12px;
  color: var(--gray-500);
  font-size: .85rem;
  font-weight: 500;
}
.byline-top {
  margin: -6px 0 24px;
  color: var(--gray-500);
  font-size: .95rem;
  font-weight: 500;
}
.byline-top a {
  color: var(--tpp-blue-bright);
  font-weight: 600;
  text-decoration: none;
}
.byline-top a:hover { text-decoration: underline; }

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row { display: flex; flex-direction: column; }
.form-row.full { grid-column: span 2; }
.form-row label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--tpp-blue);
  box-shadow: 0 0 0 3px rgba(42,108,176,0.15);
}
.form-row textarea { min-height: 140px; resize: vertical; }

/* ---------- Industries grid ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.industry-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px;
  transition: all .2s;
}
.industry-card:hover {
  border-color: var(--tpp-blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.industry-card h4 {
  color: var(--tpp-navy);
  margin: 0 0 12px;
  font-size: 1.05rem;
}
.industry-card ul {
  list-style: none;
  padding: 0; margin: 0;
  color: var(--gray-600);
  font-size: .9rem;
}
.industry-card li { padding: 3px 0; }

/* Featured industries — text-rich blocks for the priority three */
.industry-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.industry-feature {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .2s;
}
.industry-feature:hover {
  border-color: var(--tpp-blue);
  box-shadow: var(--shadow);
}
.industry-feature-body h3 {
  color: var(--tpp-navy);
  font-size: 1.4rem;
  margin: 0 0 12px;
}
.industry-feature-body p {
  color: var(--gray-700);
  margin: 0;
  line-height: 1.6;
}
.industry-feature-clients {
  border-left: 1px solid var(--gray-200);
  padding-left: 28px;
}
.industry-feature-clients h4 {
  color: var(--tpp-blue-bright);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 14px;
}
.industry-feature-clients ul {
  list-style: none;
  padding: 0; margin: 0;
  color: var(--gray-700);
  font-size: .92rem;
}
.industry-feature-clients li { padding: 3px 0; }
@media (max-width: 760px) {
  .industry-feature {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
  .industry-feature-clients {
    border-left: none;
    border-top: 1px solid var(--gray-200);
    padding-left: 0;
    padding-top: 18px;
  }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 16px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: .88rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--gray-600); }
.breadcrumb a:hover { color: var(--tpp-blue); }
.breadcrumb .sep { margin: 0 8px; color: var(--gray-400); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row.full { grid-column: auto; }
}
@media (max-width: 768px) {
  .site-header nav ul { display: none; }
  .site-header nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 14px 20px;
    gap: 0;
    box-shadow: var(--shadow);
  }
  .site-header nav.open ul li { width: 100%; }
  .site-header nav.open ul a { padding: 12px 8px; width: 100%; }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 12px;
  }
  .nav-toggle { display: block; }
  section { padding: 56px 0; }
  .hero { padding: 72px 0 80px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; }
}
