/* ================================================================
   DISTILOGIX 2025 — DESIGN SYSTEM
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS Custom Properties
---------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --red:        #F14F44;
  --red-dark:   #d63b30;
  --navy:       #0D1B2A;
  --navy-mid:   #1a2d42;
  --teal:       #00A89D;
  --teal-light: #e6f7f6;
  --purple:     #6B5CE7;

  /* Neutrals */
  --white:      #ffffff;
  --off-white:  #f8f9fb;
  --gray-50:    #f4f5f7;
  --gray-100:   #eaecef;
  --gray-200:   #d1d5db;
  --gray-400:   #9ca3af;
  --gray-600:   #4b5563;
  --gray-800:   #1f2937;

  /* Typography */
  --font-head:  'Sora', sans-serif;
  --font-body:  'Manrope', sans-serif;

  /* Sizing */
  --container:  1200px;
  --radius:     8px;
  --radius-lg:  24px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);

  /* Transitions */
  --ease:       0.22s cubic-bezier(.4,0,.2,1);
}

/* ----------------------------------------------------------------
   2. Reset & Base
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ----------------------------------------------------------------
   3. Typography
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--gray-600); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

/* ----------------------------------------------------------------
   4. Layout Utilities
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: 80px; }
.section--lg { padding-block: 100px; }
.section--sm { padding-block: 56px; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.section-header p { margin-top: 0.75rem; font-size: 1.05rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ----------------------------------------------------------------
   5. Buttons
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--ease);
  white-space: nowrap;
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(241,79,68,.3); }

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

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover { opacity: .9; transform: translateY(-1px); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }

/* ----------------------------------------------------------------
   6. Navigation
---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 2rem;
}

.nav-logo { flex-shrink: 0; }
.site-logo { height: 38px; width: auto; }
.site-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius);
  transition: background var(--ease), color var(--ease);
}
.nav-link:hover, .nav-link.active { background: var(--gray-50); color: var(--red); }

.nav-link .arrow { font-size: 0.65rem; transition: transform var(--ease); }
.nav-item.open .arrow { transform: rotate(180deg); }

/* Dropdown panel */
/* Invisible bridge fills the gap between nav item and panel */
.dropdown-panel::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}


.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0 1.25rem 1.25rem;
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
  transform-origin: top center;
  min-width: 520px;
}

.nav-item.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  transition: background var(--ease);
}
.dropdown-item:hover { background: var(--gray-50); }

.di-icon {
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.di-icon--red    { background: #fef2f1; }
.di-icon--teal   { background: #e6f7f6; }
.di-icon--navy   { background: #e8edf2; }
.di-icon--purple { background: #f0effe; }

.di-label { display: flex; flex-direction: column; }
.di-label strong { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.di-label small  { font-size: 0.775rem; color: var(--gray-400); margin-top: 2px; }

/* Slim dropdown */
.dropdown-panel--slim { min-width: 220px; padding: 0.75rem; }
.dropdown-item-slim {
  display: block;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--ease), color var(--ease);
}
.dropdown-item-slim:hover { background: var(--gray-50); color: var(--red); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  display: none; /* show at lg+ */
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   7. Hero Section
---------------------------------------------------------------- */
.hero {
  padding-top: 96px;
  padding-bottom: 80px;
  background: linear-gradient(160deg, #f8f9fb 0%, #ffffff 60%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { max-width: 560px; }

.hero-content h1 {
  margin-bottom: 1.25rem;
  color: var(--navy);
}
.hero-content h1 .highlight { color: var(--red); }

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Stat Cards */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card:first-child { grid-column: span 2; background: var(--navy); color: var(--white); }
.stat-card:first-child .stat-number { color: var(--red); }
.stat-card:first-child .stat-label  { color: rgba(255,255,255,.7); }

.stat-number {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.825rem;
  color: var(--gray-600);
  margin-top: 0.4rem;
}
.stat-card.teal .stat-number { color: var(--teal); }
.stat-card.red  .stat-number { color: var(--red); }

/* ----------------------------------------------------------------
   8. Vendor Strip
---------------------------------------------------------------- */
.vendor-strip {
  padding-block: 32px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.vendor-strip-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
}

.vendor-strip-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  white-space: nowrap;
  flex-shrink: 0;
}

.vendor-logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex: 1;
  flex-wrap: wrap;
}

.vendor-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-400);
  transition: color var(--ease);
  white-space: nowrap;
}
.vendor-logo:hover { color: var(--navy); }

/* ----------------------------------------------------------------
   9. Stats Ticker
---------------------------------------------------------------- */
.stats-ticker {
  background: var(--red);
  padding-block: 18px;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 4rem;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
}
.ticker-item .t-stat {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
}
.ticker-sep { color: rgba(255,255,255,.4); }

/* ----------------------------------------------------------------
   10. Keyword Pills
---------------------------------------------------------------- */
.keywords-section {
  padding-block: 48px;
  background: var(--off-white);
}

.keywords-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.keyword-pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--ease);
}
.keyword-pill:hover, .keyword-pill--active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.keyword-pill--teal { color: var(--teal); border-color: var(--teal); }
.keyword-pill--teal:hover { background: var(--teal); color: var(--white); }
.keyword-pill--red  { color: var(--red); border-color: var(--red); }
.keyword-pill--red:hover  { background: var(--red); color: var(--white); }

/* ----------------------------------------------------------------
   11. Who We Are
---------------------------------------------------------------- */
.who-we-are { background: var(--white); }

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.who-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-map-label {
  color: rgba(255,255,255,.15);
  font-size: 8rem;
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1;
  user-select: none;
}

.who-badges {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.75rem;
  gap: 0.75rem;
}

.who-badge {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 40px;
  padding: 0.5rem 1rem;
  color: var(--white);
  font-size: 0.825rem;
  font-weight: 600;
}

.who-content h2 { margin-bottom: 1rem; }
.who-content p  { margin-bottom: 1rem; }

.who-points {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.who-point {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.who-point-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-light);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.who-point-text { font-size: 0.925rem; color: var(--gray-600); }
.who-point-text strong { color: var(--navy); }

/* ----------------------------------------------------------------
   12. Solution Pillars
---------------------------------------------------------------- */
.pillars { background: var(--off-white); }

.pillar-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity var(--ease);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar-card:hover::after { opacity: 1; }

.pillar-card--red::after   { background: var(--red); }
.pillar-card--teal::after  { background: var(--teal); }
.pillar-card--navy::after  { background: var(--navy); }
.pillar-card--purple::after{ background: var(--purple); }

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.pillar-icon--red    { background: #fef2f1; }
.pillar-icon--teal   { background: var(--teal-light); }
.pillar-icon--navy   { background: #e8edf2; }
.pillar-icon--purple { background: #f0effe; }

.pillar-card h3 { font-size: 1.05rem; }
.pillar-card p  { font-size: 0.875rem; flex: 1; }

.pillar-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--red);
  transition: gap var(--ease);
}
.pillar-link:hover { gap: 0.6rem; }

/* ----------------------------------------------------------------
   13. Industries
---------------------------------------------------------------- */
.industries { background: var(--white); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.industry-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.industry-img {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.industry-body {
  padding: 1.25rem;
}
.industry-body h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.industry-body p  { font-size: 0.8rem; }

/* ----------------------------------------------------------------
   14. Vendor Ecosystem
---------------------------------------------------------------- */
.vendor-ecosystem { background: var(--off-white); }

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.vendor-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.vendor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.vendor-card-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.vendor-card p   { font-size: 0.825rem; }
.vendor-card-tag {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--teal-light);
  color: var(--teal);
}
.vendor-card-tag--red    { background: #fef2f1; color: var(--red); }
.vendor-card-tag--navy   { background: #e8edf2; color: var(--navy); }
.vendor-card-tag--purple { background: #f0effe; color: var(--purple); }

/* ----------------------------------------------------------------
   15. Partner Network (Dark Section)
---------------------------------------------------------------- */
.partner-network {
  background: var(--navy);
  padding-block: 80px;
}

.partner-network .section-header h2 { color: var(--white); }
.partner-network .section-header p  { color: rgba(255,255,255,.65); }
.partner-network .eyebrow           { color: var(--teal); }

.partner-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.partner-logo-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  color: rgba(255,255,255,.7);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--ease);
}
.partner-logo-box:hover {
  background: rgba(255,255,255,.14);
  color: var(--white);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   16. Testimonials
---------------------------------------------------------------- */
.testimonials { background: var(--white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  font-style: italic;
  flex: 1;
}
.testimonial-quote::before { content: '\201C'; color: var(--red); font-size: 2rem; line-height: 0; vertical-align: -0.4em; margin-right: 0.15em; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1.25rem;
}

.ta-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ta-info strong { display: block; font-size: 0.875rem; color: var(--navy); }
.ta-info span   { font-size: 0.775rem; color: var(--gray-400); }

/* ----------------------------------------------------------------
   17. Insights / Blog Cards
---------------------------------------------------------------- */
.insights { background: var(--off-white); }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.insight-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.insight-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.insight-body { padding: 1.5rem; }
.insight-body .eyebrow { font-size: 0.7rem; }
.insight-body h3 { font-size: 1rem; margin: 0.4rem 0 0.6rem; }
.insight-body p  { font-size: 0.825rem; }

.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--red);
}

/* ----------------------------------------------------------------
   18. CTA Banner
---------------------------------------------------------------- */
.cta-banner {
  background: var(--red);
  padding-block: 72px;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   19. Footer
---------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-block: 72px;
}

.footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-logo .site-logo-text { color: var(--white); }

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.55);
}

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.6);
  transition: all var(--ease);
}
.footer-social a:hover { background: var(--red); color: var(--white); }

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links li + li { margin-top: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.25rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.35); transition: color var(--ease); }
.footer-legal a:hover { color: var(--white); }

/* ----------------------------------------------------------------
   20. Solution Inner Page Styles
---------------------------------------------------------------- */
.breadcrumb-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
  padding-block: 14px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--gray-400);
}
.breadcrumb a { color: var(--gray-600); font-weight: 600; transition: color var(--ease); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--gray-200); }
.breadcrumb-current { color: var(--navy); font-weight: 600; }

/* Solution Hero */
.solution-hero {
  padding-block: 80px;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--white) 100%);
}

.solution-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-hero-content h1 { margin-bottom: 1rem; }
.solution-hero-content p  { font-size: 1.05rem; margin-bottom: 2rem; }

/* Pain-point quote card */
.pain-quote-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.pain-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.pain-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1.25rem;
}

.pain-stat-num {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--red);
}
.pain-stat-label { font-size: 0.75rem; color: var(--gray-600); margin-top: 2px; }

/* Problem section */
.problem-section { background: var(--off-white); }

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.problem-icon { font-size: 2rem; margin-bottom: 1rem; }
.problem-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.problem-card p  { font-size: 0.875rem; }

.cost-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-pill);
  background: #fef2f1;
  color: var(--red);
  font-size: 0.775rem;
  font-weight: 700;
}

/* Approach section */
.approach-section { background: var(--white); }

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.approach-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-100);
}

.approach-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.approach-step h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.approach-step p  { font-size: 0.825rem; }

/* Tools grid */
.tools-section { background: var(--off-white); }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.tool-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.tool-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tool-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.tool-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-pill);
  background: var(--teal-light);
  color: var(--teal);
}

.tool-card p { font-size: 0.875rem; flex: 1; }

.tool-metrics {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

.tool-metric-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
}
.tool-metric-label { font-size: 0.75rem; color: var(--gray-600); }

/* ROI Stats Dark */
.roi-section { background: var(--navy); padding-block: 80px; }
.roi-section .eyebrow { color: var(--teal); }

.roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.roi-stat {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
}

.roi-num {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.roi-label { font-size: 0.875rem; color: rgba(255,255,255,.6); margin-top: 0.5rem; }

/* Customer Proof */
.proof-section { background: var(--white); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.proof-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--ease);
}
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.proof-result {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--teal);
}
.proof-industry {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}

/* Related Solutions */
.related-section { background: var(--off-white); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.related-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card--teal   { border-top: 4px solid var(--teal); }
.related-card--blue   { border-top: 4px solid var(--navy); }
.related-card--amber  { border-top: 4px solid #f59e0b; }
.related-card--purple { border-top: 4px solid var(--purple); }

.related-card h3 { font-size: 1rem; }
.related-card p  { font-size: 0.875rem; flex: 1; }

/* ----------------------------------------------------------------
   21. Utilities
---------------------------------------------------------------- */
.text-center  { text-align: center; }
.text-white   { color: var(--white) !important; }
.text-red     { color: var(--red) !important; }
.text-teal    { color: var(--teal) !important; }
.text-navy    { color: var(--navy) !important; }
.bg-off-white { background: var(--off-white); }
.bg-navy      { background: var(--navy); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ----------------------------------------------------------------
   22. Post Cards (Blog / Index)
---------------------------------------------------------------- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.post-card__thumb img { width: 100%; height: 200px; object-fit: cover; }
.post-card__body { padding: 1.5rem; }
.post-card__title { font-size: 1rem; margin: 0.4rem 0 0.75rem; }
.post-card__title a { color: var(--navy); }
.post-card__title a:hover { color: var(--red); }
.post-card__excerpt { font-size: 0.875rem; color: var(--gray-600); }

/* ----------------------------------------------------------------
   23. Responsive
---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-inner,
  .who-inner,
  .solution-hero-inner { grid-template-columns: 1fr; }

  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-card:first-child { grid-column: span 2; }

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

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

  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .approach-steps::before { display: none; }

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

  .nav-phone { display: none; }
}

@media (max-width: 768px) {
  .section { padding-block: 56px; }

  /* Mobile nav */
  .nav-menu {
    position: fixed;
    inset: 68px 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--ease);
    z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }

  .nav-hamburger { display: flex; }

  .nav-actions .btn-outline-navy { display: none; }

  .dropdown-panel {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 0.5rem;
    margin-top: 0.25rem;
  }
  .nav-item.open .dropdown-panel { opacity: 1; visibility: visible; pointer-events: all; }

  .testimonial-grid,
  .insights-grid,
  .posts-grid { grid-template-columns: 1fr; }

  .tools-grid,
  .proof-grid { grid-template-columns: 1fr; }

  .pain-stats { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; padding-block: 48px; }
  .footer-col--brand { grid-column: span 2; }

  .footer-bottom-inner { flex-direction: column; gap: 0.75rem; text-align: center; }

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

@media (max-width: 480px) {
  .pillar-cards,
  .industry-grid,
  .vendor-grid,
  .roi-grid { grid-template-columns: 1fr; }

  .hero-ctas, .cta-actions { flex-direction: column; align-items: stretch; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-col--brand { grid-column: span 1; }
}

/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.partners-hero {
  background: var(--navy);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
}
.partners-hero h1 { color: #fff; font-size: clamp(2rem,5vw,3.5rem); }
.partners-hero .hero-lead { color: rgba(255,255,255,0.75); max-width: 680px; margin: 1.5rem auto 0; font-size: 1.15rem; }

.vendor-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.vendor-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: box-shadow .25s, transform .25s;
}
.vendor-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-4px); }
.vendor-card--featured {
  grid-column: span 1;
  border-top: 4px solid var(--red);
}
.vendor-card--featured .vendor-name-large {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-heading);
}
.vendor-badge {
  display: inline-block;
  background: rgba(0,168,157,0.1);
  color: var(--teal);
  border: 1px solid rgba(0,168,157,0.25);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vendor-card h3 { font-size: 1.4rem; margin: 0 0 0.25rem; color: var(--navy); }
.vendor-tagline { color: var(--teal); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.75rem; }
.vendor-products { display: flex; flex-wrap: wrap; gap: 8px; margin: 1rem 0; }
.product-pill {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 500;
}
.vendor-stats { display: flex; gap: 1.5rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(0,0,0,0.08); }
.vstat__num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--red); font-family: var(--font-heading); }
.vstat__label { font-size: 0.78rem; color: #666; }

.become-partner { padding: 100px 0; }
.become-partner__inner { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.partner-benefits { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.partner-benefits li { color: rgba(255,255,255,0.75); padding: 0.5rem 0 0.5rem 1.5rem; position: relative; }
.partner-benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.become-partner__cta-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.become-partner__cta-card h3 { color: #fff; margin-bottom: 0.75rem; }
.become-partner__cta-card p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2e47 100%);
  color: #fff;
  padding: 120px 0 80px;
}
.about-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-hero h1 { color: #fff; font-size: clamp(2rem,5vw,3.2rem); }
.about-hero .hero-lead { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin: 1.5rem 0 0; }
.about-hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-stat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 1.5rem; text-align: center; }
.about-stat__num { font-size: 2.2rem; font-weight: 800; color: var(--red); display: block; font-family: var(--font-heading); }
.about-stat__label { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 0.25rem; }

.about-story { padding: 100px 0; }
.about-story__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-story__text h2 { font-size: clamp(1.8rem,4vw,2.5rem); }
.about-story__text p { color: #444; line-height: 1.8; margin-bottom: 1rem; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--red), var(--teal)); }
.timeline-item { position: relative; padding: 0 0 2rem 1.5rem; }
.timeline-item::before { content: ""; position: absolute; left: -1.65rem; top: 6px; width: 12px; height: 12px; background: var(--red); border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 3px rgba(241,79,68,0.2); }
.timeline-item__year { font-size: 0.8rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; }
.timeline-item__text { font-weight: 600; color: var(--navy); margin-top: 0.25rem; }

.about-values { padding: 80px 0; background: #f8f8f8; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2rem; margin-top: 3rem; }
.value-card { background: #fff; border-radius: 20px; padding: 2rem; }
.value-card__icon { width: 48px; height: 48px; background: rgba(241,79,68,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.value-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--navy); }
.value-card p { color: #555; font-size: 0.92rem; line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: var(--navy);
  color: #fff;
  padding: 100px 0 60px;
  text-align: center;
}
.contact-hero h1 { color: #fff; }
.contact-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 1rem auto 0; }

.contact-body { padding: 80px 0; }
.contact-body__inner { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: start; }

.contact-form-wrap { background: #fff; border-radius: 24px; padding: 2.5rem; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.contact-form-wrap h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.contact-form-wrap p { color: #555; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1.5px solid #e0e0e0; border-radius: 10px;
  padding: 12px 16px; font-size: 0.95rem; font-family: var(--font-body);
  transition: border-color .2s; outline: none; background: #fafafa;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); background: #fff; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note { font-size: 0.8rem; color: #888; text-align: center; margin-top: 0.75rem; }

.contact-info h3 { font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--navy); }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail__icon { width: 44px; height: 44px; min-width: 44px; background: rgba(241,79,68,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.contact-detail__text strong { display: block; font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.contact-detail__text span { color: #555; font-size: 0.9rem; }
.contact-detail__text a { color: var(--teal); text-decoration: none; }
.contact-offices { margin-top: 2.5rem; }
.office-card { background: #f8f8f8; border-radius: 16px; padding: 1.5rem; margin-bottom: 1rem; }
.office-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.office-card p { font-size: 0.88rem; color: #555; line-height: 1.6; margin: 0; }

/* ============================================================
   ASSESSMENT PAGE
   ============================================================ */
.assessment-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2240 100%);
  color: #fff;
  padding: 100px 0 80px;
}
.assessment-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.assessment-hero h1 { color: #fff; font-size: clamp(1.8rem,4vw,3rem); }
.assessment-hero .hero-lead { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin: 1.25rem 0 2rem; }
.assessment-includes { list-style: none; padding: 0; margin: 0; }
.assessment-includes li { color: rgba(255,255,255,0.8); padding: 0.5rem 0 0.5rem 1.75rem; position: relative; font-size: 0.95rem; }
.assessment-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; font-size: 1rem; }

.assessment-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.assessment-form-card h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 0.5rem; }
.assessment-form-card p { color: #555; font-size: 0.9rem; margin-bottom: 2rem; }
.assessment-trust { display: flex; gap: 1rem; align-items: center; margin-top: 1rem; flex-wrap: wrap; }
.trust-badge { font-size: 0.78rem; color: #888; display: flex; align-items: center; gap: 4px; }

@media (max-width: 768px) {
  .about-hero__inner, .about-story__inner, .assessment-hero__inner,
  .contact-body__inner, .become-partner__inner { grid-template-columns: 1fr; }
  .vendor-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-hero__stats { grid-template-columns: 1fr 1fr; }
}

/* ── Vendor logo images in strip ─────────────────────────── */
.vendor-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.vendor-logo img {
  height: 30px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter .25s;
  display: block;
}
.vendor-logo:hover img { filter: grayscale(0%) opacity(1); }

/* ── Vendor card logos (Section 8) ───────────────────────── */
.vendor-card-logo img {
  height: 38px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.75rem;
}
