/* ============================================================
   VDPO — Design System
   Inspired by: clean minimal agency aesthetic with pastel accents
   Brand: Navy #1E2D5A · Coral #f73760 · Pastel blue/lavender/mint
   RTL-first (Hebrew)
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  /* Brand navy (from VDPO logo) */
  --navy:       #1E2D5A;
  --navy-dark:  #131D3D;
  --navy-deep:  #0D1428;
  --navy-mid:   #2B3E78;
  --navy-light: #3D5499;

  /* Brand coral/pink (from VDPO logo V) */
  --coral:      #f73760;
  --coral-dark: #d41f49;

  /* Pastel accent palette */
  --pastel-blue:     #C8D9F2;
  --pastel-lavender: #D4CCEE;
  --pastel-coral:    #FAD0D8;
  --pastel-mint:     #BFD9D0;
  --pastel-sage:     #CAD9CC;

  /* Backgrounds */
  --bg:         #FFFFFF;
  --bg-2:       #F7F9FB;
  --bg-3:       #EFF3FA;

  /* Text */
  --tx-h:   #0A0F1E;
  --tx-b:   #4A5568;
  --tx-m:   #8A95B0;
  --tx-lt:  #B8C0D4;

  /* Borders */
  --border:      #E4EAF4;
  --border-soft: #EEF2FA;

  /* Font */
  --font: 'Heebo', -apple-system, Arial, sans-serif;

  /* Radii */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  36px;
  --r-full: 999px;

  /* Transitions */
  --tr:        0.2s ease;
  --tr-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container: 1160px;
  --nav-h:     64px;
  --section-v: 112px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--tx-b);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== ANNOUNCE BAR ===== */
.ann-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy-deep);
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 9px 48px;
  position: relative;
  letter-spacing: 0.01em;
}
.ann-dot {
  width: 7px;
  height: 7px;
  background: #5DDFB0;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.ann-link {
  color: #90B8F8;
  font-weight: 600;
  transition: color var(--tr);
  white-space: nowrap;
}
.ann-link:hover { color: #fff; }
.ann-close {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  padding: 6px;
  line-height: 1;
  transition: color var(--tr);
}
.ann-close:hover { color: rgba(255,255,255,0.9); }
[dir="rtl"] .ann-close { left: auto; right: 14px; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.navbar.scrolled {
  border-color: var(--border-soft);
  box-shadow: 0 1px 24px rgba(14,22,58,0.07);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo img { height: 32px; }
.logo { transition: opacity var(--tr); }
.logo:hover { opacity: 0.82; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--tx-b);
  padding: 7px 15px;
  border-radius: var(--r-full);
  transition: background var(--tr), color var(--tr);
}
.nav-link:hover,
.nav-link.active {
  background: var(--bg-2);
  color: var(--tx-h);
}
.mobile-close {
  display: none;
  font-size: 22px;
  color: var(--tx-h);
  padding: 8px;
  line-height: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Shared button system */
.btn-ghost-sm {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tx-b);
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  transition: border-color var(--tr), color var(--tr), background var(--tr);
  white-space: nowrap;
}
.btn-ghost-sm:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--bg-3);
}
.btn-dark-sm {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  padding: 8px 18px;
  border-radius: var(--r-full);
  transition: background var(--tr), transform var(--tr-spring), box-shadow var(--tr);
  white-space: nowrap;
}
.btn-dark-sm:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(14,22,58,0.22);
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  padding: 13px 26px;
  border-radius: var(--r-full);
  transition: background var(--tr), transform var(--tr-spring), box-shadow var(--tr);
  box-shadow: 0 4px 16px rgba(14,22,58,0.2);
}
.btn-dark:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14,22,58,0.28);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--tx-h);
  padding: 13px 26px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  transition: border-color var(--tr), background var(--tr), transform var(--tr-spring);
}
.btn-ghost:hover {
  border-color: var(--navy-mid);
  background: var(--bg-3);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tx-h);
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}

/* ===== LABEL CHIPS ===== */
.label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--pastel-blue);
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 18px;
}
.label-light {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 28px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Decorative pastel blocks */
.hero-blocks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hb {
  position: absolute;
  border-radius: var(--r-lg);
}
.hb-1 {
  width: 260px; height: 180px;
  background: var(--pastel-blue);
  top: 10%; right: 4%;
  transform: rotate(5deg);
  opacity: 0.65;
  border-radius: var(--r-xl);
}
.hb-2 {
  width: 180px; height: 240px;
  background: var(--pastel-lavender);
  top: 20%; left: 5%;
  transform: rotate(-6deg);
  opacity: 0.55;
  border-radius: var(--r-xl);
}
.hb-3 {
  width: 120px; height: 120px;
  background: var(--pastel-coral);
  top: 55%; right: 10%;
  border-radius: 50%;
  opacity: 0.45;
}
.hb-4 {
  width: 90px; height: 140px;
  background: var(--pastel-mint);
  bottom: 20%; left: 8%;
  transform: rotate(8deg);
  opacity: 0.5;
  border-radius: var(--r-xl);
}

.hero-body {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EEF4FF;
  border: 1px solid var(--pastel-blue);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.hbadge-dot {
  width: 6px; height: 6px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--tx-h);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--tx-b);
  line-height: 1.72;
  max-width: 600px;
  margin-bottom: 38px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  padding: 20px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hstat strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--tx-h);
  letter-spacing: -0.025em;
}
.hstat span {
  font-size: 0.8rem;
  color: var(--tx-m);
  font-weight: 500;
}
.hstat-div {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Hero screenshot */
.hero-screenshot {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 auto;
}
.screenshot-wrap {
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(14,22,58,0.07),
    0 20px 50px rgba(14,22,58,0.12),
    0 60px 120px rgba(14,22,58,0.08);
  border: 1px solid var(--border-soft);
  border-bottom: none;
}
.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== SKIP / PROBLEM SECTION ===== */
.skip-section {
  padding: var(--section-v) 0;
  background: var(--bg-2);
}
.skip-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}
.skip-left h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--tx-h);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 20px;
}
.skip-left p {
  font-size: 1.0625rem;
  color: var(--tx-b);
  line-height: 1.72;
}
.skip-blocks {
  display: grid;
  gap: 14px;
}
.skip-block {
  padding: 24px 28px;
  border-radius: var(--r-xl);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform var(--tr-spring);
}
.skip-block:hover { transform: translateY(-3px); }
.sb-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.skip-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tx-h);
  margin-bottom: 6px;
}
.skip-block p {
  font-size: 0.9375rem;
  color: var(--tx-b);
  line-height: 1.62;
}
.sb-blue     { background: var(--pastel-blue); }
.sb-coral    { background: var(--pastel-coral); }
.sb-mint     { background: var(--pastel-mint); }

/* ===== FULL MODULES SECTION (tabs) ===== */
.fullmod-section {
  padding: var(--section-v) 0;
  background: var(--bg);
}
.fullmod-header {
  text-align: center;
  margin-bottom: 56px;
}
.fullmod-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--tx-h);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.fullmod-header p {
  font-size: 1.0625rem;
  color: var(--tx-b);
  max-width: 500px;
  margin: 0 auto;
}

/* Tab navigation */
.mod-tabs-wrap {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  margin-bottom: 52px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.mod-tabs-wrap::-webkit-scrollbar { display: none; }
.mod-tabs {
  display: flex;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 5px;
  flex-shrink: 0;
}
.mod-tab {
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tx-m);
  cursor: pointer;
  background: none;
  border: none;
  white-space: nowrap;
  transition: background var(--tr), color var(--tr);
  font-family: var(--font);
}
.mod-tab:hover { color: var(--tx-h); background: var(--bg-3); }
.mod-tab.active {
  background: var(--navy);
  color: #fff;
}
.mod-tab:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* Tab panels */
.mod-panel {
  display: none;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.mod-panel.active {
  display: grid;
  animation: modFadeIn 0.38s ease;
}
@keyframes modFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Info panel */
.mp-info {
  display: flex;
  flex-direction: column;
}
.mp-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--pastel-blue);
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
  width: fit-content;
}
.mp-info h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 900;
  color: var(--tx-h);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.mp-info p {
  font-size: 1.0625rem;
  color: var(--tx-b);
  line-height: 1.72;
  margin-bottom: 24px;
}
.mp-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.mp-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--tx-b);
}
.mp-feats li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(30,45,90,0.09);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Mockup wrapper (browser frame) */
.mp-mockup-wrap {
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(14,22,58,0.04),
    0 12px 40px rgba(14,22,58,0.09),
    0 32px 80px rgba(14,22,58,0.06);
}
.mpm-chrome {
  background: #F2F4F8;
  border-bottom: 1px solid var(--border);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mpm-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.mpm-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.mpm-dots span:nth-child(1) { background: #FF5F57; }
.mpm-dots span:nth-child(2) { background: #FEBC2E; }
.mpm-dots span:nth-child(3) { background: #28C840; }
.mpm-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 4px 14px;
  font-size: 11px;
  color: var(--tx-m);
  max-width: 300px;
  margin: 0 auto;
}
.mpm-body {
  height: 380px;
  overflow: hidden;
}

/* ── Document Center mockup ────────────────────────── */
.modm-docs { gap: 8px; }
.docs-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.docs-search {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 5px 10px;
  font-size: 10px;
  color: var(--tx-lt);
}
.docs-new-btn {
  font-size: 9px;
  font-weight: 700;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: var(--r-full);
  cursor: default;
  font-family: var(--font);
  white-space: nowrap;
}
.docs-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}
.doc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  background: #fff;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-soft);
  transition: border-color var(--tr);
}
.doc-icon {
  width: 24px; height: 24px;
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doc-ic-blue  { background: #EEF4FF; color: var(--navy); }
.doc-ic-green { background: #E8F8EE; color: #1E8449; }
.doc-ic-amber { background: #FFF4E8; color: #D35400; }
.doc-ic-gray  { background: var(--bg-3); color: var(--tx-m); }
.doc-info { flex: 1; min-width: 0; }
.doc-name { display: block; font-size: 10px; font-weight: 700; color: var(--tx-h); }
.doc-meta { display: block; font-size: 9px; color: var(--tx-m); }
.doc-status {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}
.ds-live   { background: #E8F8EE; color: #1E8449; }
.ds-review { background: #FFF4E8; color: #D35400; }
.ds-draft  { background: var(--bg-3); color: var(--tx-m); }
.docs-stats {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 6px;
  border-top: 1px solid var(--border-soft);
}
.dcs-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.dcs-item strong { font-size: 14px; font-weight: 900; color: var(--tx-h); line-height: 1; }
.dcs-item span   { font-size: 9px; color: var(--tx-m); }

/* Security controls mockup */
.modm-sec { gap: 6px; }
.sec-filters {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.sec-filter {
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 9px;
  font-weight: 600;
  color: var(--tx-m);
  background: var(--bg-2);
  cursor: default;
}
.sf-active { background: var(--navy); color: #fff; }
.sec-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.sec-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
}
.sec-id {
  font-size: 9px;
  font-weight: 700;
  color: var(--tx-m);
  font-family: monospace;
  flex-shrink: 0;
  width: 38px;
}
.sec-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sec-name { font-size: 10px; font-weight: 600; color: var(--tx-h); }
.sec-ev {
  font-size: 9px;
  color: var(--tx-m);
  display: flex;
  align-items: center;
  gap: 3px;
}
.sec-ev-empty { color: #E74C3C; opacity: .8; }
.sec-status {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.ss-done    { background: #E8F8EE; color: #1E8449; }
.ss-partial { background: #FFF4E8; color: #D35400; }
.ss-open    { background: #FEE8E8; color: #C0392B; }

/* ===== PROCESS ===== */
.process-section {
  padding: var(--section-v) 0;
  background: var(--bg-2);
}
.process-header {
  text-align: center;
  margin-bottom: 64px;
}
.process-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--tx-h);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.process-header p {
  font-size: 1.0625rem;
  color: var(--tx-b);
  max-width: 500px;
  margin: 0 auto;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
/* Connector line between steps */
.steps-row::before {
  content: '';
  position: absolute;
  top: 38px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--border) 15%, var(--border) 85%, transparent);
}
.step-card {
  position: relative;
  padding: 0;
}
.step-num {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--pastel-blue);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  display: inline-block;
  background: #fff;
  padding-left: 12px;
  position: relative;
  z-index: 1;
}
[dir="rtl"] .step-num { padding-left: 0; padding-right: 12px; }
.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--tx-h);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9375rem;
  color: var(--tx-b);
  line-height: 1.65;
}

/* ===== VENDOR QUESTIONNAIRE SPOTLIGHT ===== */
.vq-section {
  padding: var(--section-v) 0;
  background: var(--bg);
}
.vq-header {
  text-align: center;
  margin-bottom: 64px;
}
.vq-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--tx-h);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.vq-header p {
  font-size: 1.0625rem;
  color: var(--tx-b);
  max-width: 600px;
  margin: 0 auto;
}
.vq-body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.vq-info h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--tx-h);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.vq-why { margin-bottom: 36px; }
.vq-reasons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vq-reasons li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.vqr-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.vq-reasons li div { display: flex; flex-direction: column; gap: 2px; }
.vq-reasons li strong { font-size: 0.9375rem; font-weight: 700; color: var(--tx-h); }
.vq-reasons li span  { font-size: 0.875rem; color: var(--tx-b); line-height: 1.55; }
.vqs-list { display: flex; flex-direction: column; gap: 18px; }
.vq-step { display: flex; align-items: flex-start; gap: 14px; }
.vqs-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.vqs-body { display: flex; flex-direction: column; gap: 3px; }
.vqs-body strong { font-size: 0.9375rem; font-weight: 700; color: var(--tx-h); }
.vqs-body span   { font-size: 0.875rem; color: var(--tx-b); line-height: 1.55; }
/* Mockup */
.vq-mockup-wrap {
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(14,22,58,0.04), 0 16px 48px rgba(14,22,58,0.09);
}
.vqm-body {
  height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vqm-app {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg);
  font-size: 0.8rem;
}
.vqm-top-bar {
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--border-soft);
  background: #fff;
}
.vqm-vendor-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.vqm-vav {
  width: 32px; height: 32px; border-radius: var(--r-md);
  background: var(--navy); color: #fff;
  font-size: 0.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vqm-vendor-info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.vqm-vname { font-size: 0.8125rem; font-weight: 700; color: var(--tx-h); }
.vqm-vsub  { font-size: 0.7rem; color: var(--tx-m); }
.vqm-status-chip {
  padding: 3px 10px; border-radius: var(--r-full);
  background: #FFF4E8; color: #D35400;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}
.vqm-prog-row { display: flex; align-items: center; gap: 8px; }
.vqm-pbar {
  flex: 1; height: 5px; background: var(--bg-3);
  border-radius: var(--r-full); overflow: hidden;
}
.vqm-pfill { height: 100%; background: var(--accent); border-radius: var(--r-full); }
.vqm-ppct  { font-size: 0.7rem; color: var(--tx-m); flex-shrink: 0; }
.vqm-sects {
  flex: 1; overflow-y: auto; padding: 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.vqm-sect {
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  background: #fff; overflow: hidden;
}
.vqm-sh {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
}
.vqm-sh-title { font-size: 0.8125rem; font-weight: 700; color: var(--tx-h); }
.vqm-score {
  font-size: 0.7rem; font-weight: 700;
  padding: 2px 8px; border-radius: var(--r-full);
}
.sq-ok   { background: #E8F8EE; color: #1E8449; }
.sq-warn { background: #FFF4E8; color: #D35400; }
.sq-bad  { background: #FEE8E8; color: #C0392B; }
.vqm-qs {
  border-top: 1px solid var(--border-soft);
  padding: 6px 8px; display: flex; flex-direction: column; gap: 4px;
}
.vqm-q-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px; border-radius: 4px;
}
.vqm-q-row:hover { background: var(--bg-2); }
.vqm-qtext { font-size: 0.75rem; color: var(--tx-b); }
.vqm-ans {
  font-size: 0.7rem; font-weight: 600;
  padding: 2px 7px; border-radius: var(--r-full); flex-shrink: 0;
}
.va-yes     { background: #E8F8EE; color: #1E8449; }
.va-partial { background: #FFF4E8; color: #D35400; }
.va-no      { background: #FEE8E8; color: #C0392B; }
.vqm-footer {
  border-top: 1px solid var(--border-soft);
  background: #fff; padding: 10px 14px;
  display: flex; align-items: center; gap: 16px;
}
.vqf-score-block {
  display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
}
.vqf-label { font-size: 0.65rem; color: var(--tx-m); margin-bottom: 2px; }
.vqf-big   { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.vqf-sub   { font-size: 0.65rem; color: var(--tx-m); }
.vqf-cats  { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.vqfc {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--tx-b);
}
.vqfc strong { font-weight: 700; color: var(--tx-h); }
[dir="rtl"] .vqfc { flex-direction: row; }
[dir="rtl"] .vqfc strong { margin-right: auto; }
.vqfc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-green  { background: #2ECC71; }
.dot-yellow { background: #F39C12; }
.dot-red    { background: #E74C3C; }
.vqf-btn {
  background: var(--navy); color: #fff; border: none;
  border-radius: var(--r-full); padding: 8px 14px;
  font-size: 0.75rem; font-weight: 700;
  font-family: inherit; cursor: pointer;
  flex-shrink: 0; white-space: nowrap;
}
.vqf-btn:hover { background: #1a2d7a; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: var(--section-v) 0;
  background: var(--bg-2);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--tx-h);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: transform var(--tr-spring), box-shadow var(--tr);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14,22,58,0.08);
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial blockquote {
  font-size: 1rem;
  color: var(--tx-h);
  line-height: 1.72;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 24px;
}
.testimonial blockquote::before { content: '"'; }
.testimonial blockquote::after { content: '"'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-av {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-lavender));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--tx-h);
}
.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--tx-m);
}

/* ===== PRICING ===== */
.pricing-section {
  padding: var(--section-v) 0;
  background: var(--bg-2);
}
.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--tx-h);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.pricing-header p {
  font-size: 1.0625rem;
  color: var(--tx-b);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  transition: transform var(--tr-spring), box-shadow var(--tr);
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14,22,58,0.08);
}
.plan-featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.plan-tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tx-m);
  margin-bottom: 20px;
}
.plan-featured .plan-tier { color: rgba(255,255,255,0.55); }
.plan-price {
  margin-bottom: 16px;
  line-height: 1.2;
}
.plan-price strong {
  font-size: 2.125rem;
  font-weight: 900;
  color: var(--tx-h);
  letter-spacing: -0.03em;
}
.plan-featured .plan-price strong { color: #fff; }
.plan-price span {
  font-size: 0.9375rem;
  color: var(--tx-m);
  font-weight: 400;
}
.plan-featured .plan-price span { color: rgba(255,255,255,0.5); }
.plan-desc {
  font-size: 0.9375rem;
  color: var(--tx-b);
  line-height: 1.65;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.plan-featured .plan-desc {
  color: rgba(255,255,255,0.65);
  border-bottom-color: rgba(255,255,255,0.12);
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--tx-b);
}
.plan-features li::before {
  content: '✓';
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-featured .plan-features li { color: rgba(255,255,255,0.8); }
.plan-featured .plan-features li::before { color: #7FDFB8; }
.btn-plan-outline {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  padding: 12px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  transition: border-color var(--tr), background var(--tr);
}
.btn-plan-outline:hover {
  border-color: var(--navy);
  background: var(--bg-3);
}
.btn-plan-white {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  padding: 12px;
  border-radius: var(--r-full);
  transition: background var(--tr), transform var(--tr-spring);
}
.btn-plan-white:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}

/* ===== FAQ ===== */
.faq-section {
  padding: var(--section-v) 0;
  background: var(--bg);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-left h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--tx-h);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.faq-left p {
  font-size: 1.0625rem;
  color: var(--tx-b);
  line-height: 1.7;
  margin-bottom: 28px;
}
.faq-list {
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: right;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--tx-h);
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--tr);
}
.faq-q:hover { color: var(--navy); }
.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--tx-m);
  flex-shrink: 0;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
  line-height: 1;
}
.faq-item.open .faq-toggle {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  font-size: 0.9375rem;
  color: var(--tx-b);
  line-height: 1.72;
  padding: 0 24px 20px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ===== SECURITY TRUST SECTION ===== */
.sec-trust-section {
  padding: var(--section-v) 0;
  background: var(--navy);
}
.st-header { text-align: center; margin-bottom: 56px; }
.st-header .label {
  background: rgba(93,223,176,0.15);
  color: #5DDFB0;
  border: 1px solid rgba(93,223,176,0.25);
  margin-bottom: 14px;
}
.st-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900; color: #fff;
  letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 16px;
}
.st-header p { font-size: 1.0625rem; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto; }
.st-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 44px;
}
.st-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 28px 28px 32px;
  transition: background var(--tr), border-color var(--tr);
}
.st-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(93,223,176,0.3); }
.st-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.st-icon-auth { background: rgba(99,130,255,0.18); color: #8BA4FF; }
.st-icon-data { background: rgba(16,185,129,0.18); color: #5DDFB0; }
.st-icon-net  { background: rgba(251,146,60,0.18);  color: #FDBA74; }
.st-card h3 { font-size: 1.0625rem; font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.01em; }
.st-feats { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.st-feats li {
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  padding-inline-start: 16px; position: relative; line-height: 1.5;
}
.st-feats li::before {
  content: '✓'; position: absolute; inset-inline-start: 0;
  color: #5DDFB0; font-weight: 800; font-size: 0.75rem;
}
.st-cta { text-align: center; }
.st-cta .btn-outline { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); }
.st-cta .btn-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; background: rgba(255,255,255,0.06); }
@media (max-width: 1024px) {
  .st-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; margin-bottom: 44px; }
}

/* ===== BLOG TEASER ===== */
.blog-teaser-section {
  padding: var(--section-v) 0;
  background: var(--bg-2);
}
.bt-header {
  text-align: center;
  margin-bottom: 56px;
}
.bt-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--tx-h);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.bt-header p {
  font-size: 1.0625rem;
  color: var(--tx-b);
  max-width: 520px;
  margin: 0 auto;
}
.bt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.bt-card {
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform var(--tr-spring), box-shadow var(--tr);
}
.bt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(14,22,58,0.1);
}
.bt-img-wrap {
  aspect-ratio: 16 / 8;
  overflow: hidden;
}
.bt-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bt-card:hover .bt-img-wrap img { transform: scale(1.04); }
.bt-info { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bt-meta { display: flex; align-items: center; gap: 8px; }
.bt-date { font-size: 0.8125rem; color: var(--tx-m); }
.bt-cat {
  font-size: 0.7rem; font-weight: 700;
  padding: 2px 9px; border-radius: var(--r-full);
  background: var(--pastel-blue); color: var(--navy);
}
.bt-info h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--tx-h);
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.bt-info p { font-size: 0.9rem; color: var(--tx-b); line-height: 1.65; flex: 1; }
.bt-read {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 4px;
}
.bt-cta { text-align: center; }
@media (max-width: 768px) {
  .bt-grid { grid-template-columns: 1fr; }
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--section-v) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247,55,96,0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.cta-box {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-box h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-box p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 44px;
}
.cta-form {
  display: grid;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-form input {
  padding: 14px 20px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-family: var(--font);
  font-size: 0.9375rem;
  outline: none;
  text-align: right;
  transition: border-color var(--tr), background var(--tr);
}
.cta-form input::placeholder { color: rgba(255,255,255,0.38); }
.cta-form input:focus {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
}
.cf-turnstile {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 1rem;
}
.btn-cta-submit {
  background: #fff;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr-spring), box-shadow var(--tr);
  font-family: var(--font);
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
}
.btn-cta-submit:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.btn-cta-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer-logo { height: 28px; margin-bottom: 18px; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.72;
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 12px;
  transition: color var(--tr);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 40px 24px;
  }
  [dir="rtl"] .nav-links {
    transform: translateX(-100%);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links .nav-link {
    font-size: 1.5rem;
    padding: 12px 24px;
  }
  .mobile-close {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--tx-m);
  }
  [dir="rtl"] .mobile-close {
    left: auto;
    right: 20px;
  }
  .hamburger { display: flex; }
  .btn-ghost-sm { display: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-v: 80px; }
  .mod-panel.active { grid-template-columns: 1fr; gap: 36px; }
  .mp-mockup-wrap { order: -1; }
  .mpm-body { height: 320px; }
  .vq-body { grid-template-columns: 1fr; gap: 40px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .skip-layout { grid-template-columns: 1fr; gap: 48px; }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-row::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-v: 60px; }
  .hero { padding: 60px 20px 0; }
  .hero-h1 { font-size: 2.25rem; }
  .hero-sub { font-size: 1rem; }
  .hero-btns { gap: 10px; }
  .hero-stats { gap: 16px; padding: 16px 20px; }
  .hstat-div { display: none; }
  .hb-1 { width: 120px; height: 90px; right: 1%; }
  .hb-2 { width: 90px; height: 120px; left: 1%; }
  .hb-3 { width: 70px; height: 70px; }
  .hb-4 { display: none; }
  .mod-tabs { gap: 3px; }
  .mod-tab { padding: 8px 13px; font-size: 0.8125rem; }
  .mpm-body { height: 260px; }
  .vqm-body { height: 340px; }
  .vqm-footer { flex-wrap: wrap; gap: 10px; }
  .vqf-btn { width: 100%; text-align: center; }
  .hb-app { height: 260px; }
  .steps-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-dark, .btn-ghost { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ABSTRACT DASHBOARD MOCKUPS
   All hand-crafted HTML/CSS — no real screenshots used
   ============================================================ */

/* ── Shared mockup base ───────────────────────────────── */
.capm, .modm, .sc-mockup {
  background: #F7F9FB;
  font-family: var(--font);
  font-size: 11px;
  color: var(--tx-h);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  box-sizing: border-box;
  overflow: hidden;
}
.capm-topbar, .modm-topbar, .scm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.capm-title, .scm-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--tx-h);
}
.capm-badge {
  font-size: 10px;
  font-weight: 700;
  background: var(--pastel-blue);
  color: var(--navy);
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.capm-badge.open {
  background: #FFE8E8;
  color: #C0392B;
}

/* ── Cap progress bar (shared) ───────────────────────── */
.capm-bar {
  height: 4px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.capm-bar > div {
  height: 100%;
  background: var(--navy);
  border-radius: var(--r-full);
}
.capm-footer { flex-shrink: 0; }
.capm-progress {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--tx-m);
  margin-bottom: 4px;
}

/* ── Cap 1: Database table ───────────────────────────── */
.capm-table {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: #fff;
}
.capt-head {
  display: grid;
  grid-template-columns: 2fr 1fr 0.6fr;
  gap: 4px;
  padding: 6px 8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tx-m);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.capt-row {
  display: grid;
  grid-template-columns: 2fr 1fr 0.6fr;
  gap: 4px;
  align-items: center;
  padding: 7px 8px;
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--tr);
}
.capt-row:last-child { border-bottom: none; }
.capt-row:hover { background: var(--bg-2); }
.cr-name { font-size: 10px; font-weight: 600; color: var(--tx-h); }
.cr-tag {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: var(--r-full);
  text-align: center;
}
.cr-tag.sensitive { background: #FFE8E8; color: #C0392B; }
.cr-tag.normal    { background: var(--bg-3); color: var(--tx-b); }
.cr-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin: 0 auto;
}
.dot-ok   { background: #27AE60; }
.dot-warn { background: #F39C12; }

/* ── Cap 2: Vendor list ──────────────────────────────── */
.vendor-list { flex: 1; display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.vendor-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: #fff;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-soft);
}
.v-av {
  width: 24px; height: 24px;
  background: var(--pastel-blue);
  color: var(--navy);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  flex-shrink: 0;
}
.v-info { flex: 1; min-width: 0; }
.v-name { font-size: 10px; font-weight: 600; color: var(--tx-h); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.v-type { font-size: 9px; color: var(--tx-m); }
.v-status {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}
.vs-ok   { background: #E8F8EE; color: #1E8449; }
.vs-warn { background: #FFF4E8; color: #D35400; }
.vendor-summary { flex-shrink: 0; }
.vs-row { display: flex; justify-content: space-between; font-size: 10px; color: var(--tx-m); margin-bottom: 4px; }
.vendor-summary .capm-bar { margin-top: 4px; }

/* ── Cap 3: Requests list ────────────────────────────── */
.req-list { flex: 1; display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.req-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: #fff;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-soft);
}
.req-av {
  width: 26px; height: 26px;
  background: var(--pastel-lavender);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
  flex-shrink: 0;
}
.req-info { flex: 1; min-width: 0; }
.req-name { display: block; font-size: 10px; font-weight: 700; color: var(--tx-h); }
.req-sub  { display: block; font-size: 9px; color: var(--tx-m); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.req-time {
  font-size: 9px; font-weight: 700;
  padding: 3px 7px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}
.rt-urgent { background: #FFE8E8; color: #C0392B; }
.rt-warn   { background: #FFF4E8; color: #D35400; }
.rt-ok     { background: #E8F8EE; color: #1E8449; }
.req-cta { flex-shrink: 0; }
.req-btn {
  width: 100%;
  padding: 7px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 700;
  cursor: default;
  font-family: var(--font);
}

/* ── Module 1: Overview donut + bars ─────────────────── */
.modm-overview { gap: 10px; }
.modm-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.modm-donut-wrap {
  position: relative;
  flex-shrink: 0;
}
.modm-donut { display: block; }
.modm-center-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--navy);
}
.modm-minis { display: flex; flex-direction: column; gap: 6px; }
.modm-s { display: flex; flex-direction: column; gap: 1px; }
.ms-v { font-size: 14px; font-weight: 900; color: var(--tx-h); line-height: 1; }
.ms-l { font-size: 9px; color: var(--tx-m); }
.modm-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.modm-bar-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: var(--tx-m);
}
.modm-bar-row span:first-child { width: 32px; text-align: right; flex-shrink: 0; }
.modm-bar-row span:last-child  { width: 26px; flex-shrink: 0; }
.mbr-track {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.mbr-fill {
  height: 100%;
  background: var(--navy);
  border-radius: var(--r-full);
}
.mbr-fill.f-green { background: #27AE60; }

/* ── Module 2: Risks ─────────────────────────────────── */
.modm-risks { gap: 8px; }
.risk-count {
  font-size: 10px;
  font-weight: 700;
  background: #FFE8E8;
  color: #C0392B;
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.risk-rows-m { display: flex; flex-direction: column; gap: 5px; }
.rrm-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.rrm-lv {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--r-full);
  width: 42px;
  text-align: center;
  flex-shrink: 0;
}
.lv-high { background: #FFE8E8; color: #C0392B; }
.lv-med  { background: #FFF4E8; color: #D35400; }
.lv-low  { background: #E8F8EE; color: #1E8449; }
.rrm-bar {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.rrm-bar > div { height: 100%; border-radius: var(--r-full); background: var(--navy-light); }
.rrm-item:nth-child(1) .rrm-bar > div { background: #C0392B; opacity: 0.7; }
.rrm-item:nth-child(2) .rrm-bar > div { background: #D35400; opacity: 0.7; }
.rrm-item:nth-child(3) .rrm-bar > div { background: #1E8449; opacity: 0.7; }
.rrm-n { font-size: 10px; font-weight: 700; color: var(--tx-h); width: 12px; flex-shrink: 0; }
.risk-item-list { flex: 1; display: flex; flex-direction: column; gap: 5px; overflow: hidden; }
.ril-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--tx-b);
  padding: 5px 6px;
  background: #fff;
  border-radius: var(--r-xs);
  border: 1px solid var(--border-soft);
}
.ril-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.d-high  { background: #C0392B; }
.d-med   { background: #D35400; }
.d-low   { background: #1E8449; }

/* ── Module 3: Permission surveys ────────────────────── */
.perm-count {
  font-size: 10px;
  font-weight: 700;
  background: var(--pastel-blue);
  color: var(--navy);
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.perm-list { flex: 1; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.perm-item {
  padding: 8px;
  background: #fff;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-soft);
}
.pi-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.pi-name { font-size: 10px; font-weight: 700; color: var(--tx-h); }
.pi-pct  { font-size: 10px; font-weight: 800; color: var(--navy); }
.pi-done-pct { color: #1E8449; }
.pi-warn-pct { color: #D35400; }
.pi-bar {
  height: 4px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: 4px;
}
.pi-bar > div { height: 100%; background: var(--navy); border-radius: var(--r-full); }
.pi-done > div { background: #27AE60; }
.pi-warn > div { background: #D35400; }
.pi-meta { font-size: 9px; color: var(--tx-m); }

/* ── Module 4: Questionnaires ───────────────────────── */
.quest-count {
  font-size: 10px;
  font-weight: 700;
  background: var(--pastel-mint);
  color: #1A5C3A;
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.quest-card {
  background: #fff;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  padding: 10px;
}
.qc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.qc-name { font-size: 10px; font-weight: 700; color: var(--tx-h); }
.qc-status {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-full);
}
.qc-status.open { background: #EEF4FF; color: var(--navy); }
.qc-questions { display: flex; flex-direction: column; gap: 5px; margin-bottom: 8px; }
.qq {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--tx-b);
}
.qq-dot {
  width: 9px; height: 9px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  flex-shrink: 0;
}
.qq-done {
  background: var(--navy);
  border-color: var(--navy);
}
.qc-progress { display: flex; flex-direction: column; gap: 4px; }
.qcp-track {
  height: 4px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.qcp-track > div { height: 100%; background: var(--navy); border-radius: var(--r-full); }
.qc-progress span { font-size: 9px; color: var(--tx-m); }
.quest-summary {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-soft);
  padding: 8px 12px;
}
.qs-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.qs-item span { font-size: 9px; color: var(--tx-m); }
.qs-item strong { font-size: 14px; font-weight: 900; color: var(--tx-h); }

/* ── Showcase: Compliance dashboard ─────────────────── */
.scm-dash {
  background: #fff;
  gap: 12px;
}
.scm-sub { font-size: 9px; color: var(--tx-m); margin-top: 2px; }
.scm-body {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.scm-donut-wrap {
  position: relative;
  flex-shrink: 0;
}
.scm-donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.scm-donut-center strong { font-size: 16px; font-weight: 900; color: var(--tx-h); line-height: 1; }
.scm-donut-center span   { font-size: 8px; color: var(--tx-m); }
.scm-legend { display: flex; flex-direction: column; gap: 5px; }
.scm-leg { display: flex; align-items: center; gap: 6px; font-size: 10px; color: var(--tx-b); }
.leg-dot { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.ld-green  { background: #5DDFB0; }
.ld-navy   { background: var(--navy); opacity: 0.6; }
.ld-yellow { background: #FAD060; }
.scm-table { flex: 1; overflow: hidden; }
.scmt-head {
  display: grid;
  grid-template-columns: 1.5fr 2fr 0.5fr;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tx-m);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.scmt-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 0.5fr;
  gap: 6px;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid var(--border-soft);
}
.scmt-row:last-child { border-bottom: none; }
.scmt-bar {
  height: 5px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.scmt-bar > div { height: 100%; background: var(--navy); border-radius: var(--r-full); }
.scmt-pct { font-size: 10px; font-weight: 700; color: var(--tx-b); }

/* ── Showcase: Risk heat-map ─────────────────────────── */
.scm-risks-small {
  background: #fff;
  gap: 10px;
}
.risk-heat { display: flex; flex-direction: column; gap: 5px; }
.rh-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.rh-lbl { font-size: 9px; color: var(--tx-m); width: 30px; flex-shrink: 0; text-align: right; }
[dir="rtl"] .rh-lbl { text-align: left; }
.rh-cells { display: flex; gap: 3px; flex: 1; }
.rh-cell {
  flex: 1;
  height: 18px;
  border-radius: 3px;
}
.rh-0 { background: var(--border-soft); }
.rh-1 { background: #D4EDDA; }
.rh-2 { background: #FFE8CC; }
.rh-3 { background: #FFD0D0; }
.rh-axis {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--tx-lt);
}

/* ── Showcase: Requests tracker ──────────────────────── */
.scm-reqs-small {
  background: #fff;
  gap: 10px;
}
.scm-btn {
  font-size: 9px;
  font-weight: 700;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 4px 9px;
  border-radius: var(--r-full);
  cursor: default;
  font-family: var(--font);
}
.scr-list { flex: 1; display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.scr-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: var(--bg-2);
  border-radius: var(--r-sm);
  border: 1px solid var(--border-soft);
}
.scr-av {
  width: 24px; height: 24px;
  background: var(--pastel-lavender);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800;
  flex-shrink: 0;
}
.scr-info { flex: 1; min-width: 0; }
.scr-name { display: block; font-size: 10px; font-weight: 700; color: var(--tx-h); }
.scr-type { display: block; font-size: 9px; color: var(--tx-m); }
.scr-days {
  font-size: 9px; font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}
.scr-days.urgent { background: #FFE8E8; color: #C0392B; }
.scr-days.warn   { background: #FFF4E8; color: #D35400; }
.scr-days.ok     { background: #E8F8EE; color: #1E8449; }

/* ── Hero Browser Mockup ─────────────────────────────── */
.hero-browser {
  background: #fff;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(14,22,58,0.06),
    0 20px 50px rgba(14,22,58,0.1),
    0 60px 100px rgba(14,22,58,0.07);
  font-family: var(--font);
}

/* Browser chrome bar */
.hb-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 16px;
  background: #F2F4F8;
  border-bottom: 1px solid var(--border);
}
.hb-dots { display: flex; gap: 5px; }
.hbd {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hbd-r { background: #FF5F57; }
.hbd-y { background: #FEBC2E; }
.hbd-g { background: #28C840; }
.hb-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-size: 11px;
  color: var(--tx-b);
  max-width: 300px;
  margin: 0 auto;
}

/* App layout */
.hb-app {
  display: flex;
  height: 380px;
  overflow: hidden;
}

/* Sidebar */
.hb-sidebar {
  width: 150px;
  background: var(--navy-deep);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-left: 1px solid rgba(255,255,255,0.06);
}
[dir="rtl"] .hb-sidebar { border-left: none; border-right: 1px solid rgba(255,255,255,0.06); }
.hbs-logo {
  padding: 0 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 8px;
}
.hbs-logo img { height: 18px; filter: brightness(0) invert(1); opacity: 0.9; }
.hbs-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
  overflow: hidden;
}
.hbs-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  cursor: default;
  transition: background var(--tr);
  position: relative;
}
.hbs-active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.hbs-alert { color: rgba(255,255,255,0.7); }
.hbs-ic { flex-shrink: 0; color: currentColor; }
.hbs-badge {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--coral);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
[dir="rtl"] .hbs-badge { left: auto; right: 8px; }
.hbs-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 8px;
}
.hbs-av {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
  flex-shrink: 0;
}
.hbs-uname { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.85); }
.hbs-urole { font-size: 9px; color: rgba(255,255,255,0.4); }

/* Main content */
.hb-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  padding: 14px;
  gap: 12px;
  overflow: hidden;
}
.hbm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-shrink: 0;
}
.hbm-title { font-size: 14px; font-weight: 800; color: var(--tx-h); }
.hbm-sub   { font-size: 10px; color: var(--tx-m); margin-top: 2px; }
.hbm-btn {
  font-size: 10px;
  font-weight: 700;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: var(--r-full);
  cursor: default;
  font-family: var(--font);
}

/* Metric cards */
.hbm-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  flex-shrink: 0;
}
.hbm-card {
  padding: 10px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.c-navy  { background: rgba(30,45,90,0.08); }
.c-coral { background: rgba(247,55,96,0.08); }
.c-blue  { background: rgba(65,130,200,0.08); }
.c-green { background: rgba(39,174,96,0.08); }
.hmc-icon { margin-bottom: 4px; }
.c-navy  .hmc-icon { color: var(--navy); }
.c-coral .hmc-icon { color: var(--coral); }
.c-blue  .hmc-icon { color: #4182C8; }
.c-green .hmc-icon { color: #27AE60; }
.hmc-val { font-size: 16px; font-weight: 900; color: var(--tx-h); line-height: 1; }
.hmc-lbl { font-size: 9px; color: var(--tx-b); font-weight: 500; }
.hmc-hint { font-size: 9px; color: var(--tx-m); }
.hmc-bar {
  height: 3px;
  background: rgba(0,0,0,0.1);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-top: 4px;
}
.hmc-bar > div { height: 100%; background: var(--navy); border-radius: var(--r-full); }
.c-coral .hmc-bar > div { background: var(--coral); }
.c-blue  .hmc-bar > div { background: #4182C8; }
.c-green .hmc-bar > div { background: #27AE60; }

/* Content panels */
.hbm-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
  min-height: 0;
}
.hbm-panel {
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.hbp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--tx-h);
  flex-shrink: 0;
}
.hbp-link { font-size: 9px; font-weight: 600; color: var(--navy); cursor: default; }
.hbp-rows { display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.hbp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px;
  background: var(--bg-2);
  border-radius: var(--r-xs);
}
.hbp-info { display: flex; flex-direction: column; gap: 1px; }
.hbp-name { font-size: 10px; font-weight: 700; color: var(--tx-h); }
.hbp-type { font-size: 9px; color: var(--tx-m); }
.hbp-tag {
  font-size: 9px; font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}
.tag-urgent { background: #FFE8E8; color: #C0392B; }
.tag-warn   { background: #FFF4E8; color: #D35400; }
.tag-ok     { background: #E8F8EE; color: #1E8449; }
.hbp-risks { display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.hbp-risk {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: var(--bg-2);
  border-radius: var(--r-xs);
}
.risk-lv {
  font-size: 9px; font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.lv-high { background: #FFE8E8; color: #C0392B; }
.lv-med  { background: #FFF4E8; color: #D35400; }
.lv-low  { background: #E8F8EE; color: #1E8449; }
.risk-txt { font-size: 10px; color: var(--tx-b); }

/* ── Override cap-img-wrap to not need fixed aspect ratio ── */
.cap-img-wrap { aspect-ratio: unset; height: auto; min-height: 220px; }
.mc-img-wrap  { aspect-ratio: unset; height: auto; min-height: 200px; }
.sc-large .sc-img-wrap  { aspect-ratio: unset; height: auto; min-height: 280px; }
.sc-small .sc-img-wrap  { aspect-ratio: unset; height: auto; min-height: 180px; }

/* Responsive: shrink hero browser on smaller screens */
@media (max-width: 768px) {
  .hb-app { height: 280px; }
  .hb-sidebar { width: 110px; }
  .hbs-nav { gap: 1px; }
  .hbs-item { font-size: 9px; padding: 5px 6px; }
  .hbm-metrics { grid-template-columns: repeat(2, 1fr); }
  .hbm-panels { grid-template-columns: 1fr; }
}
