/* Screen-reader-only utility (accessibility) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



/* ========== Mobile-First Refinements ========== */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .container { padding: 0 16px; }
  .hero { padding: 48px 0 32px; }
  .btn-lg { padding: 13px 22px; font-size: 0.92rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .final-cta-buttons .btn { width: 100%; }
  .stat-counters { padding: 48px 0; }
}

/* Ensure no horizontal overflow */
html, body { overflow-x: hidden; max-width: 100%; }
img, svg, video, iframe { max-width: 100%; height: auto; }
table { max-width: 100%; }

/* Touch target compliance — ensure all interactive elements meet 44x44 minimum */
@media (max-width: 900px) {
  .btn { min-height: 44px; }
  .faq-question { min-height: 56px; }
  .nav-links a { min-height: 48px; }
  .pricing-card .btn { min-height: 48px; }
}


/* High-contrast mode support */
@media (prefers-contrast: high) {
  .btn-outline { border-width: 3px; }
  .faq-item, .feature-card, .case-card { border-width: 2px; }
}

/* =================================================
   THE 4 TYPES OF WMS — Card pattern (shadcn-style)
   ================================================= */
.types-section {
  position: relative;
  background-color: #fafbff;
  background-image: radial-gradient(rgba(85,88,166,0.16) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  background-position: 0 0;
}
.types-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff 0%, transparent 80px, transparent calc(100% - 80px), #fff 100%);
  pointer-events: none;
}
.types-section > * { position: relative; z-index: 1; }
.types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 800px) {
  .types-grid { grid-template-columns: 1fr; gap: 18px; }
}
.type-card {
  background: #fff;
  border: 1px solid #e7e8ee;
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 220px;
  transition:
    transform .4s cubic-bezier(.16,1,.3,1),
    box-shadow .4s cubic-bezier(.16,1,.3,1),
    border-color .4s;
  position: relative;
}
/* Subtle gradient sheen that fades in on hover — clipped by its own border-radius
   so the .featured ::after badge can sit outside the card without being cropped */
.type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(85,88,166,0.05) 0%, rgba(74,185,234,0.05) 100%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.type-card > * { position: relative; z-index: 1; }
.type-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 56px -24px rgba(85,88,166,0.28),
    0 8px 16px -8px rgba(74,185,234,0.12);
  border-color: rgba(85,88,166,0.4);
}
.type-card:hover::before { opacity: 1; }
.type-card:hover .type-card-title { color: var(--wg-primary); }
.type-card:hover .type-card-badge {
  background: var(--wg-primary);
  color: #fff;
  border-color: var(--wg-primary);
}
.type-card.featured {
  border-color: var(--wg-primary);
  border-width: 2px;
  padding: 35px;
}
.type-card.featured::after {
  content: 'WAREGO\'S FIT';
  position: absolute;
  top: -10px;
  left: 32px;
  background: var(--wg-highlight);
  color: var(--wg-text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  z-index: 2;
}
.type-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.type-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--wg-text);
  margin: 0;
  transition: color .3s;
}
.type-card-badge {
  background: #f5f5f7;
  border: 1px solid #e7e8ee;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--wg-text);
  flex-shrink: 0;
  white-space: nowrap;
  transition: background-color .3s, color .3s, border-color .3s;
}
.type-card-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--wg-text-muted);
  margin: 0;
  flex: 1;
}
@media (prefers-reduced-motion: reduce) {
  .type-card,
  .type-card::before,
  .type-card-title,
  .type-card-badge { transition: none; }
  .type-card:hover { transform: none; }
}
@media (max-width: 600px) {
  .type-card { padding: 28px; }
  .type-card.featured { padding: 27px; }
}

/* =================================================
   PRODUCT SCREENSHOT SHOWCASE
   ================================================= */

/* Browser frame for product screenshots */
.browser-frame {
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 30px 60px -20px rgba(85, 88, 166, 0.18),
    0 18px 36px -18px rgba(74, 185, 234, 0.12);
  overflow: hidden;
  position: relative;
  transition: transform .55s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.browser-frame:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 40px 80px -20px rgba(85, 88, 166, 0.28),
    0 24px 48px -18px rgba(74, 185, 234, 0.18);
}
.browser-frame-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #fafbff, #f4f6fc);
  border-bottom: 1px solid var(--wg-border);
  position: relative;
}
.browser-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.browser-dot.r { background: #ff6058; }
.browser-dot.y { background: #ffbd2e; }
.browser-dot.g { background: #27c93f; }
.browser-frame-url {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  margin-left: 10px;
  font-size: 0.72rem;
  color: var(--wg-text-light);
  border: 1px solid var(--wg-border);
  font-family: 'Inter', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-frame-url::before {
  content: '🔒';
  margin-right: 6px;
  font-size: 0.7rem;
  opacity: 0.6;
}
.browser-frame img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
  transition: opacity .3s;
}
.browser-frame img[data-loaded="false"] { opacity: 0; }
.browser-frame img[data-loaded="true"] { opacity: 1; }

/* =================================================
   IN-HTML PRODUCT MOCKUPS
   Authentic WareGo UI rendered in HTML+CSS
   ================================================= */
.ss-mock {
  width: 100%;
  display: block;
  background: #f5f7fb;
  font-family: 'Inter', sans-serif;
  color: #272626;
  position: relative;
  overflow: hidden;
}

/* Standard product chrome */
.m-app {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 580px;
  background: #f5f7fb;
  font-size: 11px;
  line-height: 1.3;
}
.m-sidebar {
  background: #fff;
  border-right: 1px solid #eef0f7;
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.m-sidebar .m-logo {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #5558A6, #4AB9EA);
  border-radius: 8px;
  margin-bottom: 14px;
  position: relative;
}
.m-sidebar .m-logo::after {
  content: '';
  position: absolute;
  inset: 6px;
  background: #fff;
  border-radius: 4px;
  opacity: 0.25;
}
.m-sidebar .m-nav-item {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3b8;
}
.m-sidebar .m-nav-item.active {
  background: #ecedf8;
  color: #5558A6;
}
.m-sidebar .m-nav-item svg { width: 16px; height: 16px; }

.m-topbar {
  background: #fff;
  border-bottom: 1px solid #eef0f7;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
}
.m-topbar .m-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #272626;
}
.m-topbar .m-search {
  flex: 1;
  background: #f5f7fb;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 10px;
  color: #9ca3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}
.m-topbar .m-search::before {
  content: '';
  width: 10px; height: 10px;
  border: 1.5px solid #9ca3b8;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.m-topbar .m-country {
  background: #fff;
  border: 1px solid #eef0f7;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 10px;
  color: #6b6b6b;
  min-width: 130px;
}
.m-topbar .m-country small { display: block; font-size: 8px; color: #9ca3b8; }
.m-topbar .m-user {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px;
}
.m-topbar .m-user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5a623, #b07300);
}
.m-topbar .m-user-meta strong { display: block; font-size: 10px; font-weight: 700; color: #272626; }
.m-topbar .m-user-meta span { font-size: 9px; color: #9ca3b8; }

.m-body {
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.m-breadcrumb {
  font-size: 10px;
  color: #6b6b6b;
}
.m-breadcrumb b { color: #272626; font-weight: 600; }

/* ========== DASHBOARD MOCKUP ========== */
.m-dash-overview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.m-dash-overview-row .m-overview-title { font-size: 12px; font-weight: 600; }
.m-dash-overview-row .m-metric-pill {
  border: 1px solid #eef0f7;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 9px;
  color: #6b6b6b;
  background: #fff;
}
.m-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.m-kpi {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid #eef0f7;
}
.m-kpi-label {
  font-size: 9px;
  color: #6b6b6b;
  margin-bottom: 6px;
  font-weight: 500;
}
.m-kpi-value {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #272626;
  line-height: 1;
}
.m-kpi-ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.m-kpi-ico svg { width: 16px; height: 16px; }
.m-kpi-ico.blue { background: #e4ecff; color: #5558A6; }
.m-kpi-ico.yellow { background: #fff5d6; color: #b07300; }
.m-kpi-ico.red { background: #ffe9e9; color: #b54848; }
.m-kpi-ico.purple { background: #ecedf8; color: #5558A6; }
.m-kpi-ico.green { background: #d6f3e1; color: #1f6c33; }
.m-kpi-ico.sky { background: #d6efff; color: #2d9ad0; }

.m-chart-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 10px;
}
.m-chart-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #eef0f7;
  position: relative;
}
.m-chart-title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m-chart-title .m-close {
  font-size: 14px;
  color: #c4c8d4;
  cursor: pointer;
}
/* Donut chart */
.m-donut {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: conic-gradient(#5558A6 0% 73%, #e4e7f0 73% 100%);
  margin: 12px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-donut::before {
  content: '';
  width: 70px; height: 70px;
  background: #fff;
  border-radius: 50%;
}
.m-donut-label {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #272626;
  box-shadow: 0 2px 6px rgba(85,88,166,0.15);
}
.m-donut-label.l1 { top: 0; left: 50%; transform: translate(-90%, -30%); }
.m-donut-label.l2 { bottom: 0; right: 50%; transform: translate(95%, 30%); }
.m-donut-legend {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 9px;
  color: #6b6b6b;
  margin-top: 6px;
}
.m-donut-legend span { display: flex; align-items: center; gap: 4px; }
.m-donut-legend .dot { width: 8px; height: 8px; border-radius: 50%; }
/* Bar chart */
.m-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 110px;
  padding: 0 4px;
  border-bottom: 1px solid #eef0f7;
  margin-top: 8px;
}
.m-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  height: 100%;
  justify-content: flex-end;
}
.m-bar-pair {
  display: flex;
  gap: 1px;
  align-items: flex-end;
  height: 100%;
  width: 100%;
  justify-content: center;
}
.m-bar {
  width: 6px;
  background: #5558A6;
  border-radius: 1px 1px 0 0;
}
.m-bar.gray { background: #d6dae6; }
.m-bar-label {
  font-size: 7px;
  color: #9ca3b8;
  margin-top: 2px;
}
.m-bar-legend {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 9px;
  color: #6b6b6b;
  margin-bottom: 6px;
}
.m-bar-legend .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 4px; }
/* Aging chart */
.m-aging-bars {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  height: 110px;
  justify-content: space-around;
  padding: 0 12px;
}
.m-aging-bar {
  width: 38px;
  background: #5558A6;
  border-radius: 2px 2px 0 0;
}
.m-aging-bar.muted { background: #e4e7f0; }
.m-aging-axis {
  display: flex;
  justify-content: space-around;
  font-size: 9px;
  color: #6b6b6b;
  border-top: 1px solid #eef0f7;
  padding-top: 4px;
}
.m-aging-axis-label {
  text-align: center;
  font-size: 8px;
  color: #5558A6;
  background: #ecedf8;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 8px;
  text-align: center;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

/* ========== TABLE MOCKUPS (Orders, POs, Shipment Correction) ========== */
.m-table-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #eef0f7;
}
.m-table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 10px;
  flex-wrap: wrap;
}
.m-table-head h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}
.m-table-controls {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.m-ctrl {
  background: #f5f7fb;
  border: 1px solid #eef0f7;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 10px;
  color: #6b6b6b;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.m-ctrl.primary {
  background: #5558A6;
  color: #fff;
  border-color: #5558A6;
}
.m-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 9.5px;
}
.m-table th, .m-table td {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid #f0f2f8;
}
.m-table th {
  font-size: 9px;
  font-weight: 600;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.m-table tr.highlight { background: rgba(85,88,166,0.06); }
.m-table .m-check {
  width: 12px; height: 12px;
  border: 1.5px solid #c4c8d4;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
}
.m-table .m-check.on {
  background: #5558A6;
  border-color: #5558A6;
  position: relative;
}
.m-table .m-check.on::after {
  content: '✓';
  color: #fff;
  font-size: 8px;
  position: absolute;
  top: -2px; left: 1px;
}
.m-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
}
.m-pill.green { background: #d6f3e1; color: #1f6c33; }
.m-pill.yellow { background: #fff5d6; color: #b07300; }
.m-pill.blue { background: #d6efff; color: #2d9ad0; }
.m-pill.purple { background: #ecedf8; color: #5558A6; }
.m-pill.red { background: #ffe9e9; color: #b54848; }

.m-actions {
  display: flex;
  gap: 3px;
}
.m-action-btn {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}
.m-action-btn.red { background: #ffe9e9; color: #b54848; }
.m-action-btn.green { background: #d6f3e1; color: #1f6c33; }
.m-action-btn.blue { background: #d6efff; color: #2d9ad0; }
.m-action-btn.gray { background: #f0f2f8; color: #6b6b6b; }

/* Show/Hide dropdown overlay */
.m-dropdown {
  position: absolute;
  top: 64px; right: 60px;
  background: #fff;
  border: 1px solid #eef0f7;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  padding: 8px 0;
  font-size: 10px;
  min-width: 140px;
  z-index: 2;
}
.m-dropdown-head {
  background: #4AB9EA;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px 6px 0 0;
  font-weight: 700;
  margin: -8px 0 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m-dropdown-item {
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b6b6b;
}
.m-dropdown-item .m-check {
  width: 11px; height: 11px;
}
.m-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 9px;
  color: #6b6b6b;
}
.m-pagination .m-pages {
  display: flex;
  gap: 4px;
}
.m-pagination .m-page {
  width: 20px; height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fb;
  color: #6b6b6b;
}
.m-pagination .m-page.active { background: #5558A6; color: #fff; }

/* ========== FORM MOCKUP (Mass Allocation) ========== */
.m-form-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  border: 1px solid #eef0f7;
}
.m-form-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #272626;
}
.m-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.m-form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.m-form-label {
  font-size: 9px;
  font-weight: 600;
  color: #5558A6;
}
.m-form-input {
  background: #fff;
  border: 1px solid #d6dae6;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 10px;
  color: #9ca3b8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m-form-input .m-cal-ico {
  font-size: 10px;
}
.m-form-submit {
  background: #5558A6;
  color: #fff;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 10px;
  font-weight: 600;
  display: inline-block;
  margin-top: 8px;
}

/* ========== REPORTS MOCKUP (Split: list + invoice preview) ========== */
.m-reports-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.m-reports-tab {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  color: #6b6b6b;
  border: 1px solid #eef0f7;
  background: #fff;
}
.m-reports-tab.active {
  background: #5558A6;
  color: #fff;
  border-color: #5558A6;
}
.m-reports-tab.sub {
  background: #ecedf8;
  color: #5558A6;
  border-color: #ecedf8;
}
.m-reports-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 12px;
}
.m-invoice-list {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #eef0f7;
}
.m-invoice-search {
  background: #f5f7fb;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 9px;
  color: #9ca3b8;
  margin-bottom: 10px;
}
.m-invoice-filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  margin-bottom: 12px;
}
.m-invoice-filter {
  background: #fff;
  border: 1px solid #d6dae6;
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 8px;
  color: #9ca3b8;
}
.m-invoice-day {
  font-size: 10px;
  font-weight: 700;
  color: #272626;
  margin: 10px 0 6px;
}
.m-invoice-item {
  background: #fff;
  border: 1px solid #eef0f7;
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}
.m-invoice-item .m-pdf-icon {
  width: 18px; height: 22px;
  background: #b54848;
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}
.m-invoice-item .m-pdf-icon::after {
  content: 'PDF';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 5px;
  font-weight: 700;
}
.m-invoice-item-meta { font-size: 8px; color: #9ca3b8; margin-top: 2px; }

.m-invoice-preview {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eef0f7;
  overflow: hidden;
}
.m-invoice-preview-head {
  padding: 10px 14px;
  border-bottom: 1px solid #eef0f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
}
.m-invoice-pdf {
  background: linear-gradient(180deg, #fff 0%, #f5f7fb 100%);
  padding: 14px;
  min-height: 360px;
}
.m-invoice-pdf-banner {
  height: 60px;
  background: linear-gradient(135deg, #5558A6 0%, #4AB9EA 100%);
  border-radius: 6px;
  position: relative;
  margin-bottom: 14px;
}
.m-invoice-pdf-banner::after {
  content: 'INVOICE';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 18px;
  color: #272626;
  background: #fff;
  padding: 4px 12px;
  border-radius: 4px;
}
.m-invoice-pdf-to {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.m-invoice-pdf-to-meta { font-size: 9px; color: #6b6b6b; }
.m-invoice-pdf-to-meta strong { font-family: 'Poppins'; font-weight: 700; font-size: 12px; color: #272626; display: block; margin-top: 2px; }
.m-invoice-pdf-to-pill {
  background: #4AB9EA;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 600;
}
.m-invoice-pdf-qr {
  width: 60px; height: 60px;
  background:
    repeating-linear-gradient(90deg, #272626 0 3px, #fff 3px 6px),
    repeating-linear-gradient(0deg, #272626 0 3px, #fff 3px 6px);
  background-blend-mode: multiply;
}
.m-invoice-pdf-table {
  background: #5558A6;
  color: #fff;
  border-radius: 4px;
  padding: 6px 12px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  font-size: 9px;
  font-weight: 600;
  margin-bottom: 4px;
}
.m-invoice-pdf-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 6px 12px;
  font-size: 9px;
  border-bottom: 1px solid #eef0f7;
  color: #6b6b6b;
}
.m-invoice-pdf-totals {
  margin-top: 10px;
  padding: 0 12px;
}
.m-invoice-pdf-total-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 9px;
  border-bottom: 1px solid #eef0f7;
}
.m-invoice-pdf-total-row.grand {
  font-weight: 700;
  border-bottom: 0;
  padding-top: 8px;
}

/* ========== INTEGRATIONS MOCKUP ========== */
.m-int-grid {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid #eef0f7;
}
.m-int-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 4px;
}
.m-int-subtitle { font-size: 9px; color: #6b6b6b; margin-bottom: 12px; }
.m-int-count {
  background: #f5f7fb;
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 9px;
  color: #6b6b6b;
  margin-left: 4px;
}
.m-int-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.m-int-card {
  background: #fff;
  border: 1px solid #eef0f7;
  border-radius: 10px;
  padding: 14px;
  font-size: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 168px;
}
.m-int-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.m-int-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.m-int-logo {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.m-int-name {
  font-weight: 700;
  font-size: 11px;
  line-height: 1.2;
  color: #272626;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-int-cat {
  font-size: 9px;
  color: #9ca3b8;
  margin-top: 2px;
}
.m-int-status {
  font-size: 9px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
}
.m-int-status .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.m-int-status.connected { color: #1f6c33; background: rgba(31,108,51,0.08); }
.m-int-status.connected .dot { background: #1f6c33; }
.m-int-status.notconnected { color: #b54848; background: rgba(181,72,72,0.08); }
.m-int-status.notconnected .dot { background: #b54848; }
.m-int-desc {
  font-size: 9.5px;
  color: #6b6b6b;
  line-height: 1.5;
  flex: 1;
}
.m-int-actions {
  display: flex;
  gap: 6px;
  margin-top: auto;
}
.m-int-btn {
  flex: 1;
  background: #5558A6;
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 9.5px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-int-btn.outline {
  background: #f5f7fb;
  color: #6b6b6b;
}
.m-int-filter-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.m-int-filter {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 9px;
  background: #fff;
  border: 1px solid #eef0f7;
  color: #6b6b6b;
}
.m-int-filter.active { background: #ecedf8; color: #5558A6; }

/* ========== RECEIVING / DOCK MOCKUP (custom for day-in-life morning) ========== */
.m-receive-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}
@media (max-width: 700px) { .m-receive-grid { grid-template-columns: 1fr; } }
.m-receive-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eef0f7;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m-receive-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}
.m-receive-h strong { font-family: 'Poppins'; font-weight: 700; font-size: 12px; }
.m-receive-h .m-asn { background:#5558A6; color:#fff; font-size:9px; padding:3px 8px; border-radius:4px; font-weight:600; letter-spacing:0.04em; }
.m-receive-prog {
  background: #f5f7fb;
  border-radius: 8px;
  padding: 12px 14px;
}
.m-receive-prog-meta { font-size: 9px; color: #6b6b6b; margin-bottom: 4px; font-weight: 600; }
.m-receive-prog-num {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 22px;
  color: #5558A6;
  line-height: 1;
}
.m-receive-prog-num small { font-size: 13px; color: #9ca3b8; font-weight: 600; }
.m-receive-prog-bar {
  background: #e4e7f0;
  border-radius: 999px;
  height: 6px;
  margin-top: 8px;
  overflow: hidden;
}
.m-receive-prog-bar div {
  background: linear-gradient(90deg, #5558A6, #4AB9EA);
  height: 100%;
  width: 98%;
  border-radius: 999px;
}
.m-receive-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 10px;
}
.m-receive-row.alert { background: rgba(245,166,35,0.1); color: #b07300; }
.m-receive-row.ok { background: rgba(85,88,166,0.08); color: #5558A6; font-weight: 600; }
.m-receive-row.ok::before { content: '✓ '; }
.m-receive-row .arrow { font-weight: 600; }
.m-receive-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.m-receive-pallet {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f7fb;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 9.5px;
}
.m-receive-pallet .m-pallet-ico {
  width: 22px; height: 22px;
  background: #5558A6;
  border-radius: 4px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 9px;
}
.m-receive-pallet .m-pallet-meta { flex: 1; min-width: 0; }
.m-receive-pallet .m-pallet-meta strong { display: block; font-size: 10px; color: #272626; }
.m-receive-pallet .m-pallet-meta span { font-size: 8px; color: #9ca3b8; }
.m-receive-pallet .m-pallet-status {
  font-size: 8px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(31,108,51,0.1);
  color: #1f6c33;
  flex-shrink: 0;
}
.m-receive-zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.m-receive-zone {
  background: #f5f7fb;
  border: 1px solid #eef0f7;
  border-radius: 6px;
  padding: 8px 6px;
  text-align: center;
  font-size: 9px;
}
.m-receive-zone.active { background: rgba(85,88,166,0.1); border-color: #5558A6; color: #5558A6; }
.m-receive-zone strong {
  display: block;
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 13px;
  color: #272626;
  margin-top: 2px;
}
.m-receive-zone.active strong { color: #5558A6; }

/* ========== PICKING / WAVE MOCKUP (custom for day-in-life midday) ========== */
.m-pick-hero {
  background: linear-gradient(135deg, #5558A6 0%, #424479 100%);
  color: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m-pick-hero-left strong { font-family:'Poppins'; font-weight:800; font-size:13px; display:block; }
.m-pick-hero-left span { font-size: 10px; opacity: 0.8; }
.m-pick-hero-stat {
  text-align: right;
}
.m-pick-hero-stat strong {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 22px;
  color: #D7DF23;
  line-height: 1;
}
.m-pick-hero-stat span { font-size: 9px; opacity: 0.8; }
.m-pick-row3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.m-pick-stat-card {
  background: #fff;
  border: 1px solid #eef0f7;
  border-radius: 10px;
  padding: 12px;
}
.m-pick-stat-card .m-pick-label { font-size: 9px; color: #6b6b6b; font-weight: 600; margin-bottom: 4px; }
.m-pick-stat-card .m-pick-value {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 22px;
  color: #5558A6;
  line-height: 1;
}
.m-pick-stat-card .m-pick-trend { font-size: 9px; color: #1f6c33; margin-top: 4px; }
.m-pick-pickers {
  background: #fff;
  border: 1px solid #eef0f7;
  border-radius: 10px;
  padding: 14px;
}
.m-pick-pickers h5 {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 11px;
  margin: 0 0 10px;
}
.m-picker-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid #f5f7fb;
  font-size: 10px;
}
.m-picker-row:last-child { border-bottom: none; }
.m-picker-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5558A6, #4AB9EA);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 9px;
  flex-shrink: 0;
}
.m-picker-meta { flex: 1; min-width: 0; }
.m-picker-meta strong { font-size: 10px; display: block; }
.m-picker-meta span { font-size: 8.5px; color: #9ca3b8; }
.m-picker-bar {
  width: 80px;
  background: #f5f7fb;
  border-radius: 999px;
  height: 5px;
  overflow: hidden;
  flex-shrink: 0;
}
.m-picker-bar div {
  background: linear-gradient(90deg, #5558A6, #4AB9EA);
  height: 100%;
}
.m-picker-count {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 10px;
  color: #5558A6;
  width: 40px;
  text-align: right;
  flex-shrink: 0;
}
.m-pick-carrier {
  background: rgba(178,220,189,0.25);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #1f6c33;
  font-weight: 600;
}
.m-pick-carrier-meta { font-size: 8.5px; color: #6b6b6b; font-weight: 500; margin-top: 2px; }

/* Responsive: scale mockups down on smaller screens */
@media (max-width: 1100px) {
  .m-int-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .m-app { grid-template-columns: 44px 1fr; min-height: 480px; }
  .m-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .m-chart-grid { grid-template-columns: 1fr; }
  .m-form-grid { grid-template-columns: repeat(2, 1fr); }
  .m-int-cards { grid-template-columns: repeat(2, 1fr); }
  .m-reports-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .m-kpi-grid { grid-template-columns: 1fr 1fr; }
  .m-int-cards { grid-template-columns: 1fr; }
  .m-form-grid { grid-template-columns: 1fr; }
  .m-app { font-size: 10px; }
  .m-body { padding: 12px 14px; }
}

/* Placeholder for missing screenshots — clean, intentional, NOT broken-looking */
.browser-frame .ss-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background:
    linear-gradient(135deg, rgba(85,88,166,0.08) 0%, rgba(74,185,234,0.08) 100%),
    repeating-linear-gradient(45deg, rgba(85,88,166,0.04) 0 14px, transparent 14px 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  font-family: 'Inter', sans-serif;
  color: var(--wg-text-muted);
  text-align: center;
}
.browser-frame .ss-placeholder svg {
  width: 56px; height: 56px;
  color: var(--wg-primary);
  opacity: 0.55;
}
.browser-frame .ss-placeholder .ss-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wg-text);
}
.browser-frame .ss-placeholder .ss-sub {
  font-size: 0.85rem;
  max-width: 380px;
  line-height: 1.5;
}
.browser-frame .ss-placeholder code {
  background: rgba(85,88,166,0.12);
  color: var(--wg-primary);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: 'Inter', monospace;
}
.browser-frame .placeholder {
  background: linear-gradient(90deg, #f4f6fc 25%, #eef0fa 50%, #f4f6fc 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
  width: 100%;
  aspect-ratio: 16/9;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .browser-frame { transition: none; }
  .browser-frame:hover { transform: none; }
  .browser-frame .placeholder { animation: none; }
}

/* Floating accent shapes behind screenshots */
.screenshot-stage {
  position: relative;
  padding: 40px 20px;
}
.screenshot-stage::before,
.screenshot-stage::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.screenshot-stage::before {
  width: 280px; height: 280px;
  background: var(--wg-primary);
  top: 10%; left: -8%;
  opacity: 0.18;
}
.screenshot-stage::after {
  width: 320px; height: 320px;
  background: var(--wg-accent);
  bottom: 10%; right: -10%;
  opacity: 0.15;
}
.screenshot-stage > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .screenshot-stage::before,
  .screenshot-stage::after { display: none; }
}

/* Floating UI annotation badges on/next to screenshots */
.shot-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px -8px rgba(85,88,166,0.25);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--wg-text);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: floatY 4s ease-in-out infinite;
}
.shot-badge.b2 { animation-delay: -1.5s; }
.shot-badge.b3 { animation-delay: -2.8s; }
.shot-badge .b-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.shot-badge .b-meta { line-height: 1.2; }
.shot-badge .b-num { font-family: 'Poppins'; font-weight: 800; font-size: 0.95rem; color: var(--wg-primary); display: block; }
.shot-badge .b-label { font-size: 0.7rem; color: var(--wg-text-light); font-weight: 500; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .shot-badge { animation: none; }
}
@media (max-width: 900px) {
  .shot-badge { display: none; }
}

/* =================================================
   PRODUCT TOUR — Tabbed Showcase
   ================================================= */
.tour-wrap {
  background: linear-gradient(180deg, #ffffff 0%, var(--wg-bg-alt) 100%);
  border-radius: var(--wg-radius-lg);
  padding: 28px 32px 32px;
  margin-top: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.tour-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--wg-border);
}
.tour-tab {
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--wg-text-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s cubic-bezier(.16,1,.3,1);
}
.tour-tab:hover { color: var(--wg-text); background: var(--wg-bg-alt); }
.tour-tab.active {
  background: var(--wg-primary);
  color: #fff;
  border-color: var(--wg-primary);
  box-shadow: 0 8px 20px -8px rgba(85,88,166,0.5);
}
.tour-tab svg { width: 16px; height: 16px; }
.tour-panel {
  display: none;
  animation: tourFadeIn .45s cubic-bezier(.16,1,.3,1);
}
/* NEW: Stacked tour panel — heading + description centered top, mockup below, bullets+CTA in row underneath */
.tour-panel.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: tourFadeIn .45s cubic-bezier(.16,1,.3,1);
}
.tour-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
/* Visual is proportionately scaled down with CSS zoom so the panel
   (heading + description + mockup + footer) fits within a single fold.
   zoom shrinks intrinsic size AND surrounding layout, unlike width/max-width.
   Falls back to transform: scale() in browsers without zoom support. */
.tour-visual {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  zoom: 0.7;
}
@supports not (zoom: 1) {
  .tour-visual {
    transform: scale(0.7);
    transform-origin: top center;
    margin-bottom: -30%; /* offset the visual gap left by scale() */
  }
}
.tour-footer {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 0;
}
.tour-footer .tour-bullets { margin: 0; }
@media (max-width: 900px) {
  .tour-wrap { padding: 24px 18px; }
  .tour-panel.active { gap: 24px; }
  .tour-footer { grid-template-columns: 1fr; gap: 18px; }
}
@keyframes tourFadeIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.tour-copy h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.tour-copy .tour-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--wg-bg-alt);
  color: var(--wg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.tour-copy p {
  font-size: 0.92rem;
  color: var(--wg-text-muted);
  margin-bottom: 0;
  line-height: 1.55;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.tour-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
@media (max-width: 700px) {
  .tour-bullets { grid-template-columns: 1fr; }
}
.tour-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--wg-text);
}
.tour-bullets li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--wg-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* =================================================
   LIGHTBOX (Image Zoom)
   ================================================= */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 50, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  transition: opacity .3s ease;
}
.lb-overlay.open { display: flex; opacity: 1; }
.lb-frame {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  max-width: 1240px;
  max-height: 90vh;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  position: relative;
  transform: scale(0.95);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.lb-overlay.open .lb-frame { transform: scale(1); }
.lb-frame img { display: block; width: 100%; max-height: calc(90vh - 44px); object-fit: contain; }
.lb-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.95);
  border: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform .2s;
}
.lb-close:hover { transform: scale(1.1); }
.lb-close svg { width: 18px; height: 18px; color: var(--wg-text); }
@media (prefers-reduced-motion: reduce) {
  .lb-overlay { transition: none; }
  .lb-overlay.open .lb-frame { transform: none; }
}

/* =================================================
   ASYMMETRIC FEATURE/IMAGE SPLIT
   ================================================= */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}
.feature-split.reverse > .fs-copy { order: 2; }
.feature-split.reverse > .fs-visual { order: 1; }
@media (max-width: 900px) {
  .feature-split { grid-template-columns: 1fr; gap: 24px; }
  .feature-split.reverse > .fs-copy { order: 1; }
  .feature-split.reverse > .fs-visual { order: 2; }
}
.fs-copy h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1.25;
}
.fs-copy .fs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins';
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wg-primary);
  background: var(--wg-bg-alt);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.fs-copy p {
  font-size: 1rem;
  color: var(--wg-text-muted);
  margin-bottom: 18px;
  line-height: 1.65;
}
.fs-copy ul { list-style: none; padding: 0; margin: 0 0 24px; }
.fs-copy ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--wg-text);
  line-height: 1.55;
}
.fs-copy ul li::before {
  content: '✓';
  color: var(--wg-primary);
  font-weight: 800;
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(85,88,166,0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
/* Scale the entire mockup down proportionately so it doesn't over-dominate
   the column. `zoom` shrinks both width and height together. */
.fs-visual {
  position: relative;
}
.fs-visual { zoom: 0.75; }
@media (max-width: 900px) { .fs-visual { zoom: 1; } }

/* Integrations section screenshot — same proportional scale-down */
.int-stage { zoom: 0.78; }
@media (max-width: 900px) { .int-stage { zoom: 1; } }
@media (max-width: 900px) {
  .fs-visual .browser-frame,
  .feature-split.reverse .fs-visual .browser-frame { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .fs-visual .browser-frame,
  .feature-split.reverse .fs-visual .browser-frame { transform: none; }
}

/* ========== WareGo Brand Tokens ========== */
:root {
  --wg-primary: #5558A6;
  --wg-primary-dark: #424479;
  --wg-primary-light: #6c70bd;
  --wg-accent: #4AB9EA;
  --wg-highlight: #D7DF23;
  --wg-success: #B2DCBD;
  --wg-text: #272626;
  --wg-text-muted: #565656;
  --wg-text-light: #6b6b6b;
  --wg-bg: #ffffff;
  --wg-bg-alt: #f4f9ff;
  --wg-bg-gray: #f5f5f5;
  --wg-border: #e9ecef;
  --wg-radius: 12px;
  --wg-radius-lg: 16px;
  --wg-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --wg-shadow: 0 4px 16px rgba(85,88,166,0.08);
  --wg-shadow-lg: 0 12px 40px rgba(85,88,166,0.12);
  --wg-container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--wg-text);
  background: var(--wg-bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: #000;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin: 0 0 16px; color: var(--wg-text-muted); }
a { color: var(--wg-primary); text-decoration: none; }
a:hover { color: var(--wg-primary-dark); }

.container {
  margin: 0 auto;
}
.section { padding: 80px 0; position: relative; }
.section--alt { background: var(--wg-bg-alt); }
.section--gray { background: var(--wg-bg-gray); }
.section--dark {
  background: linear-gradient(135deg, var(--wg-primary) 0%, var(--wg-primary-dark) 100%);
  color: #fff;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.85); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wg-primary);
  background: rgba(85,88,166,0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section--dark .eyebrow { background: rgba(255,255,255,0.15); color: #fff; }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-header p { font-size: 1.075rem; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary {
  background: var(--wg-primary);
  color: #fff;
  border-color: var(--wg-primary);
}
.btn-primary:hover { background: var(--wg-primary-dark); border-color: var(--wg-primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--wg-shadow); }
.btn-outline {
  background: transparent;
  color: var(--wg-primary);
  border-color: var(--wg-primary);
}
.btn-outline:hover { background: var(--wg-primary); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--wg-primary);
  border-color: #fff;
}
.btn-white:hover { background: var(--wg-highlight); color: var(--wg-text); border-color: var(--wg-highlight); }
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }


/* ========== Hero ========== */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(74,185,234,0.18) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(215,223,35,0.16) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
/* NEW: Stacked hero — content centered top, mockup full-width below */
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}
.hero-left {
  text-align: center;
  max-width: 820px;
  width: 100%;
}
.hero-left .hero-chips,
.hero-left .hero-ctas {
  justify-content: center;
}
.hero-right {
  width: 100%;
  max-width: 1100px;
}
.hero-left h1 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-left h1 .hl { color: var(--wg-primary); }
.hero-left .lede {
  font-size: 1.15rem;
  color: var(--wg-text-muted);
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.chip {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--wg-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--wg-shadow-sm);
}
.chip::before { content: '✓'; color: var(--wg-primary); font-weight: 700; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-microcopy { font-size: 0.825rem; color: var(--wg-text-light); }
.hero-microcopy strong { color: var(--wg-primary); }

.hero-visual {
  background: #fff;
  border-radius: var(--wg-radius-lg);
  box-shadow: var(--wg-shadow-lg);
  padding: 24px;
  position: relative;
}
.hero-visual-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid var(--wg-border);
  margin-bottom: 20px;
}
.hero-visual-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}
.hero-visual-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wg-success); display: inline-block; margin-right: 6px; }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 18px; }
.hero-stat {
  background: var(--wg-bg-alt);
  border-radius: 10px;
  padding: 14px;
}
.hero-stat-label { font-size: 0.7rem; color: var(--wg-text-light); text-transform: uppercase; font-weight: 600; letter-spacing: 0.05em; }
.hero-stat-value { font-family: 'Poppins'; font-size: 1.45rem; font-weight: 700; color: var(--wg-primary); margin-top: 4px; }
.hero-stat-value small { font-size: 0.7rem; font-weight: 500; color: var(--wg-success); margin-left: 4px; }
.hero-rows { display: flex; flex-direction: column; gap: 8px; }
.hero-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  background: var(--wg-bg-alt);
  border-radius: 8px;
  font-size: 0.85rem;
}
.hero-row-client { font-weight: 600; }
.hero-row-meta { color: var(--wg-text-light); font-size: 0.75rem; }
.hero-pill {
  background: rgba(178,220,189,0.4);
  color: #1f6c33;
  font-weight: 600;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 999px;
}

/* ========== Trust Strip (review platforms) ========== */
.trust-strip {
  background: linear-gradient(180deg, #ffffff 0%, var(--wg-bg-alt) 100%);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--wg-border);
  position: relative;
}
.trust-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.trust-score {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--wg-primary);
  letter-spacing: -0.02em;
}
.trust-score-suffix { font-size: 1.05rem; color: var(--wg-text-light); font-weight: 500; }
.trust-stars {
  color: #f5a623;
  font-size: 1.35rem;
  letter-spacing: 3px;
  line-height: 1;
}
.trust-hero-divider {
  width: 1px;
  height: 42px;
  background: var(--wg-border);
}
.trust-hero-copy {
  font-size: 0.95rem;
  color: var(--wg-text);
  line-height: 1.4;
  max-width: 280px;
}
.trust-hero-copy strong { color: var(--wg-primary); }
.trust-hero-copy .verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(178,220,189,0.35);
  color: #1f6c33;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 999px;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-hero-copy .verified svg { width: 10px; height: 10px; }

.review-platforms {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .review-platforms { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .review-platforms { grid-template-columns: repeat(2, 1fr); } }
.review-tile {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
}
.review-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--wg-shadow);
  border-color: var(--wg-primary);
}
.review-tile-mark {
  width: 40px; height: 40px;
  border-radius: 9px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
}
.review-tile-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.review-tile-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--wg-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-tile-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--wg-text-light);
  line-height: 1;
}
.review-tile-rating-score {
  font-family: 'Poppins';
  font-weight: 800;
  color: var(--wg-text);
  font-size: 0.85rem;
}
.review-tile-rating-stars { color: #f5a623; letter-spacing: 1px; font-size: 0.72rem; }

/* ========== Definition Card ========== */
.definition-card {
  background: #fff;
  border-left: 5px solid var(--wg-primary);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: var(--wg-shadow);
  margin: 32px auto;
  max-width: 880px;
  font-size: 1.075rem;
  color: var(--wg-text);
  line-height: 1.7;
}
.definition-card strong { color: var(--wg-primary); }

/* ========== AEO/GEO Quick-Answer Panel ========== */
.quick-answer {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, var(--wg-bg-alt) 100%);
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius-lg);
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 44px 36px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.quick-answer-head {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--wg-border);
}
.quick-answer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(85,88,166,0.08);
  color: var(--wg-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.quick-answer-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wg-primary);
}
.quick-answer-head h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.25;
  max-width: 920px;
}
.quick-answer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--wg-text-light);
}
.quick-answer-meta strong { color: var(--wg-text); font-weight: 600; }
.quick-answer-meta-dot {
  width: 3px;
  height: 3px;
  background: var(--wg-text-light);
  border-radius: 50%;
}
.quick-answer-summary {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--wg-text);
  margin: 0 0 28px;
  max-width: 920px;
}
.quick-answer-summary strong { color: var(--wg-primary); }
.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-fact {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color .2s, transform .2s;
}
.quick-fact:hover {
  border-color: var(--wg-primary);
  transform: translateY(-2px);
}
.quick-fact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wg-text-light);
  margin-bottom: 6px;
}
.quick-fact-value {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--wg-text);
  line-height: 1.35;
}
.quick-fact-value .accent { color: var(--wg-primary); }
@media (max-width: 1000px) {
  .quick-facts { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .quick-answer { padding: 28px 22px 24px; }
  .quick-answer-head { padding-bottom: 14px; margin-bottom: 14px; }
  .quick-answer-summary { font-size: 0.96rem; margin-bottom: 22px; }
}
@media (max-width: 420px) {
  .quick-facts { grid-template-columns: 1fr; }
}

/* ========== On-This-Page Jump Nav ========== */
.on-this-page {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: 12px;
  max-width: 1080px;
  margin: 32px auto 0;
  padding: 18px 24px;
}
.on-this-page summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--wg-text);
}
.on-this-page summary::-webkit-details-marker { display: none; }
.on-this-page summary::after {
  content: '▾';
  margin-left: auto;
  color: var(--wg-text-light);
  font-size: 0.85rem;
  transition: transform .2s ease;
}
.on-this-page[open] summary::after { transform: rotate(180deg); }
.on-this-page-icon {
  width: 22px;
  height: 22px;
  background: rgba(85,88,166,0.1);
  color: var(--wg-primary);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.72rem;
}
.on-this-page-list {
  list-style: none;
  padding: 14px 0 4px;
  margin: 14px 0 0;
  border-top: 1px solid var(--wg-border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px 24px;
}
.on-this-page-list a {
  display: block;
  font-size: 0.88rem;
  color: var(--wg-text-muted);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.on-this-page-list a:hover,
.on-this-page-list a:focus-visible {
  color: var(--wg-primary);
  border-bottom-color: var(--wg-primary);
}
@media (max-width: 600px) {
  .on-this-page { padding: 14px 18px; }
  .on-this-page-list { grid-template-columns: 1fr; }
}

/* ========== Direct-Answer TL;DR (post-H2) ========== */
.tldr {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--wg-border);
  border-left: 4px solid var(--wg-accent);
  border-radius: 10px;
  padding: 14px 18px;
  max-width: 880px;
  margin: 0 auto 32px;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--wg-text);
}
.tldr-label {
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wg-primary);
  background: rgba(85,88,166,0.1);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.tldr p { margin: 0; flex: 1; }
.tldr strong { color: var(--wg-primary); }
@media (max-width: 600px) {
  .tldr { flex-direction: column; gap: 8px; padding: 12px 14px; }
}

/* ========== Last-Updated / Author Byline ========== */
.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-size: 0.84rem;
  color: var(--wg-text-light);
  margin: 14px 0 0;
}
.byline-dot {
  width: 3px;
  height: 3px;
  background: var(--wg-text-light);
  border-radius: 50%;
}
.byline strong { color: var(--wg-text); font-weight: 600; }

/* ========== Compare Table (Standard WMS vs 3PL WMS) ========== */
.compare-table-wrap {
  width: 100%;
  max-width: 880px;
  margin: 28px auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--wg-radius);
  box-shadow: var(--wg-shadow);
}
.compare-table {
  width: 100%;
  min-width: 560px;
  background: #fff;
  border-radius: var(--wg-radius);
  overflow: hidden;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--wg-border);
  font-size: 0.925rem;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.85rem; }
}
.compare-table th:not(:first-child),
.compare-table td:not(:first-child) {
  text-align: center;
  font-weight: 600;
}
.compare-table th {
  background: var(--wg-bg-alt);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--wg-text);
}
.compare-table th:nth-child(3) { color: var(--wg-primary); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.check { color: #1f6c33; font-weight: 700; }
.compare-table td.cross { color: #b54848; font-weight: 700; }
.compare-table td.na { color: #b54848; font-weight: 700; font-size: 0.85rem; }

/* ========== Glossary ========== */
.glossary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 28px auto 0;
  max-width: 1000px;
}
.gloss-card {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  transition: all .2s;
}
.gloss-card:hover { border-color: var(--wg-primary); transform: translateY(-2px); box-shadow: var(--wg-shadow); }
.gloss-card .term {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--wg-primary);
  font-size: 1rem;
  margin-bottom: 4px;
}
.gloss-card .def { font-size: 0.78rem; color: var(--wg-text-light); line-height: 1.4; }

/* ========== Signs / Checklist Section ========== */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.sign-card {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius);
  padding: 24px;
  transition: all .25s;
  position: relative;
  padding-left: 60px;
}
.sign-card:hover { transform: translateY(-3px); box-shadow: var(--wg-shadow); border-color: var(--wg-accent); }
.sign-card::before {
  content: counter(sign);
  counter-increment: sign;
  position: absolute;
  left: 20px; top: 22px;
  width: 28px; height: 28px;
  background: var(--wg-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins'; font-weight: 700; font-size: 0.85rem;
}
.signs-grid { counter-reset: sign; }
.sign-card h3 { font-size: 1rem; margin-bottom: 6px; }
.sign-card p { font-size: 0.875rem; margin: 0; }

/* ========== Feature Cards ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius);
  padding: 28px;
  transition: all .25s;
}
.feature-card:hover {
  border-color: var(--wg-primary);
  transform: translateY(-4px);
  box-shadow: var(--wg-shadow-lg);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--wg-primary), var(--wg-accent));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.075rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; margin: 0; }

/* ========== Industries ========== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.industry-card {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius);
  padding: 24px;
  text-align: center;
  transition: all .25s;
}
.industry-card:hover {
  background: linear-gradient(135deg, var(--wg-primary), var(--wg-primary-dark));
  border-color: var(--wg-primary);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--wg-shadow-lg);
}
.industry-card:hover h3,
.industry-card:hover p { color: #fff; }
.industry-card .icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.industry-card h3 { font-size: 1rem; margin-bottom: 6px; }
.industry-card p { font-size: 0.82rem; margin: 0; color: var(--wg-text-light); }

/* ========== Why WareGo benefits ========== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.benefit-card {
  background: #fff;
  border-radius: var(--wg-radius);
  padding: 28px;
  border-top: 4px solid var(--wg-primary);
  box-shadow: var(--wg-shadow-sm);
  transition: all .25s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--wg-shadow-lg); }
.benefit-card:nth-child(2n) { border-top-color: var(--wg-accent); }
.benefit-card:nth-child(3n) { border-top-color: var(--wg-highlight); }
.benefit-num {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 2rem;
  color: var(--wg-primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 8px;
}
/* "What WareGo Customers Actually Get" stats — these benefit-nums are the real KPIs,
   not decorative watermarks, so they need to be prominently visible. */
.stats-results .benefit-num {
  opacity: 1;
  font-size: 2.6rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--wg-primary) 0%, var(--wg-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--wg-primary); /* fallback */
}
.benefit-card h3 { font-size: 1.075rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.9rem; margin: 0; }

/* ========== Comparison Table ========== */
.competitor-table-wrap { overflow-x: auto; margin-top: 40px; }
.competitor-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--wg-radius);
  box-shadow: var(--wg-shadow);
  overflow: hidden;
}
.competitor-table th {
  background: var(--wg-bg-alt);
  padding: 18px 16px;
  text-align: center;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--wg-text);
  border-bottom: 2px solid var(--wg-border);
}
.competitor-table th.wg-col {
  background: linear-gradient(135deg, var(--wg-primary), var(--wg-primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.competitor-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--wg-border);
  font-size: 0.875rem;
  text-align: center;
}
.competitor-table td:first-child {
  text-align: left;
  font-weight: 600;
  background: #fafbfc;
  color: var(--wg-text);
}
.competitor-table td.wg-col { background: rgba(85,88,166,0.04); font-weight: 600; color: var(--wg-primary); }
.competitor-table .yes { color: #1f6c33; font-weight: 700; }
.competitor-table .no { color: #b54848; font-weight: 700; }
.competitor-table .partial { color: #c8841a; font-weight: 700; }
.competitor-table tr:last-child td { border-bottom: none; }

/* ========== ROI Calculator (3-step gated flow) ========== */
.calc-wrap {
  background: #fff;
  border-radius: var(--wg-radius-lg);
  box-shadow: var(--wg-shadow-lg);
  padding: 40px;
  margin-top: 40px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.calc-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.calc-step-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wg-text-light);
  transition: all .25s;
}
.calc-step-pill .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--wg-bg-gray);
  color: var(--wg-text-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 0.85rem;
  transition: all .25s;
}
.calc-step-pill.active { color: var(--wg-primary); }
.calc-step-pill.active .num { background: var(--wg-primary); color: #fff; }
.calc-step-pill.done .num { background: var(--wg-success); color: #1f6c33; }
.calc-step-divider { width: 32px; height: 2px; background: var(--wg-border); }
.calc-step {
  display: none;
  animation: fadeIn .35s ease;
}
.calc-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.calc-step h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  text-align: center;
}
.calc-step .subtle {
  text-align: center;
  font-size: 0.92rem;
  color: var(--wg-text-muted);
  margin-bottom: 28px;
}
.calc-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
@media (max-width: 600px) { .calc-input-grid { grid-template-columns: 1fr; } }
.input-group { margin-bottom: 0; }
.input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wg-text);
  margin-bottom: 6px;
}
.input-group input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--wg-border);
  border-radius: 8px;
  font-family: 'Inter';
  font-size: 0.95rem;
  transition: border-color .2s;
}
.input-group input:focus {
  outline: none;
  border-color: var(--wg-primary);
}
.calc-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}
.calc-actions .btn { padding: 13px 28px; }
.calc-microcopy {
  font-size: 0.78rem;
  color: var(--wg-text-light);
  text-align: center;
  margin-top: 14px;
}
.calc-microcopy svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; }
.calc-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0;
}
@media (max-width: 600px) { .calc-results-grid { grid-template-columns: 1fr; } }
.calc-result-tile {
  background: linear-gradient(160deg, var(--wg-primary) 0%, var(--wg-primary-dark) 100%);
  color: #fff;
  border-radius: 12px;
  padding: 20px;
}
.calc-result-tile.highlight {
  background: linear-gradient(160deg, var(--wg-highlight) 0%, #b8c01c 100%);
  color: var(--wg-text);
  grid-column: span 2;
}
@media (max-width: 600px) { .calc-result-tile.highlight { grid-column: span 1; } }
.calc-result-label { font-size: 0.78rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.calc-result-value { font-family: 'Poppins'; font-size: 1.85rem; font-weight: 700; margin-top: 4px; line-height: 1.1; }
.calc-result-value small { font-size: 0.7rem; font-weight: 500; opacity: 0.7; margin-left: 6px; }
.calc-result-tile.highlight .calc-result-value { font-size: 2.2rem; color: var(--wg-primary-dark); }
.calc-cta-block {
  background: var(--wg-bg-alt);
  border: 1px dashed var(--wg-primary);
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
  text-align: center;
}
.calc-cta-block h4 { font-size: 1.05rem; margin-bottom: 8px; }
.calc-cta-block p { font-size: 0.9rem; margin-bottom: 14px; }
.calc-cta-block .btn { margin: 4px; }

/* ========== Billing Section ========== */
.billing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 800px) { .billing-grid { grid-template-columns: 1fr; } }
.billing-col {
  background: #fff;
  border-radius: var(--wg-radius);
  padding: 28px;
  box-shadow: var(--wg-shadow-sm);
  border-top: 4px solid var(--wg-primary);
}
.billing-col:nth-child(2) { border-top-color: var(--wg-accent); }
.billing-col:nth-child(3) { border-top-color: var(--wg-highlight); }
.billing-col h3 { font-size: 1rem; margin-bottom: 14px; }
.billing-col ul { padding: 0; margin: 0; list-style: none; }
.billing-col li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--wg-text-muted);
}
.billing-col li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--wg-primary);
  font-weight: 700;
}
.billing-quote {
  background: var(--wg-bg-alt);
  border-radius: var(--wg-radius);
  padding: 28px;
  margin-top: 32px;
  text-align: center;
  font-size: 1.075rem;
  font-style: italic;
  color: var(--wg-text);
  border-left: 4px solid var(--wg-primary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.billing-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wg-primary);
}

/* ========== Integrations ========== */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.int-category {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius);
  padding: 24px;
}
.int-category h3 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--wg-primary);
}
.int-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.int-logo {
  background: var(--wg-bg-alt);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wg-text);
  transition: all .2s;
  border: 1px solid transparent;
}
.int-logo:hover {
  background: #fff;
  border-color: var(--wg-primary);
  transform: translateY(-2px);
  box-shadow: var(--wg-shadow);
}
.int-logo-mark {
  width: 28px; height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 0.75rem;
  color: #fff;
}
.int-tag {
  background: var(--wg-bg-alt);
  color: var(--wg-text);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ========== Implementation Timeline ========== */
.timeline {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 900px) { .timeline { grid-template-columns: 1fr; } }
.timeline::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--wg-primary), var(--wg-accent), var(--wg-highlight));
  border-radius: 2px;
  z-index: 0;
}
@media (max-width: 900px) { .timeline::before { display: none; } }
.timeline-step {
  background: #fff;
  border-radius: var(--wg-radius);
  padding: 50px 20px 24px;
  text-align: center;
  position: relative;
  border: 1px solid var(--wg-border);
  z-index: 1;
}
.timeline-num {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  background: var(--wg-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins'; font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 0 0 4px #f4f9ff;
}
.timeline-step:nth-child(2) .timeline-num { background: var(--wg-accent); }
.timeline-step:nth-child(3) .timeline-num { background: var(--wg-primary-light); }
.timeline-step:nth-child(4) .timeline-num { background: var(--wg-highlight); color: var(--wg-text); }
.timeline-days {
  font-family: 'Poppins';
  font-weight: 700;
  color: var(--wg-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.timeline-step h3 { font-size: 1rem; margin-bottom: 10px; }
.timeline-step p { font-size: 0.85rem; margin: 0; }

/* ========== Case studies ========== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.case-card {
  background: #fff;
  border-radius: var(--wg-radius);
  padding: 28px;
  border: 1px solid var(--wg-border);
  transition: all .25s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--wg-shadow-lg); }
.case-metric {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--wg-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.case-metric .unit { font-size: 1.25rem; color: var(--wg-accent); }
.case-card h3 { font-size: 1rem; margin: 14px 0 10px; }
.case-card p { font-size: 0.875rem; margin: 0; }
.case-card cite {
  display: block;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--wg-border);
  font-style: normal;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--wg-text);
}

/* ========== Pricing ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
/* "Custom" plan — inverted indigo card for visual distinction */
.pricing-card.invert {
  background: linear-gradient(160deg, var(--wg-primary) 0%, var(--wg-primary-dark) 100%);
  color: #fff;
  border-color: var(--wg-primary);
}
.pricing-card.invert .pricing-name,
.pricing-card.invert .pricing-tagline,
.pricing-card.invert .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-card.invert .pricing-price,
.pricing-card.invert .pricing-price small,
.pricing-card.invert .pricing-features li strong { color: #fff; }
.pricing-card.invert .pricing-price small { color: rgba(255,255,255,0.85); }
.pricing-card.invert .btn-white {
  background: #fff;
  color: var(--wg-primary);
}
/* Strikethrough "was" price */
.pricing-was {
  font-family: 'Poppins';
  font-size: 1rem;
  font-weight: 600;
  color: var(--wg-text-light);
  text-decoration: line-through;
  margin-left: 6px;
  vertical-align: top;
}
.pricing-card.invert .pricing-was { color: rgba(255,255,255,0.6); }
.pricing-card {
  background: #fff;
  border-radius: var(--wg-radius);
  padding: 32px 24px;
  border: 2px solid var(--wg-border);
  position: relative;
  transition: all .25s;
}
.pricing-card.featured {
  border-color: var(--wg-primary);
  box-shadow: var(--wg-shadow-lg);
  transform: scale(1.02);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wg-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-name {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wg-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--wg-text);
  line-height: 1;
}
.pricing-price small {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wg-text-light);
}
.pricing-tagline {
  font-size: 0.825rem;
  color: var(--wg-text-light);
  margin: 8px 0 20px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--wg-text-muted);
  padding-left: 22px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--wg-primary);
  font-weight: 700;
}
.pricing-features li.x::before { content: '✕'; color: #b54848; }
/* Inverted Custom card — checkmarks need a light color to be visible on the indigo background */
.pricing-card.invert .pricing-features li::before {
  color: var(--wg-highlight);
}
.pricing-card .btn { width: 100%; }

/* ========== Self-Assessment Tool — gated flow ========== */
.assess-wrap {
  background: #fff;
  border-radius: var(--wg-radius-lg);
  box-shadow: var(--wg-shadow-lg);
  padding: 36px;
  margin-top: 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.assess-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.assess-progress {
  margin: 0 0 22px;
  height: 6px;
  background: var(--wg-bg-gray);
  border-radius: 999px;
  overflow: hidden;
}
.assess-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--wg-primary), var(--wg-accent));
  width: 0%;
  transition: width .4s ease;
}
.assess-progress-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--wg-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.assess-step {
  display: none;
  animation: fadeIn .35s ease;
}
.assess-step.active { display: block; }
.assess-step h3 {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 8px;
}
.assess-step .subtle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--wg-text-muted);
  margin-bottom: 20px;
}
.assess-question {
  padding: 12px 0;
  border-bottom: 1px solid var(--wg-border);
}
.assess-question:last-of-type { border-bottom: none; }
.assess-q-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--wg-text);
}
.assess-toggle { display: flex; gap: 6px; flex-shrink: 0; }
.assess-toggle button {
  background: var(--wg-bg-gray);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 6px 14px;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all .15s;
  color: var(--wg-text-muted);
}
.assess-toggle button:hover { color: var(--wg-text); }
.assess-toggle button.active-yes { background: var(--wg-primary); color: #fff; border-color: var(--wg-primary); }
.assess-toggle button.active-no { background: #b54848; color: #fff; border-color: #b54848; }
.assess-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}
.assess-result-card {
  background: linear-gradient(135deg, var(--wg-primary), var(--wg-primary-dark));
  color: #fff;
  border-radius: var(--wg-radius);
  padding: 28px;
}
.assess-result-card h4 { color: #fff; margin-bottom: 10px; font-size: 1.1rem; }
.assess-result-band {
  display: inline-block;
  background: var(--wg-highlight);
  color: var(--wg-text);
  font-family: 'Poppins';
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.825rem;
  margin-bottom: 12px;
}
.assess-result-score {
  font-family: 'Poppins';
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin: 6px 0 12px;
}
.assess-result-score small {
  font-size: 0.9rem;
  opacity: 0.7;
}
.assess-gaps {
  margin-top: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 0.875rem;
}
.assess-gaps strong { color: var(--wg-highlight); }
.assess-gaps ul { margin: 8px 0 0 18px; padding: 0; }
.assess-gaps li { margin: 5px 0; }
.assess-final-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* ========== Migration ========== */
.migration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 800px) { .migration-grid { grid-template-columns: 1fr; } }
.migration-card {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius);
  padding: 28px;
  transition: all .25s;
}
.migration-card:hover { transform: translateY(-4px); box-shadow: var(--wg-shadow-lg); border-color: var(--wg-primary); }
.migration-card .from { font-size: 0.75rem; color: var(--wg-text-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.migration-card h3 { font-size: 1.075rem; margin: 8px 0 12px; }

/* ========== Stats Block ========== */
.stats-list { max-width: 880px; margin: 40px auto 0; }
.stat-row {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  align-items: baseline;
}
.stat-row:last-child { border-bottom: none; }
.stat-row .stat-fact {
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  flex: 1;
}
.stat-row .stat-source {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* ========== Security ========== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.sec-pill {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  transition: all .2s;
}
.sec-pill:hover { border-color: var(--wg-primary); }
.sec-pill .ico { color: var(--wg-primary); font-size: 1.5rem; margin-bottom: 8px; }
.sec-pill .name { font-family: 'Poppins'; font-weight: 600; font-size: 0.875rem; margin-bottom: 4px; }
.sec-pill .desc { font-size: 0.75rem; color: var(--wg-text-light); }

/* ========== FAQ ========== */
.faq-list { max-width: 900px; margin: 40px auto 0; }
.faq-item {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .25s;
}
.faq-item:hover { border-color: var(--wg-primary); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 20px 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--wg-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--wg-bg-alt);
  color: var(--wg-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-toggle {
  background: var(--wg-primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 26px;
}
.faq-item.open .faq-answer {
  max-height: 800px;
  padding: 0 26px 22px;
}
.faq-answer p { font-size: 0.95rem; color: var(--wg-text-muted); margin: 0; line-height: 1.7; }

/* ========== Final CTA ========== */
.final-cta {
  background: linear-gradient(135deg, var(--wg-primary) 0%, var(--wg-primary-dark) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(215,223,35,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(74,185,234,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 24px; }
.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.9); font-size: 1.075rem; margin-bottom: 28px; }
.final-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta-meta {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.final-cta-meta a { color: var(--wg-highlight); font-weight: 600; }

/* ========== Footer ========== */
.footer {
  background: #1a1c3a;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 24px;
  font-size: 0.875rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 {
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.7); }
.footer ul li a:hover { color: var(--wg-highlight); }
.footer-brand .nav-logo { color: #fff; font-size: 1.5rem; margin-bottom: 14px; display: inline-block; }
.footer-brand .nav-logo span { color: var(--wg-accent); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* ========== Floating ROI Button ========== */
.float-roi {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--wg-primary);
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 8px 24px rgba(85,88,166,0.4);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.float-roi:hover { background: var(--wg-primary-dark); color: #fff; transform: translateY(-2px); }
@media (max-width: 600px) {
  .float-roi { bottom: 16px; right: 16px; padding: 10px 16px; font-size: 0.8rem; }
}

/* ========== Utilities ========== */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* ========== Scroll Reveals ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ========== Scroll Progress Bar ========== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wg-primary), var(--wg-accent), var(--wg-highlight));
  width: 0%;
  z-index: 200;
  transition: width .1s ease-out;
}

/* ========== SVG Icon System ========== */
.icon-svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.feature-icon .icon-svg { width: 26px; height: 26px; stroke: #fff; }

/* ========== Logo Cloud ========== */
.logo-cloud {
  padding: 56px 0;
  background: #fff;
  border-bottom: 1px solid var(--wg-border);
}
.logo-cloud-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wg-text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}
.logo-cloud-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}
@media (max-width: 900px) { .logo-cloud-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 500px) { .logo-cloud-grid { grid-template-columns: repeat(2, 1fr); } }
.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 12px 18px;
  background: var(--wg-bg-alt);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wg-text);
  opacity: 0.55;
  transition: all .25s;
  letter-spacing: -0.01em;
}
.logo-tile:hover {
  opacity: 1;
  background: #fff;
  box-shadow: var(--wg-shadow);
  transform: translateY(-2px);
}
.logo-tile-dot {
  width: 10px; height: 10px; border-radius: 50%;
  margin-right: 8px;
}

/* ========== Problem / Solution Split ========== */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 900px) { .problem-solution { grid-template-columns: 1fr; } }
.ps-col {
  background: #fff;
  border-radius: var(--wg-radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.ps-col.problem {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe9e9 100%);
  border: 1px solid #f5d1d1;
}
.ps-col.solution {
  background: linear-gradient(135deg, var(--wg-bg-alt) 0%, #e8eeff 100%);
  border: 2px solid var(--wg-primary);
}
.ps-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.ps-tag.problem { background: #b54848; color: #fff; }
.ps-tag.solution { background: var(--wg-primary); color: #fff; }
.ps-col h3 { font-size: 1.35rem; margin-bottom: 18px; }
.ps-list { list-style: none; padding: 0; margin: 0; }
.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--wg-text);
  line-height: 1.55;
}
.ps-list li .ps-ico {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 2px;
}
.ps-col.problem .ps-ico { background: #fff; color: #b54848; border: 2px solid #b54848; }
.ps-col.solution .ps-ico { background: var(--wg-primary); color: #fff; }
.ps-cost {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed rgba(0,0,0,0.1);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wg-text);
}
.ps-cost strong { color: #b54848; font-size: 1.05rem; }
.ps-col.solution .ps-cost strong { color: var(--wg-primary); }

/* ========== Bento Grid ========== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
}
.bento-card {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: var(--wg-radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wg-shadow-lg);
  border-color: var(--wg-primary);
}
.bento-card .b-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wg-primary);
  margin-bottom: 8px;
}
.bento-card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  line-height: 1.3;
}
.bento-card p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--wg-text-muted);
  line-height: 1.5;
}
.bento-card .b-decoration {
  position: absolute;
  right: -20px; bottom: -20px;
  opacity: 0.08;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 6rem;
  line-height: 1;
  color: var(--wg-primary);
  pointer-events: none;
}
/* Bento spans */
.bento-1 { grid-column: span 3; grid-row: span 2; background: linear-gradient(135deg, var(--wg-primary) 0%, var(--wg-primary-dark) 100%); color: #fff; }
.bento-1 h3, .bento-1 p { color: #fff; }
.bento-1 .b-eyebrow { color: var(--wg-highlight); }
.bento-2 { grid-column: span 3; grid-row: span 1; }
.bento-3 { grid-column: span 2; grid-row: span 1; background: linear-gradient(135deg, var(--wg-accent), #2d9ad0); color: #fff; }
.bento-3 h3, .bento-3 p { color: #fff; }
.bento-3 .b-eyebrow { color: #fff; opacity: 0.9; }
.bento-4 { grid-column: span 1; grid-row: span 1; }
.bento-5 { grid-column: span 2; grid-row: span 2; }
.bento-6 { grid-column: span 2; grid-row: span 1; background: var(--wg-bg-alt); }
.bento-7 { grid-column: span 2; grid-row: span 1; }
.bento-8 { grid-column: span 2; grid-row: span 1; background: linear-gradient(135deg, #fff 0%, #fef9c3 100%); }
@media (max-width: 900px) {
  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5, .bento-6, .bento-7, .bento-8 {
    grid-column: span 2; grid-row: span 1; min-height: 180px;
  }
}
.bento-mini-visual {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}
.bento-pill {
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
}
.bento-card.light .bento-pill {
  background: var(--wg-bg-alt);
  color: var(--wg-primary);
}
.bento-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 16px;
  height: 50px;
}
.bento-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--wg-accent), var(--wg-primary));
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

/* ========== Stat Counters ========== */
.stat-counters {
  background: linear-gradient(135deg, var(--wg-primary) 0%, var(--wg-primary-dark) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stat-counters::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(74,185,234,0.2) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(215,223,35,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) { .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.counter-card { text-align: center; color: #fff; }
.counter-value {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--wg-highlight);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.counter-value .suffix { color: #fff; font-size: 0.6em; }
.counter-label {
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* ========== How It Works (Day in the Life) — side-by-side ========== */
.dayflow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 900px) { .dayflow { grid-template-columns: 1fr; gap: 32px; } }
.dayflow.reverse { direction: rtl; }
.dayflow.reverse > * { direction: ltr; }
/* Scale the entire mockup down proportionately (width + height together) so it
   fits its column without crushing the text. `zoom` shrinks the layout box too,
   unlike `transform: scale()` which keeps the original reserved space. */
.dayflow .dayflow-mock { zoom: 0.72; }
@media (max-width: 900px) { .dayflow .dayflow-mock { zoom: 1; } }
.dayflow-mock {
  background: #fff;
  border-radius: var(--wg-radius-lg);
  padding: 24px;
  box-shadow: var(--wg-shadow-lg);
  position: relative;
}
.dayflow-mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wg-border);
  margin-bottom: 16px;
}
.dayflow-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ddd;
}
.dayflow-dot.r { background: #ff6058; }
.dayflow-dot.y { background: #ffbd2e; }
.dayflow-dot.g { background: #27c93f; }
.dayflow-mock-title {
  margin-left: 8px;
  font-size: 0.85rem;
  color: var(--wg-text-light);
  font-weight: 500;
}
.dayflow-content { font-size: 0.85rem; }
.dayflow-step {
  font-family: 'Poppins';
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wg-primary);
  margin-bottom: 12px;
}
.dayflow h3 { font-size: 1.5rem; margin-bottom: 12px; }
.dayflow p { font-size: 1rem; color: var(--wg-text-muted); margin-bottom: 16px; }
.dayflow ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.dayflow ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--wg-text);
}
.dayflow ul li::before {
  content: '✓';
  color: var(--wg-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ========== Testimonial Cards (with avatars) ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--wg-radius-lg);
  padding: 28px;
  border: 1px solid var(--wg-border);
  transition: all .25s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wg-shadow-lg);
  border-color: var(--wg-accent);
}
.t-quote-mark {
  font-family: 'Poppins';
  font-size: 4rem;
  font-weight: 800;
  color: var(--wg-primary);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  pointer-events: none;
}
.t-stars { color: #f5a623; letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 12px; }
.t-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--wg-text);
  margin-bottom: 20px;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--wg-border);
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
}
.t-meta strong {
  display: block;
  font-size: 0.92rem;
  color: var(--wg-text);
}
.t-meta span {
  font-size: 0.8rem;
  color: var(--wg-text-light);
}

/* ========== Worked Example Box ========== */
.worked-example {
  background: linear-gradient(135deg, #fffaeb 0%, #fff5d6 100%);
  border: 1px solid #f5d97a;
  border-radius: var(--wg-radius-lg);
  padding: 32px;
  margin-top: 40px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.worked-example h3 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.worked-example h3::before {
  content: '';
  width: 28px; height: 28px;
  background: #f5a623;
  border-radius: 50%;
  display: inline-block;
  background-image: linear-gradient(135deg, #f5a623, #e08e00);
}
.worked-rows {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  margin: 18px 0;
}
@media (max-width: 700px) { .worked-rows { grid-template-columns: 1fr; } }
.worked-rows > div { background: #fff; padding: 16px; }
.worked-label { font-size: 0.75rem; color: var(--wg-text-light); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.worked-value { font-family: 'Poppins'; font-size: 1.3rem; font-weight: 700; margin-top: 4px; }
.worked-value.green { color: #1f6c33; }
.worked-value.red { color: #b54848; }
.worked-value.primary { color: var(--wg-primary); }
.worked-footnote { font-size: 0.825rem; color: var(--wg-text-muted); margin-top: 8px; }

/* ========== Buyer's Checklist Inline ========== */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 700px) { .checklist-grid { grid-template-columns: 1fr; } }
.checklist-item {
  background: #fff;
  border: 1px solid var(--wg-border);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  transition: all .2s;
}
.checklist-item:hover { border-color: var(--wg-primary); }
.checklist-item .ci-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--wg-primary);
  color: #fff;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
}
.checklist-item strong { color: var(--wg-text); display: block; margin-bottom: 2px; }
.checklist-item span { color: var(--wg-text-muted); font-size: 0.875rem; }

/* ========== Industry Detail Card ========== */
.industry-detail {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  background: #fff;
  border-radius: var(--wg-radius-lg);
  padding: 32px;
  margin-top: 24px;
  border: 1px solid var(--wg-border);
  align-items: center;
}
@media (max-width: 700px) { .industry-detail { grid-template-columns: 1fr; gap: 16px; } }
.industry-detail-icon {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--wg-bg-alt), #e8eeff);
  border-radius: var(--wg-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-detail-icon svg { width: 90px; height: 90px; color: var(--wg-primary); }
.industry-detail h3 { font-size: 1.3rem; margin-bottom: 8px; }
.industry-detail p { font-size: 0.95rem; margin-bottom: 12px; }
.industry-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.industry-tag {
  background: var(--wg-bg-alt);
  color: var(--wg-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ========== Enhanced button shimmer ========== */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left .5s;
}
.btn-primary:hover::after { left: 100%; }

/* Focus rings (accessibility) */
.btn:focus-visible,
.faq-question:focus-visible,
.assess-toggle button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--wg-accent);
  outline-offset: 2px;
}

