/* VendAiMart v7 Design System — ported from vam-v7.ronniezaro.workers.dev template (2026-05-17) */

:root {
  --navy: #0D1B3E;
  --gold: #D4AF37;
  --white: #FFFFFF;
  --gray: #F5F5F7;
  --text-dark: #1A1A1A;
  --text-muted: #6B6B7B;
  --border: #E8E8EC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

/* SKIP LINK */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 9999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* TOP NAV */
.nav {
  background: var(--white);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links > a,
.nav-links > .nav-dropdown > .nav-trigger {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  background: none;
  border: none;
  padding: 6px 0;
  cursor: pointer;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links > a:hover, .nav-links > a:focus,
.nav-links > .nav-dropdown > .nav-trigger:hover,
.nav-links > .nav-dropdown > .nav-trigger:focus { color: var(--gold); outline: none; }
.nav-links > a.is-active,
.nav-links > .nav-dropdown > .nav-trigger.is-active { color: var(--navy); border-bottom: 2px solid var(--gold); }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown .nav-caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.15s;
}
.nav-dropdown[data-open="true"] .nav-caret { transform: rotate(-135deg) translateY(2px); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  min-width: 220px;
  padding: 14px 0 8px;
  margin-top: -6px;
  display: none;
}
.nav-dropdown[data-open="true"] .nav-dropdown-menu { display: block; }
/* Invisible bridge so the mouse can cross from the trigger button to a menu item
   without leaving the .nav-dropdown wrapper (which would fire mouseleave and close). */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-dark);
  transition: background 0.1s, color 0.1s;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus { background: var(--gray); color: var(--gold); outline: none; }

.nav-isa {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.15s;
  white-space: nowrap;
}
.nav-isa:hover, .nav-isa:focus { transform: translateY(-1px); outline: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE NAV PANEL */
.mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  padding: 80px 24px 32px;
  overflow-y: auto;
  display: none;
}
.mobile-panel[data-open="true"] { display: block; }
.mobile-panel .mobile-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--navy);
  cursor: pointer;
}
.mobile-panel ul { list-style: none; }
.mobile-panel li { border-bottom: 1px solid var(--border); }
.mobile-panel a {
  display: block;
  padding: 16px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}
.mobile-panel .mobile-sub a {
  padding-left: 16px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  border-bottom: none;
}
.mobile-panel .mobile-section-label {
  padding: 16px 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
}

/* HERO */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 120px 60px 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-left h1 {
  font-size: 78px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2.4px;
  margin-bottom: 28px;
}
.hero-left h1 .accent { color: var(--gold); }
.hero-subhead {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 620px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* HERO SLIM VARIANT (inner pages) */
.hero--slim { padding: 60px 60px 50px; }
.hero--slim .hero-container { grid-template-columns: 1fr; max-width: 920px; }
.hero--slim .hero-left h1 { font-size: 44px; letter-spacing: -1.2px; }

/* BUTTONS */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: transform 0.15s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-2px);
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.15s, color 0.15s;
  text-align: center;
}
.btn-secondary:hover, .btn-secondary:focus {
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}
.btn-secondary--dark {
  color: var(--navy);
  border-color: rgba(13, 27, 62, 0.25);
}
.btn-secondary--dark:hover, .btn-secondary--dark:focus {
  border-color: var(--gold);
  color: var(--gold);
}

/* HERO RIGHT: 4-BRAND GRID */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.brand-card {
  background: var(--white);
  border-radius: 10px;
  padding: 22px 22px 20px;
  color: var(--text-dark);
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}
.brand-card:hover, .brand-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
  outline: none;
}
.brand-image {
  background: var(--white);
  border-radius: 6px;
  height: 200px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
/* Home-page variant: white cards on the navy hero, centered names + models, no price */
.brand-grid--home .brand-card {
  text-align: center;
  padding: 16px 16px 20px;
}
.brand-grid--home .brand-image {
  height: 260px;
}
.brand-name {
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.brand-model {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.brand-msrp {
  font-size: 19px;
  color: var(--text-dark);
  font-weight: 800;
  margin-top: auto;
  letter-spacing: -0.3px;
}

/* FINANCING BANNER */
.financing-banner {
  background: var(--navy);
  color: var(--white);
  padding: 18px 60px;
  text-align: center;
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.financing-banner strong { color: var(--gold); font-weight: 700; }
.financing-banner a {
  color: var(--gold);
  text-decoration: underline;
  margin-left: 10px;
  font-size: 13px;
  font-weight: 500;
}

/* STAT ROW */
.stat-row {
  background: var(--white);
  padding: 80px 60px;
}
.stat-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.stat-item {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}
.stat-item:first-child { border-left: none; padding-left: 0; }
.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 500;
}

/* CREDIBILITY SECTION */
.credibility {
  background: var(--gray);
  padding: 90px 60px;
}
.credibility-container {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.credibility h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 28px;
  line-height: 1.15;
}
.credibility p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.credibility p:last-child { margin-bottom: 0; }
.credibility .kicker {
  font-weight: 700;
  color: var(--navy);
}

/* TRUST BAND */
.trust-band {
  background: var(--white);
  padding: 60px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.trust-left h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.trust-left p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
}
.trust-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-stat { text-align: center; }
.trust-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
}
.trust-stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 500;
  margin-top: 4px;
}

/* KVM PRODUCT SLOT */
.kvm-slot {
  background: var(--gray);
  padding: 90px 60px;
}
.kvm-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.kvm-image {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.kvm-image img { max-height: 320px; object-fit: contain; }
.kvm-tag {
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 12px;
}
.kvm-right h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}
.kvm-right p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.kvm-specs {
  display: flex;
  gap: 32px;
  margin: 20px 0 24px;
  flex-wrap: wrap;
}

/* FAQ */
.faq-section {
  background: var(--white);
  padding: 90px 60px;
}
.faq-container {
  max-width: 920px;
  margin: 0 auto;
}
.faq-container h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 48px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { transition: transform 0.2s; flex-shrink: 0; font-size: 22px; line-height: 1; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--gold); }
.faq-answer {
  display: none;
  padding: 0 0 24px;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}
.faq-answer[data-open="true"] { display: block; }

/* PARTNER STRIP */
.partner-strip {
  background: var(--navy);
  color: var(--white);
  padding: 50px 60px;
}
.partner-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.partner-container h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  font-weight: 600;
}
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.85;
}
.partner-logo {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2a52 100%);
  color: var(--white);
  padding: 100px 60px;
  text-align: center;
}
.cta-container {
  max-width: 720px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

/* FOOTER */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 60px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h5 {
  font-size: 20px;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-brand h5 span { color: var(--gold); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
}
.footer-col h6 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}
.footer-col ul a:hover, .footer-col ul a:focus { color: var(--gold); outline: none; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 1280px;
  margin: 24px auto 0;
  text-align: center;
  line-height: 1.6;
}

/* CHAT BUBBLE */
.chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 30px;
  padding: 14px 24px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.chat-bubble:hover, .chat-bubble:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  outline: none;
}

/* CHATBOT WIDGET (DOM injected by v7-ui.js) */
.chatbot-window {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 540px;
  max-height: calc(100vh - 140px);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  z-index: 9100;
  overflow: hidden;
  border: 1px solid var(--border);
}
.chatbot-window[data-open="true"],
.chatbot-window.open { display: flex; }
.chatbot-window.open ~ .chat-bubble,
.chatbot-window.open + .chat-bubble { display: none; }
.chatbot-header {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.chatbot-header-title { font-weight: 700; font-size: 15px; }
.chatbot-header-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.chatbot-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.chatbot-close:hover { color: var(--gold); }
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--gray);
}
.chatbot-msg {
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 85%;
  font-size: 14px;
  line-height: 1.5;
}
.chatbot-msg-bot { background: var(--white); color: var(--text-dark); align-self: flex-start; border: 1px solid var(--border); }
.chatbot-msg-user { background: var(--navy); color: var(--white); align-self: flex-end; }
.chatbot-msg a { color: var(--gold); text-decoration: underline; }
.chatbot-msg-user a { color: var(--white); }
.chatbot-options { padding: 0 16px 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.chatbot-input-row {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.chatbot-input-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  color: var(--text-dark);
  background: var(--white);
}
.chatbot-input-row input:focus { border-color: var(--gold); }
.chatbot-input-row button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s;
}
.chatbot-input-row button:hover { transform: translateY(-1px); }
@media (max-width: 480px) {
  .chatbot-window { right: 16px; left: 16px; width: auto; bottom: 88px; }
}

/* ===================================================== */
/* GENERIC CONTENT BLOCKS (for inner pages) */
/* ===================================================== */

.section { padding: 80px 60px; background: var(--white); }
.section--gray { background: var(--gray); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.container { max-width: 1280px; margin: 0 auto; }
.container--narrow { max-width: 920px; margin: 0 auto; }

.section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.section h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section ul, .section ol { margin: 0 0 16px 22px; color: var(--text-dark); line-height: 1.7; font-size: 16px; }
.section li { margin-bottom: 6px; }

.section--navy p { color: rgba(255, 255, 255, 0.85); }
.section--navy a { color: var(--gold); }

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card--bordered { border-color: var(--border); }
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06); }
.card h3 { margin-bottom: 10px; }

.price-tag {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
}
.price-tag .unit { font-size: 14px; color: var(--text-muted); font-weight: 500; letter-spacing: 0; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.spec-table th {
  background: var(--gray);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.spec-table tr:last-child td { border-bottom: none; }

/* PROSE (for blog/legal content) */
.prose { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.75; color: var(--text-dark); }
.prose h2 { font-size: 30px; margin: 40px 0 16px; }
.prose h3 { font-size: 22px; margin: 32px 0 12px; }
.prose p { margin-bottom: 20px; font-size: 17px; line-height: 1.75; }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }
.prose ul, .prose ol { margin: 0 0 20px 24px; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav { padding: 14px 18px; gap: 12px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-isa { padding: 8px 14px; font-size: 13px; white-space: nowrap; }
  .nav-isa-long { display: none; }
  .nav-logo { font-size: 18px; }
  .hero { padding: 70px 24px; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-left h1 { font-size: 54px; letter-spacing: -1.6px; }
  .hero--slim .hero-left h1 { font-size: 40px; letter-spacing: -1.2px; }
  .stat-row, .credibility, .trust-band, .kvm-slot, .faq-section, .cta-section, .footer, .partner-strip, .financing-banner, .section { padding-left: 24px; padding-right: 24px; }
  .stat-container { grid-template-columns: 1fr; gap: 32px; }
  .stat-item { border-left: none; border-top: 3px solid var(--gold); padding-left: 0; padding-top: 16px; }
  .stat-item:first-child { border-top: 3px solid var(--gold); padding-top: 16px; }
  .trust-container, .kvm-container { grid-template-columns: 1fr; gap: 40px; }
  .trust-right { grid-template-columns: repeat(3, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .hero-left h1 { font-size: 44px; letter-spacing: -1.2px; }
  .brand-grid { grid-template-columns: 1fr; }
  .trust-right { grid-template-columns: 1fr; gap: 16px; }
  .footer-container { grid-template-columns: 1fr; }
  .credibility h2, .cta-section h2, .section h2 { font-size: 28px; }
}
