/* ============================================================
   ML Software, LLC -site.css
   Copyright 2026. All rights reserved.

   v2.1.0 | Updated: 2026-03-25
   - Full rebuild for portfolio umbrella site
   - Design system carried forward: dark bg, steel blue, reveal pattern
   - New sections: productGrid, productCard, credBlock, aboutGrid,
     contactGrid, heroProductGrid, footerInner
   - Kendo UI classes removed (no Kendo on marketing site)
   - Inter + Barlow Condensed loaded via Google Fonts in index.cfm
   - v2.1.0: Hero grid -heroProdBadgeFeatured (DZIQ full-width top row)
   - v2.1.0: Product detail modal styles added
   ============================================================ */


/* ----------------------------
   Theme tokens
---------------------------- */
:root {
  --bg:           #0d0f12;
  --panel:        #13161c;
  --panel2:       #1a1f28;
  --border:       rgba(255,255,255,0.07);
  --borderSoft:   rgba(255,255,255,0.11);
  --border2:      rgba(46,163,242,0.20);
  --text:         #eaf2fb;
  --muted:        rgba(234,242,251,0.72);
  --muted2:       rgba(234,242,251,0.52);
  --blue:         #2EA3F2;
  --blue2:        #1a7cc7;
  --green:        #3dd68c;
  --amber:        #f5a623;
  --red:          #e04060;
  --shadow:       0 16px 50px rgba(0,0,0,0.45);
  --radius:       12px;
  --radiusSm:     10px;
  --max:          1180px;
  --topbar-h:     64px;
  color-scheme: dark;
}

/* ----------------------------
   Reset + base
---------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-padding-top: calc(var(--topbar-h) + 12px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.68;
  font-weight: 400;
  letter-spacing: 0.1px;
}

[id] { scroll-margin-top: calc(var(--topbar-h) + 12px); }

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--text); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: inherit; }
p { margin: 0 0 12px; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.muted { color: var(--muted); }
.muted2 { color: var(--muted2); }
.small { font-size: 13px; }

.lead {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.70;
  font-weight: 400;
}

h1, h2, h3 { margin: 0; letter-spacing: -0.2px; color: var(--text); }

h2 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}


/* ----------------------------
   Section
---------------------------- */
.section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.section.alt {
  background: var(--panel);
}

.sectionHead {
  text-align: center;
  margin-bottom: 48px;
}

.sectionHead .eyebrow {
  display: inline-block;
  background: rgba(46,163,242,0.10);
  border: 1px solid rgba(46,163,242,0.22);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
}

.sectionSub {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}


/* ----------------------------
   Topbar
---------------------------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--topbar-h);
  background: rgba(13,15,18,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.topbar .container {
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brandLogo {
  height: 40px;
  width: auto;
  display: block;
}

.brandText { display: flex; flex-direction: column; }

.brandName {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.brandTag {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.2;
  color: var(--muted2);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: rgba(234,242,251,0.80);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.1px;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background .12s, color .12s;
}

.nav a:not(.btn):hover {
  background: rgba(255,255,255,0.04);
  color: var(--text);
}


/* ----------------------------
   Buttons
---------------------------- */
.btn {
  border-radius: var(--radiusSm);
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  line-height: 1;
}

.btn:hover { transform: translateY(-1px); }
.btn.small { padding: 8px 14px; font-size: 12.5px; }

.btnPrimary {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue2) 100%);
  border-color: rgba(46,163,242,0.35);
  color: #06121B;
}

.btnPrimary:hover {
  border-color: rgba(46,163,242,0.55);
  box-shadow: 0 8px 24px rgba(46,163,242,0.22);
}

.btnSecondary {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.12);
}

.btnSecondary:hover {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue2) 100%);
  border-color: rgba(46,163,242,0.55);
  color: #06121B;
}

.btnCta {
  padding: 13px 22px;
  font-size: 15px;
}

.btnDisabled {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.07);
  color: var(--muted2);
  cursor: default;
  pointer-events: none;
}

.btnDisabled:hover { transform: none; }

.linkBtn {
  background: transparent;
  border: none;
  color: rgba(46,163,242,0.95);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.linkBtn:hover { color: var(--text); }


/* ----------------------------
   Reveal animation
---------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .38s ease, transform .38s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ----------------------------
   Hero
---------------------------- */
.heroEnterprise {
  padding: 80px 0 64px;
  margin-top: var(--topbar-h);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(46,163,242,0.07) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(1200px 700px at 15% 10%, rgba(46,163,242,0.09), rgba(0,0,0,0) 65%);
}

.heroGridEnterprise {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.heroH1 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.12;
  margin: 8px 0 14px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.heroLead {
  max-width: 56ch;
  margin: 0 0 20px;
}

.ctaRow {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.ctaNote {
  margin-top: 12px;
  color: var(--muted2);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
}

/* Hero product grid (right column) */
.heroProductGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* DropzoneIQ: full-width featured top row */
.heroProdBadgeFeatured {
  grid-column: 1 / -1;
  flex-direction: row !important;
  justify-content: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-color: rgba(26,111,255,0.30);
  background: linear-gradient(135deg, rgba(26,111,255,0.12), rgba(26,111,255,0.04));
}

.heroProdBadgeFeatured:hover {
  border-color: rgba(26,111,255,0.50);
  box-shadow: 0 4px 20px rgba(26,111,255,0.14);
}

.heroProdBadgeFeatured .heroProdName {
  display: none; /* replaced by heroProdNameFeatured */
}

.heroProdLetterLg {
  width: 44px !important;
  height: 44px !important;
  font-size: 26px !important;
  border-radius: 10px !important;
}

.heroProdNameFeatured {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.1px;
}

.heroProdBadge {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: border-color .15s, box-shadow .15s;
}

.heroProdBadge:hover {
  border-color: rgba(46,163,242,0.30);
  box-shadow: 0 4px 20px rgba(46,163,242,0.10);
}

.heroProdLetter {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--badge-color, var(--blue));
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.heroProdName {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
}

.badgeLive {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(61,214,140,0.15);
  color: var(--green);
  border: 1px solid rgba(61,214,140,0.30);
  border-radius: 20px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.heroProdBadgeFeatured .badgeLive {
  position: static;
  margin-left: auto;
}


/* ----------------------------
   Product detail modal
---------------------------- */
#prodModalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.60);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#prodModalPanel {
  background: #13161c;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.70);
  width: min(760px, 100%);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#prodModalHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}

#prodModalTitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

#prodModalClose {
  background: transparent;
  border: none;
  color: var(--muted2);
  font-size: 22px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color .12s;
}

#prodModalClose:hover { color: var(--text); }

#prodModalBody {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
}

#prodModalBody p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.72;
  margin-bottom: 16px;
}

#prodModalBody p:last-of-type { margin-bottom: 0; }

#prodModalFoot {
  padding: 16px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

/* Modal product header block */
.modalProdHead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.modalProdBadge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modalProdName {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.modalProdDomain {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modalProdTarget {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.modalProdCta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}


/* ----------------------------
   Product grid
---------------------------- */
.productGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.productCard {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .15s, box-shadow .15s;
}

.productCard:hover {
  border-color: rgba(46,163,242,0.25);
  box-shadow: 0 6px 28px rgba(46,163,242,0.08);
}

.productCardAccent {
  border-color: rgba(224,64,96,0.20);
}

.productCardAccent:hover {
  border-color: rgba(224,64,96,0.35);
  box-shadow: 0 6px 28px rgba(224,64,96,0.08);
}

.productCardTop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.productBadge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.productMeta {
  flex: 1;
  min-width: 0;
}

.productName {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0.1px;
}

.productDomain {
  font-size: 11px;
  color: var(--muted2);
  font-weight: 500;
  margin-top: 2px;
}

.statusBadge {
  flex-shrink: 0;
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.statusLive {
  background: rgba(61,214,140,0.14);
  color: var(--green);
  border: 1px solid rgba(61,214,140,0.28);
}

.statusSoon {
  background: rgba(245,166,35,0.12);
  color: var(--amber);
  border: 1px solid rgba(245,166,35,0.26);
}

.productDesc {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.productFoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.productTarget {
  font-size: 11px;
  color: var(--muted2);
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 8px;
}


/* ----------------------------
   Card (capabilities, 3-up)
---------------------------- */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .15s, box-shadow .15s;
}

.card:hover {
  border-color: rgba(46,163,242,0.25);
  box-shadow: 0 6px 28px rgba(46,163,242,0.07);
}

.hoverLift { transition: transform .15s ease, border-color .15s, box-shadow .15s; }
.hoverLift:hover { transform: translateY(-2px); }

.cardIconSvg {
  color: var(--blue);
  margin-bottom: 2px;
}

.card h3 { margin: 0; }

.card .muted {
  font-size: 14px;
  line-height: 1.62;
  margin: 0;
}

.cardFoot {
  margin-top: auto;
  padding-top: 10px;
}


/* ----------------------------
   Credibility block
---------------------------- */
.credBlock {
  background: var(--panel2);
  border: 1px solid var(--borderSoft);
  border-radius: var(--radius);
  padding: 32px 36px;
}

.credBlockTitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.credItems {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.credItem {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.credCheck {
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.credCta { }


/* ----------------------------
   About section
---------------------------- */
.aboutGrid {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 60px;
  align-items: start;
}

.aboutLeft h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.05;
  margin-top: 8px;
}

.aboutRight .lead {
  margin-bottom: 16px;
}

.aboutRight .muted {
  font-size: 14.5px;
  line-height: 1.70;
  margin-bottom: 14px;
}

.aboutStats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.aboutStat {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.aboutStatNum {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.aboutStatLabel {
  font-size: 12px;
  color: var(--muted2);
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.3;
}


/* ----------------------------
   Contact section
---------------------------- */
.contactGrid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 56px;
  align-items: start;
}

.contactLeft h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.05;
  margin-top: 8px 0 14px;
}

.contactLeft .muted {
  font-size: 14.5px;
  line-height: 1.68;
  margin-top: 12px;
}

.contactLinks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.contactLinkItem {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.contactLinkLabel {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  min-width: 64px;
  flex-shrink: 0;
}

.contactLinkVal {
  font-size: 14px;
  color: var(--muted);
}

.contactLinkVal a {
  color: var(--blue);
}

.productLinksBlock {
  margin-top: 28px;
}

.productLinksTitle {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}

.productLinksList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.productLinksList a {
  display: inline;
  font-size: 13px;
  color: rgba(234,242,251,0.72);
  font-weight: 600;
  transition: color .12s;
}

.productLinksList a:hover {
  color: var(--blue);
}


/* ----------------------------
   Form
---------------------------- */
.form label {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form label:last-of-type { margin-bottom: 0; }

.fieldLabel {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  margin-bottom: 7px;
}

.req { color: var(--blue); }

.form input[type="text"],
.form input[type="email"],
.form textarea,
.form select {
  background: #0d0f12;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  padding: 11px 14px;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(46,163,242,0.20);
}

.form textarea { resize: vertical; min-height: 100px; }

.form select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23E7EEF6' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 42px;
  cursor: pointer;
  height: 44px;
}

.form select option {
  background: #0d0f12;
  color: var(--text);
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.row2 label { margin-bottom: 0; }

.formActions {
  margin-top: 22px;
}

.formNote {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted2);
}

.formSuccess {
  background: rgba(61,214,140,0.08);
  border: 1px solid rgba(61,214,140,0.25);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.formSuccessTitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
}

.formSuccessBody {
  color: var(--muted);
  font-size: 14px;
}

.formErrorBanner {
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.30);
  border-radius: 10px;
  padding: 12px 14px;
  color: #ffd6d6;
  font-size: 14px;
  margin-bottom: 18px;
}

/* Honeypot */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}


/* ----------------------------
   Footer
---------------------------- */
.footer {
  background: #0a0c0f;
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}

.footerInner { }

.footerTop {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.footerBrand { }

.footerName {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.footerTagline {
  font-size: 13px;
  color: var(--muted2);
  font-weight: 500;
  margin-bottom: 6px;
}

.footerLocation {
  font-size: 12px;
  color: var(--muted2);
}

.footerNav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footerNavTitle {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.footerNav a {
  font-size: 13px;
  color: var(--muted2);
  font-weight: 500;
  transition: color .12s;
}

.footerNav a:hover { color: var(--blue); }

.footerBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footerLegal {
  font-size: 12px;
  color: rgba(234,242,251,0.40);
}


/* ----------------------------
   Mobile responsive
---------------------------- */
@media (max-width: 1024px) {
  .productGrid { grid-template-columns: repeat(2, 1fr); }
  .aboutGrid   { grid-template-columns: 1fr; gap: 28px; }
  .contactGrid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .topbar .container { padding-top: 0; padding-bottom: 0; }

  .brand { min-width: 0; flex: 1; }
  .brandLogo { height: 34px; }
  .brandName { font-size: 14px; }
  .brandTag { display: none; }

  /* Hide text nav links on mobile, keep CTA */
  .nav a:not(.btn) { display: none; }
  .nav { gap: 6px; }
  .nav .btn { padding: 8px 12px; font-size: 12px; }

  .heroEnterprise {
    padding: 28px 0 36px;
    margin-top: var(--topbar-h);
  }

  .heroGridEnterprise {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .heroH1 { font-size: clamp(28px, 8vw, 40px); }
  .heroLead { font-size: 15px; }

  .ctaRow { flex-direction: column; align-items: stretch; }
  .ctaRow .btn { width: 100%; justify-content: center; }

  .heroProductGrid { grid-template-columns: repeat(3, 1fr); }

  .section { padding: 44px 0; }
  .sectionHead { margin-bottom: 32px; }

  .productGrid { grid-template-columns: 1fr; }
  .cards3 { grid-template-columns: 1fr; }

  .credBlock { padding: 22px 18px; }

  .aboutStats { grid-template-columns: repeat(3, 1fr); gap: 10px; }

  .row2 { grid-template-columns: 1fr; gap: 0; }

  .footerTop {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footerBottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  h2 { font-size: 22px; }
  .heroH1 { font-size: 26px; }
  .heroProductGrid { grid-template-columns: repeat(2, 1fr); }
  .heroProdBadgeWide { grid-column: span 2; }
  .aboutStats { grid-template-columns: 1fr; }
  .aboutStatNum { font-size: 26px; }
  .btn { padding: 10px 14px; font-size: 13px; }
}


/* ============================================================
   v3.0.0 additions - IQ Platform section components
   ============================================================ */

/* eyebrow pill variant */
.eyebrowPill {
  background: rgba(46,163,242,0.10);
  border: 1px solid rgba(46,163,242,0.22);
  border-radius: 20px;
  padding: 4px 14px;
}

/* Platform philosophy strip */
.platformPhilosophy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.philosophyItem {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.philosophyNum {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.philosophyLabel {
  font-size: 12px;
  color: var(--muted2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.philosophySep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Vertical group cards */
.verticalGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.verticalCard {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .15s, box-shadow .15s;
}

.verticalCard:hover {
  border-color: rgba(46,163,242,0.22);
  box-shadow: 0 4px 20px rgba(46,163,242,0.06);
}

.verticalCardPipeline {
  border-style: dashed;
  border-color: rgba(255,255,255,0.08);
}

.verticalCardPipeline:hover {
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}

.verticalCardHead {
  display: flex;
  align-items: center;
  gap: 12px;
}

.verticalIcon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.verticalName {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}

.verticalCount {
  font-size: 11px;
  color: var(--muted2);
  font-weight: 600;
  margin-top: 2px;
}

.verticalDesc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.verticalProducts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.verticalProd {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--pc, var(--blue));
}

.verticalProdMuted {
  color: var(--muted2);
  font-style: italic;
  font-weight: 400;
}

/* Platform callout */
.platformCallout {
  background: linear-gradient(135deg, rgba(46,163,242,0.06), rgba(46,163,242,0.02));
  border: 1px solid rgba(46,163,242,0.18);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.platformCalloutLeft { flex: 1; }

.platformCalloutTitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.platformCalloutBody {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.68;
  margin: 0;
}

.platformCalloutRight { flex-shrink: 0; }

/* Hero product grid more chip */
.heroProdMore { display: none; }

/* Responsive additions */
@media (max-width: 1024px) {
  .verticalGrid { grid-template-columns: 1fr; }
  .platformCallout { flex-direction: column; gap: 20px; }
  .platformCalloutRight .btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
  .platformPhilosophy { flex-wrap: wrap; gap: 20px; padding: 20px; }
  .philosophySep { display: none; }
  .philosophyItem { flex: 0 0 calc(50% - 10px); }
  .heroProductGrid { grid-template-columns: repeat(3, 1fr); }
}