/* ============================================================
   Sarrai voor je klanten — page-specific styles
   Layered on top of site.css + feature-page.css
   ============================================================ */

/* ============================================================
   Hero
   ============================================================ */
.vk-hero {
  background:
    radial-gradient(ellipse 65% 80% at 85% 0%, color-mix(in oklch, var(--brand-orange) 11%, transparent), transparent 60%),
    radial-gradient(ellipse 55% 70% at 5% 90%, color-mix(in oklch, var(--brand-navy) 9%, transparent), transparent 60%),
    var(--bg-app);
}

.vk-hero h1 { max-width: 22ch; }
.vk-hero h1 em {
  font-style: normal;
  color: var(--brand-orange);
}

/* Right-side card list */
.vk-hero__side {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.vk-hero__side-item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  align-items: center;
}
.vk-hero__side-item + .vk-hero__side-item {
  border-top: 1px solid var(--border-subtle);
}
.vk-hero__side-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: 0 6px 14px -4px rgba(235,120,14,0.38);
}
.vk-hero__side-ico--green {
  background: var(--success);
  box-shadow: 0 6px 14px -4px rgba(31,157,106,0.38);
}
.vk-hero__side-ico svg {
  width: 20px !important; height: 20px !important;
  stroke: #fff !important;
  stroke-width: 2;
  display: block;
  margin: 0 !important;
  flex: none;
}
.vk-hero__side-item b {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--fg-1);
  margin-bottom: 2px;
}
.vk-hero__side-item span {
  display: block;
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.45;
}

/* ============================================================
   Twee kanalen
   ============================================================ */
.vk-channels {
  padding-block: clamp(64px, 7vw, 104px);
}

.vk-channels__head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto clamp(48px, 5vw, 72px);
}
.vk-channels__head h2 {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-navy-800);
  margin-bottom: 12px;
}
.vk-channels__head p {
  color: var(--fg-3);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0;
}

/* Channel row */
.vk-channel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(48px, 5vw, 72px);
}
.vk-channel + .vk-channel {
  border-top: 1px solid var(--border-subtle);
}
.vk-channel--flip { direction: rtl; }
.vk-channel--flip > * { direction: ltr; }

.vk-channel__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.55;
}
.vk-channel__body h3 {
  font-size: clamp(1.375rem, 1.1rem + 0.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-navy-800);
  margin-bottom: 14px;
  max-width: 22ch;
}
.vk-channel__body p {
  color: var(--fg-3);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 48ch;
  margin: 0 0 16px;
}
.vk-channel__highlight {
  font-size: 0.9375rem !important;
  color: var(--brand-navy) !important;
  font-weight: 500 !important;
  padding: 10px 14px;
  background: var(--brand-navy-50);
  border-left: 3px solid var(--brand-navy-200);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-bottom: 20px !important;
}
.vk-channel__list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.vk-channel__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--fg-2);
}
.vk-channel__list li svg {
  color: var(--success);
  flex: none;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .vk-channel { grid-template-columns: 1fr; }
  .vk-channel--flip { direction: ltr; }
}

/* ============================================================
   Widget mockup
   ============================================================ */
.vk-widget-mock {
  position: relative;
  background: linear-gradient(135deg, var(--brand-navy-50), var(--neutral-50));
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  padding: 20px;
  min-height: 360px;
  overflow: hidden;
}

/* Simulated website behind the widget */
.vk-widget-mock__site {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.vk-widget-mock__site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--neutral-25);
}
.vk-widget-mock__logo {
  width: 60px; height: 12px;
  background: var(--brand-navy-200);
  border-radius: 4px;
}
.vk-widget-mock__nav-links {
  display: flex; gap: 8px;
}
.vk-widget-mock__nav-links span {
  width: 32px; height: 8px;
  background: var(--neutral-200);
  border-radius: 4px;
}
.vk-widget-mock__site-body {
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.vk-widget-mock__hero-line {
  height: 10px;
  background: var(--neutral-100);
  border-radius: 4px;
}
.vk-widget-mock__hero-line--title {
  width: 70%;
  height: 14px;
  background: var(--neutral-200);
}
.vk-widget-mock__hero-line--sub { width: 90%; }
.vk-widget-mock__hero-line--short { width: 55%; }

/* Floating chat bubble */
.vk-chat-bubble {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  width: 280px;
  font-size: 13px;
  position: relative;
  z-index: 2;
  margin-left: auto;
}
.vk-chat-bubble__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--brand-navy);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  color: #fff;
}
.vk-chat-bubble__avatar {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: grid; place-items: center;
  flex: none;
}
.vk-chat-bubble__head b {
  color: #fff;
  font-size: 13.5px;
  display: block;
  margin-bottom: 1px;
}
.vk-chat-bubble__head span {
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  display: block;
}
.vk-chat-bubble__close {
  margin-left: auto;
  opacity: 0.5;
  flex: none;
}
.vk-chat-bubble__body {
  padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.vk-chat-bubble__msg {
  padding: 8px 11px;
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  background: var(--bg-sunken);
  color: var(--fg-1);
  max-width: 88%;
  border-top-left-radius: 3px;
}
.vk-chat-bubble__msg--user {
  background: var(--brand-navy-50);
  color: var(--brand-navy-800);
  margin-left: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 3px;
  font-weight: 500;
}
.vk-chat-bubble__msg--lira {
  border-top-left-radius: 3px;
}
.vk-chat-bubble__src {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--brand-navy);
  margin-top: 6px;
  opacity: 0.75;
}
.vk-chat-bubble__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-top: 1px solid var(--border-subtle);
  color: var(--fg-4);
  font-size: 12.5px;
}
.vk-chat-bubble__input svg { color: var(--brand-orange); }

/* ============================================================
   Portaal mockup
   ============================================================ */
.vk-portal-mock {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.vk-portal-mock__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--neutral-50);
}
.vk-portal-mock__chrome > span {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--neutral-200);
  flex: none;
}
.vk-portal-mock__url {
  font-size: 11.5px;
  color: var(--fg-3);
  margin-left: 8px;
  flex: 1;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  padding: 3px 10px;
  text-align: center;
}
.vk-portal-mock__body { padding: 16px; }
.vk-portal-mock__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  font-size: 13px;
  color: var(--fg-4);
  margin-bottom: 16px;
  background: var(--bg-sunken);
}
.vk-portal-mock__cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.vk-portal-mock__cat {
  background: var(--neutral-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vk-portal-mock__cat-ico {
  width: 32px; height: 32px;
  border-radius: var(--r-md);
  background: var(--brand-orange-100);
  color: var(--brand-orange-700);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.vk-portal-mock__cat b {
  font-size: 12.5px;
  color: var(--fg-1);
  font-weight: 600;
}
.vk-portal-mock__cat span {
  font-size: 11px;
  color: var(--fg-3);
}

/* ============================================================
   Scope / controle sectie
   ============================================================ */
.vk-scope {
  padding-block: clamp(64px, 7vw, 104px);
  background:
    radial-gradient(ellipse 60% 70% at 100% 50%, color-mix(in oklch, var(--brand-orange) 7%, transparent), transparent 60%),
    var(--bg-surface-2);
}
.vk-scope__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.vk-scope__grid > div:first-child .eyebrow { margin-bottom: 12px; }
.vk-scope__grid h2 {
  font-size: clamp(1.625rem, 1.1rem + 1.8vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-navy-800);
  margin-bottom: 16px;
}
.vk-scope__grid p {
  color: var(--fg-3);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 50ch;
}

.vk-scope__vis { display: flex; justify-content: flex-end; }

/* Scope diagram */
.vk-scope-diagram {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-md);
  padding: 24px;
  width: 100%;
  max-width: 440px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.vk-scope-diagram__kb-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.vk-scope-diagram__article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r-md);
  font-size: 13px;
  margin-bottom: 6px;
  border: 1px solid var(--border-subtle);
}
.vk-scope-diagram__article--internal { background: var(--neutral-50); }
.vk-scope-diagram__article--public { background: var(--brand-orange-50); border-color: var(--brand-orange-200); }
.vk-scope-diagram__article-icon {
  color: var(--fg-3);
  flex: none;
  display: flex;
}
.vk-scope-diagram__article--public .vk-scope-diagram__article-icon { color: var(--brand-orange); }
.vk-scope-diagram__article > span:nth-child(2) {
  flex: 1;
  color: var(--fg-2);
  font-size: 12.5px;
  font-weight: 500;
}
.vk-scope-diagram__badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex: none;
}
.vk-scope-diagram__badge--internal {
  background: var(--neutral-100);
  color: var(--fg-3);
}
.vk-scope-diagram__badge--public {
  background: var(--brand-orange-100);
  color: var(--brand-orange-700);
}
.vk-scope-diagram__arrow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}
.vk-scope-diagram__arrow-internal,
.vk-scope-diagram__arrow-public {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--r-lg);
  white-space: nowrap;
}
.vk-scope-diagram__arrow-internal {
  background: var(--neutral-100);
  color: var(--fg-2);
}
.vk-scope-diagram__arrow-public {
  background: var(--brand-orange-100);
  color: var(--brand-orange-700);
}

@media (max-width: 768px) {
  .vk-scope__grid { grid-template-columns: 1fr; }
  .vk-scope__vis { justify-content: flex-start; }
  .vk-scope-diagram { max-width: 100%; grid-template-columns: 1fr; }
  .vk-scope-diagram__arrow { flex-direction: row; flex-wrap: wrap; }
}

/* ============================================================
   Escalatie sectie
   ============================================================ */
.vk-escalate {
  padding-block: clamp(64px, 7vw, 104px);
  background: var(--brand-navy);
  color: rgba(255,255,255,0.92);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.vk-escalate::before {
  content: "";
  position: absolute;
  top: -20%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(closest-side, rgba(235,120,14,0.14), transparent 70%);
  z-index: -1;
}
.vk-escalate__head {
  text-align: center;
  max-width: 120ch;
  margin: 0 auto clamp(40px, 4vw, 60px);
}
.vk-escalate__head .eyebrow { color: var(--brand-orange-300); margin-bottom: 14px; }
.vk-escalate__head .eyebrow .dot { background: var(--brand-orange); }
.vk-escalate__head h2 {
  color: #fff;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.vk-escalate__head p {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0;
}

/* Escalation cards */
.vk-escalate__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.vk-escalate__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vk-escalate__card-ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(235,120,14,0.2);
  border: 1px solid rgba(235,120,14,0.3);
  color: var(--brand-orange-300);
  display: grid; place-items: center;
  flex: none;
}
.vk-escalate__card h4 {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}
.vk-escalate__card > p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.vk-escalate__card-example { margin-top: 4px; }
.vk-escalate__card-bubble {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: 10px 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  font-style: italic;
  border-top-left-radius: 4px;
}
.vk-escalate__card-bubble::before {
  content: '"';
  color: var(--brand-orange-300);
  font-style: normal;
}
.vk-escalate__card-bubble::after {
  content: '"';
  color: var(--brand-orange-300);
  font-style: normal;
}

@media (max-width: 900px) {
  .vk-escalate__cards { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .vk-escalate__cards { grid-template-columns: 1fr 1fr; }
}

/* Outro band */
.vk-escalate__outro {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}
.vk-escalate__outro-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.vk-escalate__outro-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--brand-orange-300);
  display: grid; place-items: center;
  flex: none;
}
.vk-escalate__outro-inner b {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.vk-escalate__outro-inner span {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================================
   Deploy / implementatie sectie
   ============================================================ */
.vk-deploy {
  padding-block: clamp(64px, 7vw, 104px);
}
.vk-deploy .eyebrow { margin-bottom: 12px; }
.vk-deploy h2 {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-navy-800);
  margin-bottom: 16px;
}
.vk-deploy p {
  color: var(--fg-3);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 52ch;
}

.vk-deploy__pricing {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--success-bg);
  border: 1px solid color-mix(in oklch, var(--success) 30%, transparent);
  border-radius: var(--r-xl);
  padding: 18px 20px;
  margin-top: 24px;
}
.vk-deploy__pricing svg { color: var(--success); flex: none; margin-top: 2px; }
.vk-deploy__pricing b {
  display: block;
  font-size: 14.5px;
  color: var(--success-fg);
  font-weight: 600;
  margin-bottom: 4px;
}
.vk-deploy__pricing span {
  font-size: 13.5px;
  color: var(--success-fg);
  opacity: 0.8;
  line-height: 1.5;
}

/* Steps */
.vk-deploy__steps {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.vk-deploy__step {
  display: grid;
  grid-template-columns: 40px 1fr 28px;
  gap: 14px;
  padding: 20px 24px;
  align-items: center;
}
.vk-deploy__step + .vk-deploy__step {
  border-top: 1px solid var(--border-subtle);
}
.vk-deploy__step--total {
  background: var(--brand-navy-50);
}
.vk-deploy__step-num {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid; place-items: center;
  flex: none;
}
.vk-deploy__step-num--accent {
  background: transparent;
  color: var(--brand-navy-800);
  font-size: 20px;
}
.vk-deploy__step b {
  display: block;
  font-size: 14.5px;
  color: var(--fg-1);
  font-weight: 600;
  margin-bottom: 2px;
}
.vk-deploy__step span {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.45;
}
.vk-deploy__step-chk {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--success-bg);
  color: var(--success);
  display: grid; place-items: center;
  flex: none;
}

/* ============================================================
   Goedkeuringsinbox (bonus) sectie
   ============================================================ */
.vk-inbox {
  padding-block: clamp(64px, 7vw, 104px);
  background:
    radial-gradient(ellipse 70% 60% at 0% 50%, color-mix(in oklch, var(--brand-orange) 7%, transparent), transparent 60%),
    var(--brand-navy-50);
}
.vk-inbox__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.vk-inbox__body .eyebrow { margin-bottom: 12px; }
.vk-inbox__body h2 {
  font-size: clamp(1.625rem, 1.1rem + 1.8vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-navy-800);
  margin-bottom: 16px;
}
.vk-inbox__body p {
  color: var(--fg-3);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 50ch;
}
.vk-inbox__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--brand-navy);
  margin-top: 8px;
  border-bottom: none;
}
.vk-inbox__link:hover { color: var(--brand-navy-700); }
.vk-inbox__link svg { transition: transform var(--dur-fast); }
.vk-inbox__link:hover svg { transform: translateX(3px); }

/* Inbox mockup */
.vk-inbox-mock {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.vk-inbox-mock__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--neutral-50);
}
.vk-inbox-mock__chrome > span {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--neutral-200);
}
.vk-inbox-mock__url {
  font-size: 11.5px;
  color: var(--fg-3);
  margin-left: 8px;
}
.vk-inbox-mock__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
}
.vk-inbox-mock__head svg { color: var(--brand-navy); }
.vk-inbox-mock__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-1);
  margin: 0;
  flex: 1;
}
.vk-inbox-mock__count {
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 8px;
  background: var(--brand-orange-100);
  color: var(--brand-orange-700);
  border-radius: 999px;
}
.vk-inbox-mock__body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }

.vk-inbox-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 14px;
}
.vk-inbox-item__tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 8px;
}
.vk-inbox-item__tag--new {
  background: var(--brand-orange-100);
  color: var(--brand-orange-700);
}
.vk-inbox-item__tag--update {
  background: var(--info-bg);
  color: var(--info-fg);
}
.vk-inbox-item__content b {
  display: block;
  font-size: 13.5px;
  color: var(--fg-1);
  font-weight: 600;
  margin-bottom: 2px;
}
.vk-inbox-item__content span {
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.45;
}
.vk-inbox-item__actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.vk-inbox-item__btn {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-lg);
  background: var(--neutral-100);
  color: var(--fg-2);
  cursor: default;
}
.vk-inbox-item__btn--primary {
  background: var(--brand-navy);
  color: #fff;
}
.vk-inbox-item__btn--ghost {
  background: transparent;
  color: var(--fg-3);
}

@media (max-width: 768px) {
  .vk-inbox__grid { grid-template-columns: 1fr; }
}
