:root {
  --navy: #0b1a33;
  --navy-dark: #060f20;
  --navy-mid: #14294d;
  --blue: #2f7ff2;
  --blue-light: #5fa8ff;
  --gold: #1d84f4;
  --gold-soft: #36acff;
  --grey-bg: #f5f7fb;
  --text-dark: #14213d;
  --text-muted: #64748b;
  --white: #ffffff;
  --border: #e6eaf1;
  --radius: 10px;
  --radius-lg: 16px;
  --max-width: 1180px;
  --shadow-sm: 0 2px 8px rgba(11,26,51,0.06);
  --shadow-md: 0 12px 32px rgba(11,26,51,0.12);
  --shadow-lg: 0 24px 60px rgba(11,26,51,0.18);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: 3rem; }
h2 { font-size: 2.15rem; }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--text-muted); font-size: 1rem; }

.center { text-align: center; margin-left: auto; margin-right: auto; }
.light, .light h1, .light h2, .light h3 { color: var(--white); }
.light p { color: rgba(255,255,255,0.82); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 2px;
}

/* Header */
.site-header {
  background: rgba(11,26,51,0.97);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { height: 38px; border-radius: 4px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.main-nav > a {
  color: rgba(255,255,255,0.88);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 8px 2px;
  position: relative;
  transition: color 0.15s ease;
}
.main-nav > a:hover { color: var(--white); }
.main-nav > a.nav-active { color: var(--white); }
.main-nav > a.nav-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
}
.nav-dropdown { position: relative; }
.nav-dropdown > a { color: rgba(255,255,255,0.88); font-size: 0.94rem; font-weight: 500; display: flex; align-items: center; gap: 5px; transition: color 0.15s ease; }
.nav-dropdown:hover > a { color: var(--white); }
.caret { font-size: 0.65em; transition: transform 0.15s ease; }
.nav-dropdown:hover .caret { transform: translateY(1px); }
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.15s ease;
  position: absolute;
  top: 100%;
  left: -12px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 300px;
  margin-top: 10px;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 7px;
  transition: background 0.12s ease;
}
.dropdown-menu a:hover { background: var(--grey-bg); color: var(--blue); }
.dropdown-icon {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown-icon svg { width: 17px; height: 17px; stroke: var(--blue-light); fill: none; stroke-width: 2; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.phone-link { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; transition: color 0.15s ease; display: flex; align-items: center; gap: 8px; }
.phone-link-icon { width: 15px; height: 15px; fill: none; stroke: var(--gold); stroke-width: 2; flex: none; }
.phone-link:hover { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  cursor: pointer;
}
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 4px 14px rgba(47,127,242,0.35); }
.btn-primary:hover { background: #4c93f5; box-shadow: 0 6px 20px rgba(47,127,242,0.45); transform: translateY(-1px); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, #7fa4cf 0%, #5d84ac 45%, #2e5880 100%);
  overflow: hidden;
  min-height: 830px;
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 65% 55%;
  display: block;
  filter: saturate(1.05);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(6,15,32,0.88) 0%,
    rgba(8,18,38,0.72) 30%,
    rgba(11,26,51,0.38) 52%,
    rgba(11,26,51,0.12) 70%,
    rgba(11,26,51,0.02) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 24px 60px;
  color: var(--white);
  width: 100%;
}
.hero-content > * { max-width: 640px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue-light);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.eyebrow.center { display: flex; width: 100%; justify-content: center; }
.eyebrow-dash { width: 28px; height: 2px; background: var(--blue-light); display: inline-block; border-radius: 2px; }
.hero h1 { color: var(--white); font-size: 3.2rem; }
.hero .accent { color: var(--blue-light); }
.hero-copy { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 600px; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.hero-buttons.center { justify-content: center; }

/* Sections */
.section { padding: 60px 24px; max-width: var(--max-width); margin: 0 auto; }
.section-alt {
  background-color: var(--grey-bg);
  background-image:
    linear-gradient(rgba(11,26,51,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,26,51,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  max-width: 100%;
}
.section-alt > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.section-intro { max-width: 640px; color: var(--text-muted); font-size: 1.05rem; }

.icon-square {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex: none;
}
.icon-square svg { width: 22px; height: 22px; stroke: var(--blue-light); fill: none; stroke-width: 2; }
.icon-square.icon-blue { background: linear-gradient(135deg, #eaf2ff 0%, #dbeafe 100%); }
.icon-square.icon-blue svg { stroke: var(--blue); }

.card-grid { display: grid; gap: 20px; margin-top: 32px; }
.card-grid.three-col { grid-template-columns: repeat(3, 1fr); }
.card-grid.four-col { grid-template-columns: repeat(4, 1fr); }
.card-grid.two-col { grid-template-columns: repeat(2, 1fr); margin-top: 0; }

.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.approach-layout .card-grid.two-col .card p { font-size: 0.92rem; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.card h3 { color: var(--navy); }

.solution-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.solution-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.solution-card h3 { color: var(--navy); }
.solution-card-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
}
.solution-card-cta h3, .solution-card-cta p, .solution-card-cta .learn-more { color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }

.solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.solution-row.reverse { direction: rtl; }
.solution-row.reverse > * { direction: ltr; }
.solution-row-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.solution-row-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  margin: 20px 0 24px;
}
.solution-row-checklist .benefit-list { margin: 0; }
.solution-row-checklist .benefit-list li { padding-top: 10px; padding-bottom: 10px; font-size: 0.95rem; }
.checkmark-list { list-style: none; padding: 0; margin: 0; }
.checkmark-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.checkmark-list li::before {
  content: "";
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f7ff2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.cta-tile-icon {
  width: 48px;
  height: 48px;
  color: var(--white);
  margin-bottom: 18px;
  opacity: 0.9;
}
.cta-tile-icon svg { width: 100%; height: 100%; }
.learn-more { color: var(--blue); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 4px; }

/* Icon color shift on card hover */
.solution-card:hover .icon-square svg { stroke: var(--white); }
.solution-card:hover .icon-square { background: linear-gradient(135deg, var(--blue) 0%, #1d63d6 100%); }

/* CTA banner */
.cta-banner {
  position: relative;
  background: radial-gradient(120% 140% at 50% 0%, #1c3a63 0%, var(--navy) 60%, var(--navy-dark) 100%);
  padding: 60px 24px;
  overflow: hidden;
}
.cta-banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.cta-banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 50% 0%, rgba(28,58,99,0.7) 0%, rgba(11,26,51,0.85) 55%, rgba(6,15,32,0.92) 100%);
}
.cta-watermark { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); width: 100px; height: 100px; z-index: 1; color: #ffffff; }
.cta-watermark svg { width: 100%; height: 100%; }
.cta-banner-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; padding-top: 75px; }
.cta-banner h2 { font-size: 2.3rem; }

.use-cases-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.why-tile {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.why-tile .why-icon { width: 48px; height: 48px; color: var(--white); margin-bottom: 20px; }
.why-tile .why-icon svg { width: 100%; height: 100%; }
.why-tile h2 { color: var(--white); font-size: 1.5rem; margin-top: 0; }
.why-tile p { color: rgba(255,255,255,0.8); }
.why-tile .hero-buttons { margin-top: 24px; }

.overview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.overview-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lift, var(--shadow-md));
}
.overview-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.benefit-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.benefit-tile {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.benefit-tile .check-badge {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.benefit-tile .check-badge svg { width: 14px; height: 14px; stroke: var(--navy); fill: none; stroke-width: 3; }
.benefit-tile span.label { font-weight: 500; color: var(--text-dark); font-size: 0.95rem; }

.numbered-list .num { background: var(--navy) !important; color: var(--gold) !important; border-radius: 8px !important; }

/* Footer */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 64px 24px 0; }
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { height: 34px; margin-bottom: 16px; border-radius: 4px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 12px; transition: color 0.15s ease; }
.footer-contact a, .footer-contact p { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 15px; height: 15px; stroke: var(--blue-light); fill: none; stroke-width: 2; flex: none; }
.footer-col a:hover { color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--white); }

/* Inner page hero */
.page-hero {
  position: relative;
  background: radial-gradient(120% 140% at 100% 0%, #1c3a63 0%, var(--navy) 55%, var(--navy-dark) 100%);
  overflow: hidden;
}
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 100% 0%, rgba(28,58,99,0.75) 0%, rgba(11,26,51,0.88) 55%, rgba(6,15,32,0.95) 100%);
}
.page-hero-watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  pointer-events: none;
  z-index: 1;
}
.page-hero-watermark .ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}
.page-hero-watermark .ring::before,
.page-hero-watermark .ring::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.12);
}
.page-hero-watermark .ring::before { top: -10px; left: 50%; width: 1px; height: 20px; transform: translateX(-50%); }
.page-hero-watermark .ring::after { top: 50%; left: -10px; width: 20px; height: 1px; transform: translateY(-50%); }
.page-hero-watermark .compass-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130px;
  height: 200px;
  transform: translate(-50%, -50%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: 2.6rem; max-width: 760px; }
.page-hero-sub { color: rgba(255,255,255,0.82); font-size: 1.08rem; max-width: 620px; }

.two-col-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 32px;
}
.two-col-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.photo-frame {
  position: relative;
}
.photo-frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.photo-frame .badge-compass {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-frame .badge-compass svg { width: 26px; height: 26px; }
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  text-align: center;
  padding: 24px;
}

.benefit-list { list-style: none; padding: 0; margin: 24px 0; }
.benefit-list li {
  padding: 12px 0 12px 38px;
  position: relative;
  color: var(--text-dark);
  font-size: 1rem;
}
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.tag:hover { border-color: var(--blue); color: var(--blue); }

.numbered-list { list-style: none; padding: 0; margin: 24px 0; counter-reset: item; }
.numbered-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.numbered-list li span:last-child { padding-top: 4px; color: var(--text-dark); }
.numbered-list .num {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, #1d63d6 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.related-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.related-card h4 { color: var(--navy); margin: 0 0 8px; font-size: 1rem; }
.related-card .learn-more { font-size: 0.85rem; }

/* Contact / forms */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.15s ease;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }

.contact-info-list { list-style: none; padding: 0; margin: 24px 0; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-info-list .dropdown-icon { margin-top: 2px; }
.contact-info-list .label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-info-list .value { font-weight: 600; color: var(--navy); font-size: 1.02rem; }

/* Vendor support directory */
.vendor-search { margin: 24px 0; }
.vendor-search input {
  width: 100%;
  max-width: 420px;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.95rem;
}
.vendor-search input:focus { outline: none; border-color: var(--blue); }
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 24px;
  margin: 24px 0;
}
.vendor-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.vendor-row .vendor-name { color: var(--text-dark); }
.vendor-row .vendor-phone { color: var(--blue); font-weight: 600; white-space: nowrap; }
.vendor-count { color: var(--text-muted); font-size: 0.85rem; margin-top: 12px; }

/* Responsive */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .card-grid.three-col, .card-grid.four-col, .card-grid.two-col { grid-template-columns: 1fr 1fr; }
  .approach-layout { grid-template-columns: 1fr; }
  .use-cases-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.1rem; }
  .hero h1 { font-size: 2.3rem; }
  .two-col-media { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .solution-row { grid-template-columns: 1fr; }
  .solution-row.reverse { direction: ltr; }
  .solution-row-checklist { grid-template-columns: 1fr; }
  .vendor-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 24px; }
}
@media (max-width: 560px) {
  .card-grid.three-col, .card-grid.four-col, .card-grid.two-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .vendor-grid { grid-template-columns: 1fr; }
}
