/* ============ Design tokens ============ */
:root {
  --blue-900: #245b96;
  --blue-800: #296aa9;
  --blue-700: #337abf;
  --blue-600: #3e86c5;
  --blue-500: #4a90d2;
  --blue-100: #e9f2fb;
  --blue-50: #f5f9fd;
  --yellow-500: #ffc93c;
  --yellow-600: #f5b300;
  --white: #ffffff;
  --ink-900: #10192b;
  --ink-700: #3a4557;
  --ink-500: #6b7688;
  --border: #e2e7f2;

  --logo-blue: #4a90d2;
  --logo-gray: #59636d;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(16, 25, 43, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 37, 89, 0.10);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--ink-700); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow-600);
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 56px 0; }
.section--alt { background: var(--blue-50); }
.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); }
.section-head p { font-size: 17px; }
.section-illustration {
  width: 132px;
  height: auto;
  margin: 0 auto 18px;
  display: block;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--yellow-500);
  color: var(--blue-900);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--yellow-600); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-blue {
  background: var(--blue-700);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-800); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: var(--blue-100);
  color: var(--blue-700);
}
.btn-ghost:hover { background: #dce6fb; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--blue-100);
  color: var(--blue-700);
}
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: inherit;
  color: var(--ink-700);
  background: none;
  border: none;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown-trigger svg { width: 13px; height: 13px; transition: transform .15s ease; }
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown-trigger.active {
  background: var(--blue-100);
  color: var(--blue-700);
}
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 6px;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
}
.nav-dropdown-menu a:hover { background: var(--blue-100); color: var(--blue-700); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--blue-800);
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink-900);
  position: relative;
  transition: transform .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; width: 18px; height: 2px; background: var(--ink-900); }
.nav-toggle span::after { position: absolute; top: 6px; width: 18px; height: 2px; background: var(--ink-900); }

/* ============ Hero ============ */
.hero {
  position: relative;
  background: radial-gradient(1200px 500px at 15% -10%, var(--blue-600), transparent 60%), linear-gradient(160deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,201,60,0.25), transparent 70%);
}
.hero-inner {
  position: relative;
  padding: 96px 0 88px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  color: var(--white);
}
.hero h1 .hl { color: var(--yellow-500); }
.hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 520px;
}
.hero-stat b {
  display: block;
  font-size: 26px;
  color: var(--yellow-500);
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-panel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 10px;
  margin: 0 -10px;
  border-radius: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.hero-panel-row:last-child { border-bottom: none; }
.hero-panel-row:hover {
  transform: scale(1.045);
  background: rgba(255,255,255,0.07);
}
.hero-panel-row:hover .hero-panel-icon {
  background: var(--yellow-500);
  color: var(--blue-900);
}
.hero-panel-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,201,60,0.15);
  color: var(--yellow-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-panel-row strong { display: block; font-size: 15px; color: var(--white); }
.hero-panel-row span { font-size: 13px; color: rgba(255,255,255,0.7); }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  padding: 64px 0 56px;
}
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 44px); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; font-size: 17px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.breadcrumb a { color: var(--yellow-500); font-weight: 600; }

/* ============ Trust bar ============ */
.trust-bar {
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 18px;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.trust-logos span {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  color: var(--ink-700);
  font-size: 14px;
  background: var(--blue-50);
}
.trust-logos .logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  height: 112px;
  min-width: 172px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.trust-logos .logo-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.trust-logos .logo-badge img {
  max-height: 68px;
  max-width: 164px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.trust-logos .logo-badge.mono img { color: var(--ink-700); }

#software-integrations .trust-logos {
  flex-wrap: nowrap;
  gap: 14px;
}
#software-integrations .trust-logos .logo-badge {
  flex: 1 1 0;
  min-width: 0;
  padding: 16px 14px;
}
#software-integrations .trust-logos .logo-badge img {
  max-height: 60px;
  max-width: 100%;
}

/* Scrolling logo marquee */
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: logo-marquee-scroll 26s linear infinite;
}
.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}
.logo-marquee-track .logo-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  height: 96px;
}
.logo-marquee-track .logo-badge img {
  max-height: 56px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes logo-marquee-scroll {
  from { transform: translateX(-50%); }
  to { transform: translateX(0%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; }
}

/* ============ Cards / grids ============ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card-photo {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  padding: 10px;
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 19px; }
.card p { font-size: 15px; margin-bottom: 14px; }
.card-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link svg { width: 14px; height: 14px; transition: transform .15s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--yellow-500);
  color: var(--blue-900);
  margin-bottom: 12px;
}
.tag-new {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  margin-bottom: 10px;
}
.product-card p.coming-soon {
  font-size: 13px;
  color: var(--ink-500);
  font-style: italic;
  margin: 0;
}
.series-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.series-nav a {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  background: var(--white);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.series-nav a:hover, .series-nav a.active {
  background: var(--blue-100);
  color: var(--blue-700);
  border-color: transparent;
}

/* Product spec rows - fully visible, no click required */
.product-list { max-width: 1180px; margin: 0 auto; }
.product-row {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.product-list .product-row:first-child { padding-top: 0; }
.product-list .product-row:last-child { border-bottom: none; padding-bottom: 0; }
.product-row-photo {
  width: 460px;
  height: 460px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-row-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-row-body { flex: 1; min-width: 0; }
.product-row-body h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-800);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.product-row-body h3 sup {
  font-size: 15px;
  color: var(--ink-500);
  font-weight: 700;
  cursor: help;
  margin-left: 1px;
}
.series-footnote {
  max-width: 1180px;
  margin: 28px auto 0;
  font-size: 13.5px;
  color: var(--ink-500);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.product-row-body .tagline { font-size: 17px; color: var(--ink-500); margin-bottom: 26px; }
.product-row-body .check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.product-row-body .check-list li {
  padding: 11px 0;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.product-row-body .check-list li:last-child { border-bottom: none; }
.product-row-body .coming-soon { font-size: 15px; }

@media (max-width: 900px) {
  .product-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .product-row-photo { width: 100%; height: auto; max-height: 380px; }
}

/* Feature list with check icons */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-700);
  padding: 8px 0;
}
.check-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue-600);
}

/* Feature row (icon + text, used on service pages) */
.feature-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row .card-icon { margin-bottom: 0; flex-shrink: 0; }
.feature-row h4 { font-size: 16.5px; margin-bottom: 4px; }
.feature-row p { font-size: 14.5px; margin: 0; }

/* Split section (image/panel + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  background: linear-gradient(155deg, var(--blue-100), var(--blue-50));
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}

/* Pricing */
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--blue-600);
  box-shadow: var(--shadow-md);
}
.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--yellow-500);
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
}
.price-card h3 { font-size: 18px; margin-bottom: 4px; }
.price-card .price {
  font-size: 40px;
  font-weight: 800;
  color: var(--blue-900);
  margin: 14px 0 2px;
}
.price-card .price span { font-size: 15px; font-weight: 600; color: var(--ink-500); }
.price-card .price-note { font-size: 13.5px; color: var(--ink-500); margin-bottom: 22px; }
.price-card .check-list { margin-bottom: 26px; flex-grow: 1; }

/* Pricing data table */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: var(--white);
}
.pricing-table th, .pricing-table td {
  padding: 14px 22px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.pricing-table th {
  background: var(--blue-50);
  color: var(--blue-800);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pricing-table td:last-child, .pricing-table th:last-child { font-weight: 700; color: var(--blue-800); }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--blue-50); }
.pricing-footnote { font-size: 12.5px; color: var(--ink-500); margin-top: 14px; }

/* Callout box */
.callout {
  display: flex;
  gap: 18px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-left: 4px solid var(--blue-600);
  border-radius: var(--radius-md);
  padding: 26px 28px;
}
.callout .card-icon { background: var(--white); flex-shrink: 0; margin-bottom: 0; }
.callout h4 { font-size: 16px; margin-bottom: 6px; }
.callout p { font-size: 14.5px; margin: 0; }

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-quote {
  font-size: 15px;
  color: var(--ink-700);
  flex-grow: 1;
  margin-bottom: 20px;
}
.testimonial-quote::before { content: "\201C"; }
.testimonial-quote::after { content: "\201D"; }
.testimonial-author strong { display: block; font-size: 14.5px; color: var(--ink-900); }
.testimonial-author span { font-size: 13px; color: var(--ink-500); }
.testimonial-company {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 10px;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-strip b {
  display: block;
  font-size: 34px;
  color: var(--blue-800);
}
.stats-strip span { font-size: 14px; color: var(--ink-500); }

/* Timeline (about page) */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 6px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--yellow-500);
  border: 3px solid var(--blue-700);
}
.timeline-item h4 { font-size: 16px; margin-bottom: 4px; }
.timeline-item .year { color: var(--blue-700); font-weight: 800; font-size: 13px; letter-spacing: 0.04em; }

/* Person card */
.person-card { display: flex; gap: 18px; align-items: flex-start; }
.avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
}
.person-card h4 { margin-bottom: 2px; font-size: 17px; }
.person-card .role { color: var(--blue-700); font-weight: 700; font-size: 13.5px; margin-bottom: 8px; display: block; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: 28px; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.8); margin: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-card:last-child { border-bottom: none; }
.contact-card h4 { font-size: 15.5px; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--ink-700); margin: 0; }
.contact-card a:hover { color: var(--blue-700); }

.form-panel {
  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; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
  background: var(--white);
  color: var(--ink-900);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px var(--blue-100);
}
.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-500);
}
.field-check input { width: auto; margin-top: 3px; }
.form-note {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 12px;
  text-align: center;
}
#form-success {
  display: none;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-800);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 18px;
}

/* Footer */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand .brand {
  display: inline-flex;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-md);
}
.footer-brand .brand-logo-img { height: 30px; }
.footer-grid p { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.72); transition: color .15s ease; }
.footer-col a:hover { color: var(--yellow-500); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--yellow-500); color: var(--blue-900); }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #software-integrations .trust-logos { flex-wrap: wrap; }
  #software-integrations .trust-logos .logo-badge { flex: 1 1 40%; min-width: 130px; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px 24px 22px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-700);
}
.mobile-nav a.active, .mobile-nav a:hover { background: var(--blue-100); color: var(--blue-700); }
