/* VehicleCharger New — Design System (Foundation Edition) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── Design Tokens ──────────────────────────────────────────────────────────── */
:root {
  --vc-primary:       #0070D2;
  --vc-primary-dark:  #005FB2;
  --vc-primary-light: #E8F4FD;
  --vc-secondary:     #00A1E0;
  --vc-accent:        #032D60;
  --vc-accent-dark:   #021e42;
  --vc-success:       #22C55E;
  --vc-danger:        #dc2626;
  --vc-warning:       #F59E0B;
  --vc-dark:          #0F172A;
  --vc-text:          #334155;
  --vc-text-muted:    #64748B;
  --vc-border:        #E2E8F0;
  --vc-bg-soft:       #F8FAFC;
  --vc-bg-alt:        #F1F5F9;
  --vc-white:         #ffffff;
  --font-primary:     'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --section-py:       96px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 999px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 12px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:   0 10px 30px rgba(0,0,0,.10), 0 4px 10px rgba(0,0,0,.05);
  --shadow-card: 0 2px 8px rgba(15,23,42,.06), 0 0 0 1px rgba(15,23,42,.04);
  --shadow-hover:0 8px 24px rgba(0,112,210,.15);
  --transition-fast:   150ms cubic-bezier(.4,0,.2,1);
  --transition-normal: 250ms cubic-bezier(.4,0,.2,1);
}

/* ─── Base ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--vc-text);
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-primary); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--vc-dark); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 700; }
h5 { font-size: 1.125rem; font-weight: 700; }
h6 { font-size: 1rem; font-weight: 700; }
a { color: var(--vc-primary); text-decoration: none; }
a:hover { color: var(--vc-primary-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ─── Foundation Grid Overrides ──────────────────────────────────────────────── */
.grid-container { max-width: 1320px; padding-left: 1rem; padding-right: 1rem; }
.grid-x.grid-padding-x > .cell { padding-left: .75rem; padding-right: .75rem; }
.grid-x.grid-padding-x { margin-left: -.75rem; margin-right: -.75rem; }

/* ─── Foundation Button Overrides ────────────────────────────────────────────── */
.button {
  background-color: var(--vc-primary);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: .75rem 1.75rem;
  cursor: pointer;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  margin: 0;
}
.button:hover, .button:focus { background-color: var(--vc-primary-dark); color: #fff; text-decoration: none; }
.button.hollow { background-color: transparent; border: 2px solid var(--vc-primary); color: var(--vc-primary); }
.button.hollow:hover { background-color: var(--vc-primary); color: #fff; }
.button.warning { background-color: var(--vc-accent); color: #fff; border-color: var(--vc-accent); }
.button.warning:hover { background-color: var(--vc-accent-dark); color: #fff; }
.button.secondary { background-color: #f1f5f9; color: var(--vc-text); border: 2px solid var(--vc-border); }
.button.secondary:hover { background-color: #e2e8f0; color: var(--vc-text); }
.button.secondary.hollow { background-color: transparent; color: #64748b; border: 2px solid var(--vc-border); }
.button.secondary.hollow:hover { background-color: #f1f5f9; }
.button.alert { background-color: var(--vc-danger); color: #fff; }
.button.alert:hover { background-color: #b91c1c; color: #fff; }
.button.success { background-color: var(--vc-success); color: #fff; }
.button.success:hover { background-color: #047857; color: #fff; }
.button.clear { background-color: transparent; color: var(--vc-primary); border-color: transparent; }
.button.clear:hover { background-color: transparent; color: var(--vc-primary-dark); text-decoration: underline; }
.button.round { border-radius: var(--radius-pill); }
.button.small { font-size: .875rem; padding: .5rem 1.125rem; border-radius: var(--radius-sm); }
.button.large { font-size: 1.125rem; padding: .9rem 2.25rem; border-radius: var(--radius-lg); }
.button.expanded { width: 100%; }
.button[disabled], .button.disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }

/* ─── Foundation Form Overrides ──────────────────────────────────────────────── */
[type='text'], [type='email'], [type='password'], [type='tel'], [type='number'], [type='url'],
[type='search'], textarea, select {
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--vc-border);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--vc-text);
  background-color: #fff;
  padding: .5rem .75rem;
  margin: 0;
  width: 100%;
  box-shadow: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  display: block;
  -webkit-appearance: none;
  appearance: none;
}
[type='text']:focus, [type='email']:focus, [type='password']:focus, [type='tel']:focus,
[type='number']:focus, [type='search']:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--vc-primary);
  box-shadow: 0 0 0 3px rgba(0,112,210,.15);
}
label { font-weight: 500; font-size: 1rem; margin-bottom: .3rem; color: var(--vc-text); display: block; }
select { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right .5rem center; background-size: 16px 12px; padding-right: 2.5rem; }
textarea { resize: vertical; min-height: 80px; }

/* ─── Foundation Reveal (Modal) Override ─────────────────────────────────────── */
.reveal-overlay { z-index: 10050; background-color: rgba(0,0,0,.5); }
.reveal {
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  max-width: 520px;
  z-index: 10051;
}
.reveal > .close-button { font-size: 1.5rem; line-height: 1; top: 14px; right: 18px; color: var(--vc-text-muted); position: absolute; cursor: pointer; background: none; border: none; padding: 0; }
.reveal > .close-button:hover { color: var(--vc-dark); }
.reveal h5 { margin-bottom: 16px; font-size: 1.1rem; }

/* ─── Bootstrap Compatibility Utility Layer ──────────────────────────────────── */
/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-grid { display: grid !important; }
/* Responsive display */
@media (min-width: 576px) {
  .d-sm-block { display: block !important; }
  .d-sm-inline { display: inline !important; }
  .d-sm-inline-flex { display: inline-flex !important; }
  .d-sm-none { display: none !important; }
}
@media (min-width: 768px) {
  .d-md-block { display: block !important; }
  .d-md-none { display: none !important; }
  .d-md-flex { display: flex !important; }
  .d-md-inline-flex { display: inline-flex !important; }
}
@media (min-width: 992px) {
  .d-lg-block { display: block !important; }
  .d-lg-none { display: none !important; }
  .d-lg-flex { display: flex !important; }
  .d-lg-inline-flex { display: inline-flex !important; }
}
@media (min-width: 1200px) {
  .d-xl-block { display: block !important; }
  .d-xl-none { display: none !important; }
  .d-xl-flex { display: flex !important; }
  .d-xl-inline-flex { display: inline-flex !important; }
}

/* Flexbox */
.flex-wrap   { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-grow-1   { flex-grow: 1 !important; }
.flex-column   { flex-direction: column !important; }
.flex-row      { flex-direction: row !important; }
.flex-fill     { flex: 1 1 auto !important; }
/* Alignment */
.align-items-center  { align-items: center !important; }
.align-items-start   { align-items: flex-start !important; }
.align-items-end     { align-items: flex-end !important; }
.align-self-center   { align-self: center !important; }
/* Justify */
.justify-content-between { justify-content: space-between !important; }
.justify-content-center  { justify-content: center !important; }
.justify-content-start   { justify-content: flex-start !important; }
.justify-content-end     { justify-content: flex-end !important; }
.justify-content-around  { justify-content: space-around !important; }

/* Gap */
.gap-0 { gap: 0 !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }

/* Margin */
.m-0 { margin: 0 !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .25rem !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: .25rem !important; }
.mt-2 { margin-top: .5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.ms-1 { margin-left: .25rem !important; }
.ms-2 { margin-left: .5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-5 { margin-left: 3rem !important; }
.me-1 { margin-right: .25rem !important; }
.me-2 { margin-right: .5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.me-5 { margin-right: 3rem !important; }

/* Padding */
.p-0 { padding: 0 !important; }
.p-1 { padding: .25rem !important; }
.p-2 { padding: .5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: .25rem !important; padding-right: .25rem !important; }
.px-2 { padding-left: .5rem !important; padding-right: .5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: .25rem !important; padding-bottom: .25rem !important; }
.py-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: .25rem !important; }
.pb-2 { padding-bottom: .5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pt-0 { padding-top: 0 !important; }
.pt-2 { padding-top: .5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }

/* Typography */
.fw-bold    { font-weight: 700 !important; }
.fw-semibold{ font-weight: 600 !important; }
.fw-medium  { font-weight: 500 !important; }
.fw-normal  { font-weight: 400 !important; }
.text-center { text-align: center !important; }
.text-start  { text-align: left !important; }
.text-end    { text-align: right !important; }
.text-muted  { color: var(--vc-text-muted) !important; }
.text-primary{ color: var(--vc-primary) !important; }
.text-success{ color: var(--vc-success) !important; }
.text-danger { color: var(--vc-danger) !important; }
.text-warning{ color: var(--vc-warning) !important; }
.text-white  { color: #fff !important; }
.text-dark   { color: var(--vc-dark) !important; }
.text-decoration-none { text-decoration: none !important; }
.text-truncate{ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
small, .small { font-size: .875em; }
.lead  { font-size: 1.125rem; font-weight: 400; line-height: 1.75; }
.fs-1  { font-size: 2.5rem !important; }
.fs-2  { font-size: 2rem !important; }
.fs-3  { font-size: 1.75rem !important; }
.fs-5  { font-size: 1.25rem !important; }
.h6,.h5,.h4,.h3,.h2,.h1 { font-family: var(--font-primary); font-weight: 700; color: var(--vc-dark); letter-spacing: -0.02em; }

/* Colors / Background */
.bg-primary  { background-color: var(--vc-primary) !important; }
.bg-white    { background-color: #fff !important; }
.bg-light    { background-color: var(--vc-bg-soft) !important; }
.bg-success  { background-color: var(--vc-success) !important; }
.bg-danger   { background-color: var(--vc-danger) !important; }
.bg-warning  { background-color: var(--vc-warning) !important; }
.bg-secondary-subtle { background-color: #f1f5f9; }
.bg-success-subtle   { background-color: #d1fae5 !important; }

/* Borders */
.border        { border: 1px solid var(--vc-border) !important; }
.border-top    { border-top: 1px solid var(--vc-border) !important; }
.border-bottom { border-bottom: 1px solid var(--vc-border) !important; }
.border-0      { border: 0 !important; }

/* Border-radius */
.rounded       { border-radius: 4px !important; }
.rounded-1     { border-radius: 2px !important; }
.rounded-2     { border-radius: 4px !important; }
.rounded-3     { border-radius: var(--radius-md) !important; }
.rounded-4     { border-radius: var(--radius-lg) !important; }
.rounded-circle{ border-radius: 50% !important; }
.rounded-pill  { border-radius: var(--radius-pill) !important; }

/* Shadow */
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow    { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

/* Sizing */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.min-w-0 { min-width: 0 !important; }
.mw-100 { max-width: 100% !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }

/* Position */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed    { position: fixed !important; }
.position-sticky   { position: sticky !important; }

/* Opacity */
.opacity-75 { opacity: .75 !important; }
.opacity-60 { opacity: .60 !important; }
.opacity-50 { opacity: .50 !important; }

/* Lists */
.list-unstyled { list-style: none; padding: 0; margin: 0; }

/* Inline elements */
.d-inline { display: inline !important; }

/* ─── Bootstrap Grid Compat (.container, .row, .col-*) ──────────────────────── */
.container, .container-xl, .container-fluid, .container-sm, .container-md, .container-lg {
  width: 100%; margin-left: auto; margin-right: auto;
  padding-left: 1rem; padding-right: 1rem;
}
.container, .container-xl { max-width: 1320px; }
.container-lg { max-width: 960px; }
.container-md { max-width: 720px; }
.container-sm { max-width: 540px; }

.row { display: flex; flex-wrap: wrap; margin-left: -.75rem; margin-right: -.75rem; }
.row > * { padding-left: .75rem; padding-right: .75rem; box-sizing: border-box; }
.row.align-items-center { align-items: center; }
.row.justify-content-center { justify-content: center; }
.row.justify-content-between { justify-content: space-between; }
.row.g-0  { margin: 0; } .row.g-0 > * { padding: 0; }
.row.g-1  { margin: -.125rem; } .row.g-1 > *  { padding: .125rem; }
.row.g-2  { margin: -.25rem;  } .row.g-2 > *  { padding: .25rem; }
.row.g-3  { margin: -.5rem;   } .row.g-3 > *  { padding: .5rem; }
.row.g-4  { margin: -.75rem;  } .row.g-4 > *  { padding: .75rem; }
.row.g-5  { margin: -1.5rem;  } .row.g-5 > *  { padding: 1.5rem; }
.row.gy-3 > * { padding-top: .5rem; padding-bottom: .5rem; }
.row.gy-4 > * { padding-top: .75rem; padding-bottom: .75rem; }
.row.gy-5 > * { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.col    { flex: 1 0 0%; }
.col-auto { flex: 0 0 auto; width: auto; }
.col-1  { flex: 0 0 auto; width: 8.333333%; }
.col-2  { flex: 0 0 auto; width: 16.666667%; }
.col-3  { flex: 0 0 auto; width: 25%; }
.col-4  { flex: 0 0 auto; width: 33.333333%; }
.col-5  { flex: 0 0 auto; width: 41.666667%; }
.col-6  { flex: 0 0 auto; width: 50%; }
.col-7  { flex: 0 0 auto; width: 58.333333%; }
.col-8  { flex: 0 0 auto; width: 66.666667%; }
.col-9  { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.333333%; }
.col-11 { flex: 0 0 auto; width: 91.666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }
.row-cols-1 > * { flex: 0 0 auto; width: 100%; }
.row-cols-2 > * { flex: 0 0 auto; width: 50%; }
.row-cols-3 > * { flex: 0 0 auto; width: 33.333333%; }
.row-cols-4 > * { flex: 0 0 auto; width: 25%; }
.row-cols-6 > * { flex: 0 0 auto; width: 16.666667%; }
@media (min-width: 576px) {
  .col-sm-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-sm-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-sm-3 { flex: 0 0 auto; width: 25%; }
  .col-sm-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
  .col-sm-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-sm-12{ flex: 0 0 auto; width: 100%; }
  .row-cols-sm-2 > * { flex: 0 0 auto; width: 50%; }
  .row-cols-sm-3 > * { flex: 0 0 auto; width: 33.333333%; }
  .row-cols-sm-4 > * { flex: 0 0 auto; width: 25%; }
}
@media (min-width: 768px) {
  .col-md-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-md-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-md-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-md-9 { flex: 0 0 auto; width: 75%; }
  .col-md-10{ flex: 0 0 auto; width: 83.333333%; }
  .col-md-12{ flex: 0 0 auto; width: 100%; }
  .row-cols-md-1 > * { flex: 0 0 auto; width: 100%; }
  .row-cols-md-2 > * { flex: 0 0 auto; width: 50%; }
  .row-cols-md-3 > * { flex: 0 0 auto; width: 33.333333%; }
  .row-cols-md-4 > * { flex: 0 0 auto; width: 25%; }
}
@media (min-width: 992px) {
  .col-lg-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-lg-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10{ flex: 0 0 auto; width: 83.333333%; }
  .col-lg-12{ flex: 0 0 auto; width: 100%; }
  .row-cols-lg-1 > * { flex: 0 0 auto; width: 100%; }
  .row-cols-lg-2 > * { flex: 0 0 auto; width: 50%; }
  .row-cols-lg-3 > * { flex: 0 0 auto; width: 33.333333%; }
  .row-cols-lg-4 > * { flex: 0 0 auto; width: 25%; }
}
@media (min-width: 1200px) {
  .col-xl-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-xl-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-xl-3 { flex: 0 0 auto; width: 25%; }
  .col-xl-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-xl-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-xl-9 { flex: 0 0 auto; width: 75%; }
  .col-xl-10{ flex: 0 0 auto; width: 83.333333%; }
  .col-xl-12{ flex: 0 0 auto; width: 100%; }
  .row-cols-xl-2 > * { flex: 0 0 auto; width: 50%; }
  .row-cols-xl-3 > * { flex: 0 0 auto; width: 33.333333%; }
  .row-cols-xl-4 > * { flex: 0 0 auto; width: 25%; }
}

/* ─── Bootstrap Button Compat (.btn) ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.75rem; font-size: 1rem; font-weight: 600;
  line-height: 1.5; border-radius: var(--radius-md); cursor: pointer;
  text-decoration: none; border: 2px solid transparent;
  transition: all var(--transition-fast); white-space: nowrap;
  font-family: var(--font-primary);
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--vc-primary); color: #fff; border-color: var(--vc-primary); }
.btn-primary:hover { background: var(--vc-primary-dark); border-color: var(--vc-primary-dark); color: #fff; }
.btn-outline-primary { color: var(--vc-primary); border-color: var(--vc-primary); background: transparent; }
.btn-outline-primary:hover { background: var(--vc-primary); border-color: var(--vc-primary); color: #fff; }
.btn-warning { background: var(--vc-warning); color: #212529; border-color: var(--vc-warning); }
.btn-warning:hover { background: #d97706; border-color: #d97706; color: #212529; }
.btn-light { background: #f1f5f9; color: var(--vc-text); border-color: var(--vc-border); }
.btn-light:hover { background: #e2e8f0; }
.btn-secondary { background: #f1f5f9; color: var(--vc-text); border-color: var(--vc-border); }
.btn-secondary:hover { background: #e2e8f0; }
.btn-success { background: var(--vc-success); color: #fff; border-color: var(--vc-success); }
.btn-success:hover { background: #16a34a; color: #fff; }
.btn-danger  { background: var(--vc-danger);  color: #fff; border-color: var(--vc-danger); }
.btn-danger:hover  { background: #b91c1c; color: #fff; }
.btn-outline-secondary { color: #64748b; border-color: var(--vc-border); background: transparent; }
.btn-outline-secondary:hover { background: #f1f5f9; color: var(--vc-text); }
.btn-outline-danger { color: var(--vc-danger); border-color: var(--vc-danger); background: transparent; }
.btn-outline-danger:hover { background: var(--vc-danger); color: #fff; }
.btn-link { color: var(--vc-primary); background: transparent; border-color: transparent; padding-left: 0; padding-right: 0; }
.btn-link:hover { color: var(--vc-primary-dark); text-decoration: underline; }
.btn-sm { padding: .5rem 1.125rem; font-size: .875rem; border-radius: var(--radius-sm); }
.btn-lg { padding: .9rem 2.25rem; font-size: 1.125rem; border-radius: var(--radius-lg); }
.btn:disabled, .btn[disabled] { opacity: .5; cursor: not-allowed; pointer-events: none; }

/* ─── Bootstrap Form Compat ──────────────────────────────────────────────────── */
.form-control, .form-select {
  display: block !important; width: 100% !important; padding: .5rem .75rem !important;
  font-size: 1rem !important; line-height: 1.5 !important; color: var(--vc-text) !important;
  background-color: #fff !important; border: 1px solid var(--vc-border) !important;
  border-radius: var(--radius-sm) !important; box-shadow: none !important; margin: 0 !important;
  font-family: var(--font-primary) !important; height: auto !important;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none !important; appearance: none !important;
}
.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important; background-position: right .75rem center !important;
  background-size: 16px 12px !important; padding-right: 2.5rem !important;
}
.form-control:focus, .form-select:focus {
  outline: none !important; border-color: var(--vc-primary) !important;
  box-shadow: 0 0 0 3px rgba(0,112,210,.15) !important;
}
.form-control-sm { padding: .25rem .5rem; font-size: .875rem; }
.form-control-lg { padding: .75rem 1rem; font-size: 1.0625rem; }
.form-select-sm  { padding: .25rem .5rem; font-size: .875rem; }
.form-label { font-size: 1rem; font-weight: 500; margin-bottom: .375rem; color: var(--vc-text); display: block; }
.form-check { display: flex; align-items: center; gap: .5rem; margin-bottom: .4rem; }
.form-check-input { width: 1rem; height: 1rem; flex-shrink: 0; cursor: pointer; margin: 0; }
.form-check-label { font-size: 1rem; cursor: pointer; margin: 0; }

/* Input group */
.input-group { display: flex; }
.input-group .form-control { border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); flex: 1 1 auto; }
.input-group > .btn { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; flex-shrink: 0; }
.input-group > .btn-outline-secondary:not(:first-child) { border-left: none; }
.input-group-sm .form-control { padding: .25rem .5rem; font-size: .875rem; }

/* ─── Bootstrap Badge Compat ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; padding: 3px 8px;
  border-radius: 4px; font-size: .75rem; font-weight: 600; line-height: 1.4;
}
.badge.rounded-pill, .rounded-pill.badge { border-radius: var(--radius-pill); }
.bg-danger  .text-danger,
.badge.bg-danger   { background-color: var(--vc-danger) !important; color: #fff; }
.badge.bg-success  { background-color: var(--vc-success) !important; color: #fff; }
.badge.bg-warning  { background-color: var(--vc-warning) !important; color: #212529; }
.badge.bg-secondary{ background-color: #64748b !important; color: #fff; }
.badge.bg-secondary-subtle { background-color: #f1f5f9 !important; color: #475569; }
.text-secondary    { color: #64748b !important; }

/* ─── Bootstrap Spinner Compat ───────────────────────────────────────────────── */
.spinner-border {
  display: inline-block; width: 2rem; height: 2rem;
  border: .25em solid currentColor; border-right-color: transparent;
  border-radius: 50%; animation: spin .75s linear infinite; vertical-align: middle;
}
.spinner-border-sm { width: 1rem; height: 1rem; border-width: .2em; }

/* ─── Bootstrap Pagination Compat ───────────────────────────────────────────── */
.pagination {
  list-style: none; display: flex; gap: 4px; padding: 0; margin: 0;
}
.pagination.justify-content-center { justify-content: center; }
.page-item.disabled .page-link { pointer-events: none; opacity: .5; }
.page-item.active .page-link { background: var(--vc-primary); color: #fff; border-color: var(--vc-primary); }
.page-link {
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 4px 8px;
  border: 1px solid var(--vc-border); border-radius: 6px;
  color: var(--vc-primary); text-decoration: none; font-size: .875rem;
  transition: all var(--transition-fast); background: #fff;
}
.page-link:hover { background: var(--vc-primary-light); border-color: var(--vc-primary); color: var(--vc-primary); }

/* ─── Bootstrap List Group Compat ───────────────────────────────────────────── */
.list-group { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.list-group-item { padding: .75rem 1rem; border: 1px solid var(--vc-border); }
.list-group-item + .list-group-item { border-top: 0; }
.list-group-flush .list-group-item { border-left: 0; border-right: 0; border-radius: 0; }
.list-group-flush .list-group-item:first-child { border-top: 0; }

/* ─── Bootstrap Nav Tabs Compat ──────────────────────────────────────────────── */
.nav { display: flex; flex-wrap: wrap; padding: 0; margin: 0; list-style: none; }
.nav-tabs { border-bottom: 2px solid var(--vc-border); }
.nav-tabs .nav-item { margin-bottom: -2px; }
.nav-tabs .nav-link {
  display: block; padding: .6rem 1rem; font-size: .875rem; font-weight: 500;
  color: var(--vc-text-muted); border: none; border-bottom: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: color var(--transition-fast);
}
.nav-tabs .nav-link:hover { color: var(--vc-primary); }
.nav-tabs .nav-link.active { color: var(--vc-primary); border-bottom-color: var(--vc-primary); }

/* ─── Bootstrap Table Compat ─────────────────────────────────────────────────── */
.table { width: 100%; margin-bottom: 0; border-collapse: collapse; }
.table th, .table td { padding: .75rem 1rem; vertical-align: middle; border-top: 1px solid var(--vc-border); font-size: .9rem; }
.table thead th { background: var(--vc-bg-soft); font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; color: var(--vc-text-muted); border-bottom: 1px solid var(--vc-border); border-top: none; font-family: var(--font-primary); font-weight: 700; }
.table-hover tbody tr:hover { background-color: #f8fafc; }
.table-responsive { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.align-middle td, .align-middle th { vertical-align: middle; }
.mb-0 table, table.mb-0 { margin-bottom: 0; }
.bg-white table, table.bg-white { background: #fff; }

/* ─── Dropdown Compat ────────────────────────────────────────────────────────── */
.dropdown-menu {
  position: absolute; top: 100%; left: 0; z-index: 1000;
  background: #fff; border: 1px solid var(--vc-border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 6px 0; min-width: 180px; display: none;
}
.dropdown-menu.show { display: block; }
.dropdown-item {
  display: flex; align-items: center; padding: 8px 16px;
  font-size: .875rem; color: var(--vc-text); text-decoration: none; cursor: pointer;
  transition: background var(--transition-fast);
}
.dropdown-item:hover { background: var(--vc-bg-soft); color: var(--vc-primary); text-decoration: none; }
.dropdown-item.text-danger { color: var(--vc-danger) !important; }
.dropdown-item.text-danger:hover { background: #fee2e2; }
.dropdown-divider { border-top: 1px solid var(--vc-border); margin: 4px 0; }

/* ─── Custom Navbar (Foundation Edition) ─────────────────────────────────────── */
.vc-announcement-bar {
  background: var(--vc-dark); color: #e2e8f0; font-size: .8125rem; padding: 4px 0;
}
.announcement-text { margin: 0; padding: 0; line-height: 1.2; }
.announcement-text strong { color: #fff; }
.announcement-link { color: #94a3b8; text-decoration: none; font-size: .8125rem; }
.announcement-link:hover { color: #fff; }

.vc-navbar {
  background: #fff; border-bottom: 1px solid var(--vc-border);
  position: sticky; top: 0; z-index: 1030;
  transition: box-shadow var(--transition-normal);
}
.vc-navbar.scrolled { box-shadow: 0 4px 20px rgba(0,112,210,.08); }

.vc-nav-inner { background: #fff; }
.vc-nav-flex {
  display: flex; align-items: center; height: 72px; gap: 4px;
}
.vc-logo-link { text-decoration: none !important; flex-shrink: 0; }
.vc-logo-link:hover { text-decoration: none; }

/* Desktop nav - shown on large+ */
.vc-desktop-nav { display: none; flex: 1; align-items: center; }
@media (min-width: 1200px) { .vc-desktop-nav { display: flex; } }

.vc-nav-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; align-items: center; }
.vc-nav-item { position: relative; }
.vc-nav-link {
  font-weight: 500; font-size: .875rem; padding: .75rem 1rem; color: var(--vc-text);
  display: block; white-space: nowrap; text-decoration: none; position: relative;
}
.vc-nav-link:hover { color: var(--vc-primary); text-decoration: none; }
.vc-nav-item.active > .vc-nav-link { color: var(--vc-primary); }
.vc-nav-item.active > .vc-nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem;
  height: 2px; background: var(--vc-primary); border-radius: 2px;
}

/* Nav right */
.vc-nav-right { display: none; align-items: center; gap: 8px; margin-left: 8px; flex-shrink: 0; }
@media (min-width: 1200px) { .vc-nav-right { display: flex; } }

/* Mobile toggle - hidden on large+ */
.vc-mobile-toggle { display: flex; align-items: center; gap: 8px; margin-left: auto; }
@media (min-width: 1200px) { .vc-mobile-toggle { display: none; } }

.vc-hamburger-btn {
  background: none; border: 1px solid var(--vc-border); border-radius: 6px;
  padding: 7px 9px; cursor: pointer; display: flex; flex-direction: column;
  gap: 4px; align-items: center;
}
.vc-hamburger-btn span { display: block; width: 20px; height: 2px; background: var(--vc-text); border-radius: 2px; }

/* Mobile Drawer */
.vc-mobile-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 1040; display: none; cursor: pointer;
}
.vc-mobile-backdrop.open { display: block; }
.vc-mobile-drawer {
  position: fixed; top: 0; left: 0; width: 300px; max-width: 85vw;
  height: 100vh; background: #fff; z-index: 1050;
  transform: translateX(-100%); transition: transform .3s ease;
  overflow-y: auto; display: flex; flex-direction: column; flex-shrink: 0;
}
.vc-mobile-drawer.open { transform: translateX(0); }
.vc-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--vc-border); flex-shrink: 0;
}
.vc-drawer-close {
  background: none; border: none; cursor: pointer; font-size: 1.25rem;
  color: var(--vc-text-muted); padding: 4px; line-height: 1; display: flex;
}
.vc-drawer-close:hover { color: var(--vc-dark); }
.vc-drawer-body { flex: 1; overflow-y: auto; }
.vc-drawer-nav { list-style: none; margin: 0; padding: 8px 0; }
.vc-drawer-nav li a {
  display: flex; align-items: center; padding: 10px 20px;
  color: var(--vc-text); font-weight: 500; font-size: .9rem; text-decoration: none;
  transition: background var(--transition-fast);
}
.vc-drawer-nav li a:hover { background: var(--vc-bg-soft); color: var(--vc-primary); }
.vc-drawer-nav li a i { width: 20px; }
.vc-drawer-auth { border-top: 1px solid var(--vc-border); padding: 8px 0; }
.vc-drawer-auth a {
  display: flex; align-items: center; padding: 10px 20px;
  color: var(--vc-text); font-size: .9rem; text-decoration: none;
}
.vc-drawer-auth a:hover { background: var(--vc-bg-soft); }

/* Drawer link — used as direct <a> elements (not li > a) */
.vc-drawer-link {
  display: flex; align-items: center; padding: 10px 20px;
  color: var(--vc-text); font-weight: 500; font-size: .9rem;
  text-decoration: none; transition: background var(--transition-fast);
}
.vc-drawer-link:hover { background: var(--vc-bg-soft); color: var(--vc-primary); text-decoration: none; }
.vc-drawer-link.danger { color: var(--vc-danger) !important; }
.vc-drawer-link.danger:hover { background: #fee2e2; }

/* Hamburger button */
.vc-hamburger {
  background: none; border: 1px solid var(--vc-border); border-radius: 6px;
  padding: 7px 9px; cursor: pointer; display: flex; flex-direction: column;
  gap: 4px; align-items: center;
}
.vc-hamburger span { display: block; width: 20px; height: 2px; background: var(--vc-text); border-radius: 2px; }

/* User Dropdown in Nav */
.vc-user-dropdown { position: relative; }
.vc-user-btn {
  background: #f1f5f9; border: 1px solid var(--vc-border);
  border-radius: var(--radius-pill); padding: .35rem .875rem;
  font-size: .875rem; font-weight: 500; color: var(--vc-text);
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: background var(--transition-fast);
}
.vc-user-btn:hover { background: #e2e8f0; }
.vc-user-dropdown-menu {
  position: absolute; right: 0; top: calc(100% + 6px);
  min-width: 180px; background: #fff; border: 1px solid var(--vc-border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 6px 0; z-index: 1000; display: none;
}
.vc-user-dropdown-menu.open { display: block; }
.vc-user-dropdown-item {
  display: flex; align-items: center; gap: 8px; padding: 8px 16px;
  font-size: .875rem; color: var(--vc-text); text-decoration: none;
  cursor: pointer; transition: background var(--transition-fast);
}
.vc-user-dropdown-item:hover { background: var(--vc-bg-soft); text-decoration: none; }
.vc-user-dropdown-item.danger { color: var(--vc-danger) !important; }
.vc-user-dropdown-item.danger:hover { background: #fee2e2; }
.vc-user-dropdown-divider { border-top: 1px solid var(--vc-border); margin: 4px 0; }

/* ─── Megamenu ───────────────────────────────────────────────────────────────── */
.vc-megamenu {
  min-width: 960px; padding: 24px;
  display: none; grid-template-columns: 1fr 1fr 1fr 220px;
  gap: 0; border: none; box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg); position: absolute;
  top: 100%; left: 0; z-index: 1000; background: #fff;
  list-style: none; margin: 0;
}
.vc-nav-item.vc-has-mega:hover .vc-megamenu,
.vc-nav-item.vc-has-mega:focus-within .vc-megamenu { display: grid; }
.megamenu-col { padding: 0 20px; }
.megamenu-col + .megamenu-col { border-left: 1px solid var(--vc-border); }
.megamenu-heading {
  font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--vc-text-muted);
  margin-bottom: 10px; padding-left: 12px;
}
.megamenu-col .mega-item {
  display: flex; align-items: center; gap: 8px; padding: 7px 12px;
  font-size: .875rem; color: var(--vc-text); text-decoration: none;
  border-radius: var(--radius-sm); transition: background var(--transition-fast);
}
.megamenu-col .mega-item:hover { background: var(--vc-bg-soft); color: var(--vc-primary); text-decoration: none; }
.megamenu-col .mega-item i { color: var(--vc-primary); width: 16px; }
.mega-item.fw-semibold.text-primary { font-weight: 600; color: var(--vc-primary); }
.megamenu-featured { padding-left: 16px; }
.megamenu-promo { background: var(--vc-primary-light); border-radius: var(--radius-md); padding: 16px; }
.promo-badge {
  display: inline-block; background: var(--vc-primary); color: #fff;
  font-size: .6875rem; padding: 2px 8px; border-radius: 4px;
  margin-bottom: 8px; font-weight: 600;
}

/* ─── Hero v2 ────────────────────────────────────────────────────────────────── */
.vc-hero-v2 {
  background: linear-gradient(135deg, #032D60 0%, #0c4a8a 50%, #0070D2 100%);
  padding: 52px 0 0; position: relative; overflow: hidden;
  min-height: 520px; display: flex; flex-direction: column;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 20%, transparent 80%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,161,224,0.3) 0%, transparent 70%); top: -100px; right: 5%; }
.hero-orb-2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); bottom: 60px; left: 5%; }

.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px; padding: 7px 18px; font-size: .8125rem; font-weight: 500;
  color: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #34d399;
  box-shadow: 0 0 0 3px rgba(52,211,153,0.3); position: relative; flex-shrink: 0;
}
.badge-dot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: rgba(52,211,153,0.35); animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(2.2);opacity:0} }

.hero-v2-title {
  font-family: var(--font-primary); font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -0.025em;
}
.hero-gradient-text {
  background: linear-gradient(90deg, #60c8ff 0%, #93e5ff 60%, #ffffff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-v2-sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 520px; line-height: 1.7; }
.hero-v2-sub strong { color: rgba(255,255,255,0.92); }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: #0070D2;
  font-weight: 700; font-size: 1rem; padding: 13px 28px; border-radius: 999px;
  text-decoration: none; border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.btn-hero-primary:hover {
  background: #f0f9ff; color: #005FB2;
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  text-decoration: none;
}
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.88);
  font-weight: 600; font-size: .9375rem; padding: 12px 28px; border-radius: 999px;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.12); color: #fff;
  border-color: rgba(255,255,255,0.35); transform: translateY(-2px); text-decoration: none;
}

.hero-trust-row { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; font-size: .8125rem; color: rgba(255,255,255,0.65); font-weight: 500; }

.hero-illustration-wrap { position: relative; width: 100%; max-width: 540px; }
.hero-main-svg { width: 100%; height: auto; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4)); }

.hero-float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(16px); border-radius: 14px; padding: 10px 16px;
  color: #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: float-card 4s ease-in-out infinite;
}
.hero-float-1 { top: 12%; left: -4%; animation-delay: 0s; }
.hero-float-2 { top: 42%; right: -2%; animation-delay: 1.3s; }
.hero-float-3 { bottom: 18%; left: 4%; animation-delay: 0.7s; }
@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hfc-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hfc-number { font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1; }
.hfc-label { font-size: .72rem; color: rgba(255,255,255,0.6); margin-top: 2px; white-space: nowrap; }

.hero-cable-anim { stroke-dasharray: 200; stroke-dashoffset: 200; animation: cable-draw 1.8s ease forwards 0.4s; }
@keyframes cable-draw { to { stroke-dashoffset: 0; } }
.hero-led-pulse { animation: led-glow 1.5s ease-in-out infinite; }
@keyframes led-glow { 0%,100%{opacity:0.9} 50%{opacity:0.4} }
.hero-bolt-group { animation: bolt-float 2s ease-in-out infinite; }
@keyframes bolt-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.hero-wave { margin-top: auto; line-height: 0; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ─── Stats strip ────────────────────────────────────────────────────────────── */
.vc-stats-strip { background: var(--vc-bg-soft); border-bottom: 1px solid var(--vc-border); }
.stats-strip-item { padding: 28px 16px; border-right: 1px solid var(--vc-border); }
.cell:last-child .stats-strip-item, .col-md-3:last-child .stats-strip-item { border-right: none; }
.stats-strip-num { font-family: var(--font-primary); font-size: 1.875rem; font-weight: 800; color: var(--vc-primary); line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em; }
.stats-strip-label { font-size: .8125rem; color: var(--vc-text-muted); font-weight: 500; }

/* ─── Section headings ───────────────────────────────────────────────────────── */
.section-eyebrow { display: inline-block; font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--vc-primary); margin-bottom: 10px; }
.section-title { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.025em; line-height: 1.15; }
.section-sub { color: var(--vc-text-muted); font-size: 1.0625rem; max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ─── Product card ───────────────────────────────────────────────────────────── */
.charger-card {
  background: var(--vc-white); border: 1px solid var(--vc-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal);
  height: 100%; display: flex; flex-direction: column;
}
.charger-card:hover { box-shadow: var(--shadow-hover); border-color: rgba(0,112,210,.25); transform: translateY(-3px); }
.charger-card .card-img-top { aspect-ratio: 1; object-fit: contain; padding: 12px; background: var(--vc-bg-soft); transition: transform var(--transition-normal); width: 100%; display: block; }
.charger-card:hover .card-img-top { transform: scale(1.04); }
.charger-card .card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.charger-card .card-title { font-size: .9375rem; font-weight: 600; line-height: 1.4; margin-bottom: 8px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: var(--vc-dark); }
.charger-card .price { font-size: 1.125rem; font-weight: 800; color: var(--vc-dark); font-family: var(--font-primary); letter-spacing: -0.01em; }
.charger-card .price-original { font-size: .875rem; text-decoration: line-through; color: var(--vc-text-muted); }
.badge-connector { font-size: .6875rem; background: var(--vc-primary-light); color: var(--vc-primary); padding: 2px 7px; border-radius: 4px; font-weight: 600; }

/* Grid card rows */
.card-grid { display: grid; gap: 1rem; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .card-grid.cols-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .card-grid.cols-4, .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; } }

/* ─── Seller card ────────────────────────────────────────────────────────────── */
.seller-card { background: var(--vc-white); border: 1px solid var(--vc-border); border-radius: var(--radius-lg); padding: 20px; transition: box-shadow var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal); }
.seller-card:hover { box-shadow: var(--shadow-md); border-color: rgba(0,112,210,.3); transform: translateY(-2px); }
.seller-logo { width: 64px; height: 64px; object-fit: contain; border-radius: var(--radius-md); border: 1px solid var(--vc-border); background: var(--vc-bg-soft); padding: 6px; }

/* ─── Filter sidebar ─────────────────────────────────────────────────────────── */
.filter-card { background: var(--vc-white); border: 1px solid var(--vc-border); border-radius: var(--radius-lg); padding: 20px; position: sticky; top: 72px; }
.filter-title { font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--vc-text-muted); margin-bottom: 10px; }

/* ─── Detail page ────────────────────────────────────────────────────────────── */
.detail-gallery .main-img { width: 100%; aspect-ratio: 1; object-fit: contain; background: var(--vc-bg-soft); border-radius: var(--radius-lg); border: 1px solid var(--vc-border); padding: 16px; cursor: zoom-in; }
.detail-gallery .thumb { width: 72px; height: 72px; object-fit: contain; border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer; background: var(--vc-bg-soft); padding: 4px; transition: border-color var(--transition-fast); }
.detail-gallery .thumb.active, .detail-gallery .thumb:hover { border-color: var(--vc-primary); }
.spec-table td:first-child { font-weight: 600; color: #444; width: 40%; }

/* ─── Toast ──────────────────────────────────────────────────────────────────── */
#toastContainer { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.vc-toast { min-width: 280px; max-width: 380px; padding: 14px 18px; border-radius: var(--radius-md); font-size: .9rem; font-weight: 500; box-shadow: 0 4px 20px rgba(0,0,0,.15); display: flex; align-items: center; gap: 10px; animation: slideIn .3s ease; }
.vc-toast.success { background: #0070D2; color: #fff; }
.vc-toast.error   { background: #dc2626; color: #fff; }
.vc-toast.warning { background: #f59e0b; color: #212529; }
.vc-toast.info    { background: #fff; color: #333; border: 1px solid var(--vc-border); }
.vc-toast .close-btn { margin-left: auto; cursor: pointer; opacity: .7; font-size: 1.1rem; background: none; border: none; color: inherit; line-height: 1; }
@keyframes slideIn { from{transform:translateX(120%);opacity:0} to{transform:translateX(0);opacity:1} }
@keyframes fadeOut { to{opacity:0;transform:translateX(60%)} }

/* ─── Sidebar (admin/seller dashboard) ──────────────────────────────────────── */
.sidebar { width: 240px; min-height: 100vh; background: var(--vc-dark); color: #c9d1d9; position: fixed; top: 0; left: 0; z-index: 100; transition: transform .3s; display: flex; flex-direction: column; }
.sidebar .brand { padding: 20px; font-family: var(--font-primary); font-weight: 800; font-size: 1.1rem; color: #fff; border-bottom: 1px solid rgba(255,255,255,.1); letter-spacing: -0.01em; }
.sidebar .nav { flex-direction: column; flex: 1; }
.sidebar .nav-link { color: #94a3b8 !important; padding: 10px 20px; display: flex; align-items: center; gap: 10px; font-size: .875rem; transition: all var(--transition-fast); }
.sidebar .nav-link:hover, .sidebar .nav-link.active { background: rgba(255,255,255,.07); color: #fff !important; text-decoration: none; }
.sidebar .nav-link .bi, .sidebar .nav-link i { font-size: 1rem; }
.sidebar .nav-link.text-danger { color: var(--vc-danger) !important; }
.main-content { margin-left: 240px; padding: 24px; min-height: 100vh; }

/* ─── Stat cards ─────────────────────────────────────────────────────────────── */
.stat-card { background: var(--vc-white); border-radius: var(--radius-lg); padding: 20px; border-left: 4px solid var(--vc-primary); box-shadow: var(--shadow-card); }
.stat-card .stat-val { font-size: 2rem; font-weight: 800; line-height: 1; color: var(--vc-dark); font-family: var(--font-primary); letter-spacing: -0.02em; }
.stat-card .stat-label { font-size: .8125rem; color: var(--vc-text-muted); margin-top: 4px; }

/* ─── Status badges ──────────────────────────────────────────────────────────── */
.badge-pending      { background: #fff3cd; color: #856404; }
.badge-approved     { background: #d1fae5; color: #065f46; }
.badge-rejected     { background: #fee2e2; color: #991b1b; }
.badge-suspended    { background: #e2e3e5; color: #383d41; }
.badge-under-review { background: #dbeafe; color: #1e40af; }
.badge-draft        { background: #f1f5f9; color: #64748b; border: 1px solid var(--vc-border); }

/* ─── Sell CTA ───────────────────────────────────────────────────────────────── */
.vc-sell-cta-section { background: linear-gradient(135deg, #032D60 0%, #0c4a8a 50%, #0070D2 100%); padding: var(--section-py) 0; }
.vc-sell-cta-section h2 { color: #fff; }
.vc-sell-cta-section p  { color: #94a3b8; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
footer { background: var(--vc-dark); color: #94a3b8; padding: 56px 0 24px; margin-top: auto; }
footer h6 { color: #fff; font-family: var(--font-primary); font-weight: 700; margin-bottom: 14px; }
footer a { color: #94a3b8 !important; font-size: .9rem; }
footer a:hover { color: #fff !important; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; margin-top: 40px; font-size: .8125rem; }

/* ─── Spinner / Loading ──────────────────────────────────────────────────────── */
.loading-overlay { position: fixed; inset: 0; background: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; z-index: 9998; }
.spinner-vc { width: 48px; height: 48px; border: 4px solid var(--vc-border); border-top-color: var(--vc-primary); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }

/* ─── Empty state ────────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 60px 20px; color: var(--vc-text-muted); }
.empty-state .bi, .empty-state i { font-size: 3rem; opacity: .35; }

/* ─── Why cards ──────────────────────────────────────────────────────────────── */
.vc-why-card { background: var(--vc-white); border: 1px solid var(--vc-border); border-radius: var(--radius-lg); padding: 28px; transition: box-shadow var(--transition-normal), transform var(--transition-normal); }
.vc-why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.375rem; margin-bottom: 16px; }
.why-icon--blue   { background: #E8F4FD; color: #0070D2; }
.why-icon--green  { background: #f0fdf4; color: #15803d; }
.why-icon--orange { background: #fff7ed; color: #c2410c; }
.why-icon--purple { background: #faf5ff; color: #7c3aed; }

/* ─── Account type toggle (register) ────────────────────────────────────────── */
.account-type-toggle { display: flex; gap: 0; border: 1px solid var(--vc-border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.5rem; }
.account-type-toggle input[type=radio] { display: none; }
.account-type-toggle label {
  flex: 1; text-align: center; padding: .6rem 1rem; cursor: pointer;
  font-weight: 500; font-size: .9375rem; color: var(--vc-text-muted);
  background: #fff; border: none; transition: all var(--transition-fast);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.account-type-toggle input[type=radio]:checked + label {
  background: var(--vc-primary); color: #fff;
}
.account-type-toggle label:first-of-type { border-right: 1px solid var(--vc-border); }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .vc-hero-v2 { padding: 36px 0 0; }
  .hero-v2-title { font-size: 2rem; }
  .hero-float-1, .hero-float-2, .hero-float-3 { display: none; }
  .hero-illustration-wrap { max-width: 420px; }
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
}
@media (max-width: 575.98px) {
  .vc-hero-v2 { padding: 24px 0 0; }
  .hero-v2-title { font-size: 1.75rem; }
  .hero-trust-row { gap: 12px; }
  .stats-strip-num { font-size: 1.5rem; }
  .stats-strip-item { border-right: none; border-bottom: 1px solid var(--vc-border); }
}
