/* ============================================================
   VISUAL VISITOR — Person-Level Advertising Landing Page
   Brand palette: Navy #03426e + green #7ac546 accent + #333 body (light mode only)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root, [data-theme='light'] {
  color-scheme: light;

  --font-display: 'Red Hat Display', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;

  /* VV / FranchiseNinja Brand: deep navy + green accent */
  --color-bg: #f5f7fa;
  --color-surface: #ffffff;
  --color-surface-2: #eef2f6;
  --color-surface-offset: #e6ebf1;
  --color-divider: #dde3ea;
  --color-border: #064d80;/* #cdd5df;*/

  --color-text: #333333;
  --color-text-muted: #5c6470;
  --color-text-faint: #9aa2ad;
  --color-text-inverse: #ffffff;

  /* Green primary — brand accent */
  --color-primary: #7ac546;
  --color-primary-hover: #67ad37;
  --color-primary-active: #538c2b;
  --color-primary-highlight: #ecf7e0;

  /* Navy dark — brand primary */
  --color-navy: #03426e;
  --color-navy-hover: #05538a;

  /* Functional */
  --color-success: #1a9e5c;
  --color-error: #cc2f3f;

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 41, 0.07);
  --shadow-md: 0 4px 16px rgba(15, 23, 41, 0.09);
  --shadow-lg: 0 12px 40px rgba(15, 23, 41, 0.12);

  /* Spacing */
  --space-1: 4px; /* 0.25rem; */
  --space-2: 8px; /* 0.5rem; */
  --space-3: 12px; /* 0.75rem; */
  --space-4: 16px; /* 1rem; */
  --space-5: 20px; /* 1.25rem; */
  --space-6: 24px; /* 1.5rem; */
  --space-8: 32px; /* 2rem; */
  --space-10: 40px; /* 2.5rem; */
  --space-12: 48px; /* 3rem; */
  --space-16: 64px; /* 4rem; */
  --space-20: 80px; /* 5rem; */
  --space-24: 96px; /* 6rem; */
  --space-32: 128px; /* 8rem; */

  /* Type */
  /* --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-hero: clamp(2.2rem, 0.8rem + 3.6vw, 3.8rem); */
  
  /* --text-xs: clamp(12px, 11.2px + 4.8px, 14px);
  --text-sm: clamp(14px, 12.8px + 6.72px, 16px);
  --text-base: clamp(16px, 15.2px + 4.8px, 18px);
  --text-lg: clamp(18px, 16px + 14.4px 24px);
  --text-xl: clamp(24px, 19.2px + 24px 36px);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem); 
  --text-hero: clamp(35.2px, 12.8px + 69.12px, 60.8px); */
   --text-xs: clamp(12px, 0.8vw, 14px);
  --text-sm: clamp(14px, 1vw, 16px);
  --text-base: clamp(16px, 1.15vw, 18px);
  --text-lg: clamp(18px, 1.5vw, 24px);
  --text-xl: clamp(24px, 2.2vw, 36px);
  --text-2xl: clamp(32px, 2.8vw, 56px);
  --text-hero: clamp(35.2px, 4.2vw, 60.8px);
  

  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --content-default: 1100px;

   --green-text: var(--color-primary);

   /* PLA New Page Updatation */  
  --pla-navy:    #03426e;
  --pla-navy-dk: #021d31;
  --pla-green:   #7ac546;
  --pla-green-d: #5a9e2f;
  --pla-red:     #ef4444;
  --pla-white:   #ffffff;
  --pla-bg:      #f8f9fb;
  --pla-bg2:     #eef2f7;
  --pla-border:  #dce3ea;
  --pla-text:    #1a2b3c;
  --pla-muted:   #5a6b7b;
  --pla-r:       14px;
  --pla-sh:      0 4px 24px -8px rgba(3,66,110,.12);
  --pla-sh-lg:   0 24px 64px -16px rgba(3,66,110,.28);
  --pla-transition: .2s ease;
}


/* ── BASE RESET ─────────────────────────────────────────────── */
/* Keep box-sizing global; NEVER zero margin/padding sitewide — that
   collapses the block theme header nav when this file is enqueued. */
*, *::before, *::after { box-sizing: border-box; }

/* Scope document/base styles to the landing markup only.
   Use :where() so these defaults do NOT beat .pla-* class rules
   (e.g. hero gradient, white outline CTAs, H1 weight). */
.vv-pla-page :where(*, *::before, *::after) {
  margin: 0;
  padding: 0;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
.vv-pla-page {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}
.vv-pla-page :where(img, svg) { display: block; max-width: 100%; }
.vv-pla-page :where(ul[role='list'], ol[role='list']) { list-style: none; }
.vv-pla-page :where(h1, h2, h3, h4, h5, h6) {
  text-wrap: balance;
  line-height: 1.15;
  font-family: var(--font-display);
  font-weight: 800;
}
.vv-pla-page :where(p, li) { text-wrap: pretty; }
.vv-pla-page :where(a) { color: inherit; text-decoration: none; }
.vv-pla-page :where(button) { cursor: pointer; background: none; border: none; font: inherit; }
.vv-pla-page ::selection { background: var(--color-primary-highlight); color: var(--color-text); }
.vv-pla-page :focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  .vv-pla-page :where(*, *::before, *::after) {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Latest Home Global Css */
.green { color: var(--color-primary); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
/* Scope .container — unscoped it can fight the site header layout. */
.vv-pla-page .container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
}

/* vv security compliance page's container */
.vv-security-container {
  max-width: var(--content-default);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ── SECTION SHARED ─────────────────────────────────────────── */
/* :where() keeps specificity 0 so .pla-hero / .pla-audience / .pla-cta
   gradients are not overridden by this light default. */
.vv-pla-page :where(section) {
  padding-block: clamp(var(--space-8), 8vw, var(--space-12));
  background: #f6f7fb;
}
.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
/* Heading weight: Red Hat Display headers = 800 */
.vv-pla-page :where(h1, h2, h3, h4) { letter-spacing: -0.01em; }
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: var(--space-6);
}
.section-title em {
  font-style: normal;
  font-weight: 800;
  color: var(--color-primary);
}
.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-bottom: var(--space-12);
}
.v-security-section-sub{
 text-align: center;
  color: #4a5568;
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 15px;
  line-height: 1.7;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-3) var(--space-6);
  border-radius: 5px !important;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn--lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}
.btn--primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent;
  color: #064d80;/*var(--color-text);*/
  border: 2px solid var(--color-border);
}
.btn--outline:hover { border-color: var(--color-border); color: #fff ; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: none;
  padding: var(--space-2);
  border-radius: var(--radius-md);
}
.btn--ghost:hover { background: var(--color-surface-2); color: var(--color-text); }
.btn--white {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
  font-weight: 700;
  border-radius: 5px !important;
}
.btn--white:hover { background: transparent; border: 2px solid rgba(255, 255, 255, 0.5) ; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 5px !important;
}
.btn--outline-white:hover { border-color: #fff; color: var(--color-navy); background: #fff; transform: translateY(-1px); }

/* ── NAV ─────────────────────────────────────────────────────── */
/* .nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--color-divider);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav--scrolled { border-color: var(--color-divider); box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
  padding-block: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav__logo { flex-shrink: 0; }
.nav__logo-img { height: 36px; width: auto; display: block; }
.nav__links {
  display: flex;
  gap: var(--space-8);
  margin-inline-start: auto;
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--color-primary); }
.nav__ctas { display: flex; align-items: center; gap: var(--space-3); } */

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--color-primary) 0%, var(--color-navy-hover) 100%) 1;
  background: #ffffff;
  margin-top:124px;
}
/* Full-bleed background photo */
.hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://www.visualvisitor.com/wp-content/uploads/2026/06/pla-lp-hero-image.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 0;
  padding-block: clamp(var(--space-10), 5vh, var(--space-16)) var(--space-8);
  gap: var(--space-4);
}
/* height: calc(100vh - 68px);
max-height: 560px; */
/* Text sits on the white left half of the photo */
.hero__text {
  width: clamp(340px, 48%, 560px);
}
.hero__badge {
  display: block;
  width: fit-content;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-highlight);
  border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  white-space: nowrap;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-navy);
  max-width: 18ch;
  margin-bottom: var(--space-3);
}
.hero__headline em {
  font-style: normal;
  font-weight: 800;
  color: var(--color-primary);
}
.hero__sub {
  font-size: clamp(15.2px, 13.6px + 7.68px, 16.8px);
  color: var(--color-text-muted);
  max-width: 48ch;
  margin-bottom: var(--space-4);
  line-height: 1.6;
}
.hero__sub strong { color: var(--color-navy); }
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  align-items: flex-start;
  width: fit-content;
  margin: 20px 0;
}
.hero__actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.hero__proof {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-6);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3) var(--space-5);
  flex-wrap: nowrap;
  align-self: flex-start;
  width: fit-content;
}
.hero__proof-item {
  text-align: center;
  white-space: nowrap;
}
.hero__proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.hero__proof-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hero__proof-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}

/* ── COMPARE ─────────────────────────────────────────────────── */
.compare { background: var(--color-surface); }
.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.compare__card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.compare__card--new {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-lg);
}
.compare__card-header {
  padding: var(--space-5) var(--space-8);
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-divider);
}
.compare__card--new .compare__card-header { background: var(--color-primary-highlight); border-color: var(--color-primary); }
.compare__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compare__tag--old { color: var(--color-text-muted); }
.compare__tag--new { color: var(--color-primary); }
.compare__list {
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.compare__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.55;
}
.compare__icon { flex-shrink: 0; margin-top: 2px; }
.compare__item--bad .compare__icon { color: var(--color-error); }
.compare__item--good .compare__icon { color: var(--color-primary); }
.compare__item--bad span { color: var(--color-text-muted); }
.compare__item--good span { color: var(--color-text); font-weight: 500; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how-it-works .feature-split{
  display: block;
}
.how { background: #ffffff; padding-top: clamp(var(--space-8), 4vw, var(--space-16)); }
.how-it-works .col-a h2{
  font-size: var(--text-xl);
}
.how-it-works .col-b .lead{
  font-size: var(--text-base) ;
}
.how__steps {
  display: flex;
  align-items: stretch;
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.how__step {
  flex: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.how__step-number {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--color-primary-highlight);
  line-height: 1;
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
  color: color-mix(in srgb, var(--color-primary) 20%, transparent);
}
.how__step-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}
.how__step h3 {
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: var(--space-3);
  color: var(--color-navy);
}
.how__step p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; }
.how__step-arrow {
  flex-shrink: 0;
  margin-top: clamp(80px, 10vw, 110px);
  color: var(--color-primary);
  opacity: 0.5;
}

/* ── AUDIENCE ────────────────────────────────────────────────── */
.audience {
  background: linear-gradient(160deg, var(--color-navy) 0%, #022f4f 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  margin-inline: clamp(var(--space-6), 4vw, var(--space-16));
  margin-block: clamp(var(--space-10), 5vw, var(--space-16));
  overflow: hidden;
  position: relative;
}
.audience .section-title { color: #fff; }
.audience .section-title em { color: var(--color-primary); }
.audience__tabs {
  display: inline-flex;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  padding: var(--space-1);
  gap: var(--space-1);
  margin-bottom: var(--space-8);
}
.audience__tab {
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
}
.audience__tab--active {
  background: var(--color-primary);
  color: #fff;
}
.audience__tab:hover:not(.audience__tab--active) { color: #fff; }
.audience__content--hidden { display: none; }
.audience__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-8);
  max-width: 55ch;
}
.audience__desc strong { color: #fff; }
.audience__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.audience__chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  transition: background var(--transition), transform var(--transition);
}
.audience__chip:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.chip-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
}
.chip-count {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 700;
}
.audience__chip--highlight {
  border-color: var(--color-primary);
  background: rgba(122, 197, 70, 0.18);
}
.audience__chip--more {
  border-style: dashed;
  border-color: rgba(255,255,255,0.25);
}
.audience__chip--more .chip-label { color: rgba(255,255,255,0.6); font-style: italic; }

/* ── BENEFITS ────────────────────────────────────────────────── */
 .benefits { background: var(--color-bg); padding: clamp(32px, 8vw, 48px); /*padding-top: clamp(var(--space-10), 5vw, var(--space-20));*/ }
.benefits .section-title { max-width: 26ch;     margin: 0 auto var(--space-6) auto; text-align: center;}
.benefits .pla-how__sub { text-align: center; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-12);
}
.benefits__card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefits__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.benefits__card--accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  border-color: var(--color-primary);
  color: #fff;
}
.benefits__card--accent h3, .benefits__card--accent p { color: #fff; }
.benefits__card--accent p { color: rgba(255,255,255,0.85); }
.benefits__card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}
.benefits__card--accent .benefits__card-icon { background: rgba(255,255,255,0.2); color: #fff; }
.benefits__card h3 {
  font-size: var(--text-base);
  font-weight: 800;
  margin-bottom: var(--space-3);
  color: var(--color-navy);
}
.benefits__card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; } 

/* ── LEAD REACTIVATION ───────────────────────────────────────── */
.reactivation { background: #ffffff; }
.reactivation__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: center;
}
.reactivation__text { max-width: 54ch; }
.reactivation__text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.reactivation__text strong { color: var(--color-text); }
.reactivation__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}
.reactivation__step {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.reactivation__step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  margin-top: 2px;
}
.reactivation__step strong { display: block; font-weight: 700; margin-bottom: var(--space-1); color: var(--color-text); }
.reactivation__step p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; }

/* Live demo card */
.reactivation__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.reactivation__card-header {
  padding: var(--space-4) var(--space-6);
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-divider);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
}
.reactivation__card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.reactivation__card-dot--green { background: #22c55e; animation: pulse-green 1.8s ease-in-out infinite; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}
.reactivation__alert {
  padding: var(--space-5) var(--space-6);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-primary-highlight);
}
.reactivation__alert--muted { background: var(--color-surface); opacity: 0.6; }
.alert-icon {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}
.alert-name { font-size: var(--text-sm); font-weight: 700; color: var(--color-text); margin-bottom: 4px; }
.alert-detail { font-size: var(--text-xs); color: var(--color-text-muted); margin-bottom: 4px; }
.alert-topic { font-size: var(--text-xs); color: var(--color-text-muted); }
.alert-badge {
  display: inline-block;
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  border: 1px solid var(--color-primary);
}
.reactivation__stats {
  display: flex;
  padding: var(--space-5) var(--space-6);
  gap: var(--space-4);
  justify-content: space-around;
}
.reactivation__stat { text-align: center; }
.stat-num {
  display: block;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.stat-label { font-size: var(--text-xs); color: var(--color-text-muted); font-weight: 600; } 

/* ── SOCIAL PROOF ────────────────────────────────────────────── */
.social-proof { background: var(--color-bg); padding-top: clamp(var(--space-8), 4vw, var(--space-16)); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.testimonial {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testimonial__stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: var(--space-4); letter-spacing: 2px; }
.testimonial blockquote {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-5);
}
.testimonial cite {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── COMPLIANCE ──────────────────────────────────────────────── */
.compliance { background: #ffffff; }
.compliance__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: center;
}
.compliance__text p:not(.section-eyebrow) { font-size: var(--text-base); color: var(--color-text-muted); max-width: 50ch; }
.compliance__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.compliance__badge {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  text-align: center;
  min-width: 160px;
  box-shadow: var(--shadow-sm);
}
.compliance__percent {
  display: block;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.compliance__label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq { background: var(--color-bg); }
.faq__inner { max-width: 820px; margin-inline: auto; }
.faq__header { text-align: center; margin-bottom: var(--space-12); }
.faq__list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq__item {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq__item[open] { border-color: var(--color-primary); box-shadow: var(--shadow-sm); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  gap: var(--space-4);
  transition: color var(--transition);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--color-primary); }
.faq__item[open] .faq__question { color: var(--color-primary); }
.faq__chevron {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--transition);
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); color: var(--color-primary); }
.faq__answer {
    /* padding: 0 var(--space-6) var(--space-6); */
     height: 0;
  overflow: hidden;
  padding: 0 var(--space-6);
  transition: height .35s ease;
}
.faq__answer p { margin: 0; padding-bottom: var(--space-6); font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; max-width: 65ch; }

/* ── FINAL CTA ───────────────────────────────────────────────── */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, var(--color-navy) 0%, #022438 100%);
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-navy-hover) 100%);
  z-index: 2;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(3,90,150,0.2) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(2,61,102,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta__inner { position: relative; z-index: 1; }
.final-cta__headline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-5);
}
.final-cta__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.72);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}
.final-cta__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}
.final-cta__phone {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}
.final-cta__phone a { color: rgba(255,255,255,0.75) !important; font-weight: 600; }
.final-cta__phone a:hover { color: var(--color-primary) !important; }

/* ── FOOTER ──────────────────────────────────────────────────── */
/* .footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-16) var(--space-8);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  margin-bottom: var(--space-12);
}
.footer__logo { margin-bottom: var(--space-5); display: inline-block; }
.footer__logo-img { height: 40px; width: auto; display: block; }
.footer__brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 38ch;
  line-height: 1.6;
  margin-bottom: var(--space-3);
}
.footer__phone a {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}
.footer__links { display: flex; gap: clamp(var(--space-8), 4vw, var(--space-16)); }
.footer__col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--color-primary); }
.footer__bottom {
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-8);
}
.footer__bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: none;
}
.footer__bottom a {
  color: var(--color-text-faint);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.footer__bottom a:hover { color: var(--color-primary); text-decoration-color: var(--color-primary); } */
/* ──────────────────────────────────────────────────────────── */

.pla-hero {
  background: linear-gradient(135deg, #03426e 0%, #022f4f 55%, #022438 100%);
  padding: 72px 0 60px;/*clamp(72px, 10vw, 120px) 0 clamp(64px, 8vw, 104px);*/
  position: relative;
  overflow: hidden;
  border-bottom: none;
  margin-top: 124px;
}
.pla-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 100% 40%, rgba(122,197,70,.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(4,77,128,.3) 0%, transparent 60%);
  pointer-events: none;
}

.pla-hero__inner {
  /* display: grid; */
  /* grid-template-columns: 1fr 1fr; */
  display: flex;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  position: relative;
}

.pla-hero__pill {
  /* display: inline-flex; */
  /* align-items: center; */
  flex-wrap: wrap;
  justify-content: center;
  /* padding: 6px 14px; */
  /* border-radius: 999px; */
  /* background: rgba(122,197,70,.15); */
  /* border: 1px solid rgba(122,197,70,.4); */
  font-size: var(--text-xs);/*.72rem*/
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pla-green);
  margin-bottom: 18px;
  gap: 0;
}
.pla-hero__pill span { white-space: nowrap; }
.pla-hero__pill-dot {
  color: rgba(122,197,70,.6);
  margin: 0 6px;
}
@media (max-width: 480px) {
  .pla-hero__pill {
    border-radius: 12px;
    gap: 4px 0;
    padding: 8px 14px;
  }
  .pla-hero__pill-dot { display: none; }
  .pla-hero__pill span { display: block; text-align: center; }
}

.pla-hero__h1 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 1.08;
  color: var(--pla-white);
  margin: 10px 0 20px;
}
.pla-hero__h1 em {
  font-style: normal;
  color: var(--pla-green);
}

.pla-hero__sub {
  font-size: clamp(15.2px, 13.6px + 7.68px, 16.8px);
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 50ch;
  margin-bottom: 34px;
}

.pla-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero button variants */
.btn--primary {
  background: var(--pla-green);
  border: 2px solid var(--pla-green);
  color: #fff;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background var(--pla-transition), border-color var(--pla-transition);
}
.btn--primary:hover {
  background: var(--pla-green-d);
  border-color: var(--pla-green-d);
}
.pla-btn--outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: border-color var(--pla-transition), background var(--pla-transition);
}
.pla-btn--outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--color-navy);
}
/* Legacy button variants used in later sections */
.btn--green { background: var(--pla-green); border-color: var(--pla-green); color: #fff; font-weight: 700; }
.btn--green:hover { background: var(--pla-green-d); border-color: var(--pla-green-d); }
/* .btn--white { background: #fff; border-color: #fff; color: var(--pla-navy); font-weight: 700; }
.btn--white:hover { background: #f0f4f8; } */
.btn--outline-white { border: 2px solid #fff; color: #fff; font-weight: 700; }
.btn--outline-white:hover { border-color: var(--color-navy); background: #fff; }

/* ── Hero right-side graphic panel ── */
.pla-hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.pla-hero__graphic {
  background: #fff;
  border: 1px solid var(--pla-border);
  border-radius: 16px;
  box-shadow: var(--pla-sh-lg);
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  font-size: 13px;
}

/* ── Hero graphic: dashboard mockup ────────────────────── */
.pla-dash {
  display: flex;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  font-size: 12px;
  box-shadow: 0 8px 40px -8px rgba(3,66,110,.35);
}

/* Sidebar */
.pla-dash__sidebar {
  width: 148px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid #e5e9ed;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pla-dash__sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 8px;
  border-bottom: 1px solid #e5e9ed;
  font-weight: 700;
  font-size: 11px;
  color: #1a2b3c;
}
.pla-dash__criteria-list {
  flex: 1;
  overflow: hidden;
}
.pla-dash__criteria-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12px;
  border-bottom: 1px solid #f0f2f5;
  font-size: 10px;
  color: #3a4d5c;
  cursor: default;
}
.pla-dash__criteria-row--open {
  color: #03426e;
  font-weight: 600;
}
.pla-dash__criteria-expanded {
  background: #f8f9fb;
  padding: 8px 12px;
  border-bottom: 1px solid #e5e9ed;
}
.pla-dash__criteria-label {
  font-size: 10px;
  font-weight: 600;
  color: #03426e;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pla-dash__check {
  color: #5a9e2f;
  font-size: 11px;
}
.pla-dash__topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 5px;
}
.pla-dash__topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #03426e;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 999px;
}
.pla-dash__chip-x { opacity: .7; cursor: pointer; }
.pla-dash__topics-note {
  font-size: 9px;
  color: #7a9ab0;
}
.pla-dash__sidebar-btns {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  border-top: 1px solid #e5e9ed;
}
.pla-dash__btn-search {
  background: #03426e;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 0;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}
.pla-dash__btn-create {
  background: #7ac546;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 0;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

/* Map panel */
.pla-dash__map {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f5f7fa;
}
.pla-dash__tabs {
  display: flex;
  gap: 0;
  padding: 0 14px;
  background: #fff;
  border-bottom: 1px solid #e5e9ed;
}
.pla-dash__tab {
  padding: 9px 12px 7px;
  font-size: 11px;
  font-weight: 600;
  color: #7a9ab0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.pla-dash__tab--active {
  color: #e6a817;
  border-bottom-color: #e6a817;
}
.pla-dash__map-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  background: #fff;
  border-bottom: 1px solid #e5e9ed;
}
.pla-dash__map-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f5f7fa;
  border: 1px solid #dce3ea;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 10px;
  color: #aab4be;
  min-width: 120px;
}
.pla-dash__map-body {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.pla-dash__us-map {
  width: 100%;
  height: 100%;
}
.pla-dash__map-land {
  fill: #d4e6c3;
  stroke: #b8d4a0;
  stroke-width: 1.5;
}
.pla-dash__map-region {
  fill: rgba(3,66,110,.18);
  stroke: #03426e;
  stroke-width: 1.5;
}
.pla-dash__map-badge-bg {
  fill: #03426e;
}
.pla-dash__map-badge-txt {
  fill: #fff;
  font-size: 8px;
  font-weight: 700;
  font-family: 'Red Hat Display', sans-serif;
}
.pla-dash__map-grid {
  stroke: #c8d4dc;
  stroke-width: .5;
  stroke-dasharray: 3 3;
}

/* ── Dashboard modal overlay ────────────────────────────── */
.pla-dash__sidebar--dimmed,
.pla-dash__map--dimmed { opacity: .45; pointer-events: none; }

.pla-dash__add-topic-btn {
  background: #03426e;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  width: 100%;
}

.pla-dash__modal-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12px;
  z-index: 10;
}
.pla-dash { position: relative; }

.pla-dash__modal {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 260px;
  box-shadow: 0 12px 40px -8px rgba(3,66,110,.35);
  display: flex;
  flex-direction: column;
}
.pla-dash__modal-header {
  background: #03426e;
  color: #fff;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 10px 14px;
}
.pla-dash__modal-body {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pla-dash__field-label {
  font-size: 9px;
  font-weight: 600;
  color: #5a6b7b;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pla-dash__field-input {
  border: 1px solid #dce3ea;
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 10px;
  color: #1a2b3c;
  background: #fff;
}
.pla-dash__field-input--typing {
  color: #03426e;
  position: relative;
}
.pla-dash__field-input--typing::after {
  content: '';
  display: inline-block;
  width: 1.5px;
  height: 1em;
  background: #03426e;
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: pla-blink .8s step-end infinite;
}
@keyframes pla-blink { 0%,100%{opacity:1} 50%{opacity:0} }

.pla-dash__field-select {
  border: 1px solid #dce3ea;
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 10px;
  color: #1a2b3c;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.pla-dash__field-select--chips {
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-start;
}
.pla-dash__select-x {
  font-size: 12px;
  color: #aab4be;
  cursor: pointer;
  margin-left: auto;
  margin-right: 4px;
}

.pla-dash__dropdown {
  border: 1px solid #dce3ea;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 2px;
}
.pla-dash__dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 9px;
  font-size: 10px;
  color: #1a2b3c;
  border-bottom: 1px solid #f0f2f5;
}
.pla-dash__dropdown-item:last-child { border-bottom: none; }
.pla-dash__dropdown-item--active {
  background: #03426e;
  color: #fff;
}
.pla-dash__dd-check {
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  flex-shrink: 0;
  opacity: .5;
}
.pla-dash__dropdown-item--active .pla-dash__dd-check {
  background: #fff;
  border-color: #fff;
  opacity: 1;
}

.pla-dash__modal-footer {
  display: flex;
  gap: 6px;
  padding: 8px 14px;
  border-top: 1px solid #e5e9ed;
  justify-content: flex-end;
}
.pla-dash__modal-btn {
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}
.pla-dash__modal-btn--ghost {
  background: #fff;
  border: 1px solid #dce3ea;
  color: #5a6b7b;
}
.pla-dash__modal-btn--primary {
  background: #03426e;
  color: #fff;
}

/* ── Hero graphic: spotlight variant ───────────────────────── */
.pla-graphic__timestamp {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  color: var(--pla-muted);
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(220,227,234,.6);
}

.pla-graphic__spotlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(220,227,234,.6);
}
.pla-graphic__spotlight-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
  flex-shrink: 0;
}
.pla-graphic__spotlight-info {
  flex: 1;
  min-width: 0;
}
.pla-graphic__spotlight-name {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--pla-navy);
  margin-bottom: 3px;
}
.pla-graphic__spotlight-meta {
  font-size: .78rem;
  color: var(--pla-muted);
  margin-bottom: 6px;
}
.pla-graphic__spotlight-activity {
  font-size: .78rem;
  color: var(--pla-navy);
  font-weight: 500;
  line-height: 1.4;
}

.pla-graphic__spotlight-divider {
  padding: 8px 16px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pla-muted);
  background: rgba(248,249,251,.6);
  border-bottom: 1px solid rgba(220,227,234,.6);
}

.pla-graphic__platforms {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(220,227,234,.6);
}
.pla-graphic__platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--pla-navy);
  background: #fff;
  border: 1px solid var(--pla-border);
  border-radius: 999px;
  padding: 5px 12px;
  box-shadow: 0 1px 3px rgba(3,66,110,.06);
}

/* Browser chrome bar */
.pla-graphic__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--pla-bg);
  border-bottom: 1px solid var(--pla-border);
}
.pla-graphic__bar-dots {
  display: flex;
  gap: 5px;
}
.pla-graphic__bar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.pla-graphic__bar-dots span:nth-child(1) { background: #ff5f57; }
.pla-graphic__bar-dots span:nth-child(2) { background: #ffbd2e; }
.pla-graphic__bar-dots span:nth-child(3) { background: #28c840; }
.pla-graphic__bar-url {
  flex: 1;
  font-size: 11px;
  color: var(--pla-muted);
  background: #fff;
  border: 1px solid var(--pla-border);
  border-radius: 6px;
  padding: 3px 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pla-graphic__bar-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--pla-green-d);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.pla-graphic__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pla-green);
  animation: pla-pulse 1.6s ease-in-out infinite;
  display: inline-block;
}
@keyframes pla-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.85); }
}

/* Graphic body */
.pla-graphic__body {
  display: flex;
  flex-direction: column;
}

/* Stats row */
.pla-graphic__stats {
  display: flex;
  border-bottom: 1px solid var(--pla-border);
}
.pla-graphic__stat {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
}
.pla-graphic__stat-sep {
  width: 1px;
  background: var(--pla-border);
  flex-shrink: 0;
}
.pla-graphic__stat-num {
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--pla-navy);
  line-height: 1.1;
}
.pla-graphic__stat-lbl {
  display: block;
  font-size: 10px;
  color: var(--pla-muted);
  margin-top: 3px;
}

/* Section label */
.pla-graphic__section-label {
  padding: 9px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pla-muted);
  background: var(--pla-bg);
  border-bottom: 1px solid var(--pla-border);
}

/* Person rows */
.pla-graphic__rows {
  display: flex;
  flex-direction: column;
}
.pla-graphic__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--pla-border);
  transition: background var(--pla-transition);
}
.pla-graphic__row:last-child { border-bottom: none; }
.pla-graphic__row:hover { background: var(--pla-bg); }

.pla-graphic__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
}

.pla-graphic__info {
  flex: 1;
  min-width: 0;
}
.pla-graphic__name {
  font-weight: 700;
  color: var(--pla-text);
  font-size: 12.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pla-graphic__title {
  font-weight: 400;
  color: var(--pla-muted);
  font-size: 11px;
  margin-left: 4px;
}
.pla-graphic__company {
  font-size: 11px;
  color: var(--pla-muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pla-graphic__row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.pla-graphic__source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  background: var(--pla-bg);
  border: 1px solid var(--pla-border);
  color: var(--pla-muted);
  white-space: nowrap;
}

.pla-graphic__intent {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.pla-graphic__intent--hot  { background: #fff4ed; color: #c2410c; }
.pla-graphic__intent--warm { background: #f0fdf4; color: #166534; }

/* Graphic footer tags */
.pla-graphic__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--pla-bg);
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.pla-graphic__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--pla-muted);
  background: #fff;
  border: 1px solid var(--pla-border);
  border-radius: 20px;
  padding: 3px 9px;
}
.pla-graphic__tag--green {
  color: var(--pla-green-d);
  border-color: rgba(90,158,47,.3);
  background: #f0fdf4;
}

/* Responsive ─ hero */
@media (max-width: 860px) {
  .pla-hero__inner {
    grid-template-columns: 1fr;
  }
  .pla-hero__visual {
    order: -1;
  }
  .pla-hero__graphic {
    max-width: 100%;
  }
  .pla-hero__h1 {
    font-size: clamp(30px, 7vw, 44px);
  }
}

/* ── ACT 1: BROKEN ───────────────────────────────────────────── */
.pla-broken {
  background: var(--pla-bg);
  padding: clamp(64px, 8vw, 112px) 0;
}

.pla-broken__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}

.pla-broken__h2 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  color: var(--pla-navy);
  line-height: 1.2;
  margin: 10px 0 14px;
}

.pla-broken__sub {
  font-size: .95rem;
  color: var(--pla-muted);
  line-height: 1.7;
}

.pla-broken__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pla-broken__card {
  background: var(--pla-white);
  border: 1px solid var(--pla-border);
  border-top: 3px solid var(--pla-red);
  border-radius: var(--pla-r);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pla-broken__card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.pla-broken__card-icon--red { background: #fee2e2; color: var(--pla-red); }

.pla-broken__card strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--pla-navy);
}

.pla-broken__card p {
  font-size: .85rem;
  color: var(--pla-muted);
  line-height: 1.6;
  margin: 0;
}

/* Section 2 */
/* ── ACT 2: SHIFT ────────────────────────────────────────────── */
.pla-shift {
  background: var(--pla-white);
  padding: clamp(32px, 8vw, 48px);/*clamp(64px, 8vw, 112px) 0*/
}

.pla-shift__inner { max-width: 960px; margin: 0 auto; }

.pla-shift__statement {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;/*clamp(48px, 6vw, 72px)*/
}

.pla-shift__h2 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: var(--text-xl);/*clamp(28px, 3.2vw, 46px)*/
  font-weight: 900;
  color: var(--pla-navy);
  line-height: 1.15;
  margin: 10px 0 16px;
}
.pla-shift__h2 em { font-style: normal; color: var(--pla-green); }

.pla-shift__sub {
  font-size: var(--text-base);/*clamp(15px, 1.2vw, 17px)*/
  color: var(--pla-muted);
  line-height: 1.7;
  max-width: 58ch;
  margin: 0 auto;
}

/* Compare columns */
.pla-shift__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.pla-shift__col {
  border-radius: var(--pla-r);
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--pla-border);
  display: flex;
  flex-direction: column;
}
.pla-shift__col--old { border-color: var(--pla-navy); }
.pla-shift__col--new { border-color: var(--pla-green); }

/* Header band */
.pla-shift__col-header {
  background: #eef1f5;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(3,66,110,.15);
}
.pla-shift__col-header--green {
  background: #e4f5d4;
  border-bottom-color: rgba(122,197,70,.3);
}

/*.8rem*/
.pla-shift__col-label {
  font-size: var(--text-base);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #646267;
  margin: 0;
}
.pla-shift__col-label--green { color: var(--pla-green); }

/* Body area */
.pla-shift__col-body {
  padding: 28px 24px;
  background: #fff;
  flex: 1;
}

.pla-shift__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.pla-shift__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--text-sm) !important;/*.9rem*/ color: var(--pla-muted); line-height: 1.55;
}
.pla-shift__list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
.pla-shift__list--bad  li::before { background-color: transparent; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23dc2626' stroke-width='2'/%3E%3Cpath d='M15 9l-6 6M9 9l6 6' stroke='%23dc2626' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-size: 20px; }
.pla-shift__list--good li::before { background-color: transparent; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%237ac546' stroke-width='2'/%3E%3Cpath d='M8 12l3 3 5-5' stroke='%237ac546' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 20px; }


.pla-shift__divider { display: none; }

/* ── ACT 2: HOW IT WORKS ─────────────────────────────────────── */
.pla-how {
  background: var(--pla-bg);
  /* padding: clamp(64px, 8vw, 112px) 0; */
  padding: clamp(32px, 8vw, 48px);
}

.pla-how__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;/*clamp(48px, 6vw, 72px)*/
}

.pla-how__h2 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: var(--text-xl);/*clamp(28px, 3.2vw, 46px)*/
  font-weight: 800;
  color: var(--pla-navy);
  margin: 10px 0 12px;
  line-height: 1.2;
}

.pla-how__sub { font-size: var(--text-base);/*.95rem*/ color: var(--pla-muted); line-height: 1.65; }

/* Horizontal steps grid */
.pla-how__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.pla-how__step {
  background: var(--pla-white);
  border: 1px solid var(--pla-border);
  border-radius: var(--pla-r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  box-sizing: border-box;
}

/* Arrow connector */
.pla-how__arrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 38px;
  color: var(--pla-border);
  flex-shrink: 0;
  width: 48px;
}

.pla-how__step-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--pla-navy);
  color: #fff;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size: var(--text-lg); /* clamp(10px, 50.1px,35px) */ /*.82rem*/
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pla-how__step-body { display: flex; flex-direction: column; gap: 10px; flex: 1; }

.pla-how__step-body h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: var(--text-lg);/*1rem*/ font-weight: 800;
  color: var(--pla-navy);
  margin: 0;
  line-height: 1.3;
}

.pla-how__step-body p {
  font-size: var(--text-sm);/*.875rem*/ color: var(--pla-muted); line-height: 1.65;
  margin: 0;
}

/* topic chips */
.pla-how__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 16px; }
.pla-chip {
  font-size: var(--text-xs);/*.75rem*/ font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--pla-border);
  background: var(--pla-bg);
  color: var(--pla-text);
}
.pla-chip--more { border-style: dashed; color: var(--pla-muted); }

/* identity rows */
.pla-how__identities { display: flex; flex-direction: column; gap: 6px; }
.pla-identity {
  display: flex; align-items: center; gap: 10px;
  background: var(--pla-bg);
  border: 1px solid var(--pla-border);
  border-radius: 8px;
  padding: 8px 12px;
}
.pla-identity--muted { opacity: .55; }
.pla-identity__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 9px; /*.72rem*/ color: #fff; flex-shrink: 0;
}
.pla-identity__info { flex: 1; min-width: 0; }
.pla-identity__name { font-size: var(--text-xs); /*.82rem*/ font-weight: 700; color: var(--pla-navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pla-identity__role { font-size: .7rem; color: var(--pla-muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pla-identity__tag {
  font-size: 8.5px; /*.62rem*/ font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: 2px 7px; border-radius: 999px;
  background: rgba(122,197,70,.15); color: var(--pla-green-d);
  white-space: nowrap; flex-shrink: 0;
}
.pla-identity__tag--unknown {
  background: rgba(100,116,139,.1); color: var(--pla-muted);
}

/* platform badges */
.pla-how__platforms { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 16px; }
.pla-platform-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--text-xs) ;/* .78rem; */ font-weight: 600; color: var(--pla-text);
  background: var(--pla-bg);
  border: 1px solid var(--pla-border);
  padding: 5px 12px; border-radius: 999px;
}

/* ── ACT 3: AUDIENCES ────────────────────────────────────────────── */
.pla-audience {
  background: linear-gradient(135deg, #044d80 0%, #03426e 50%, #02375d 100%);
  /* padding: clamp(64px, 8vw, 112px) 0; */
  padding: clamp(32px, 8vw, 48px);
}

.pla-audience__header {
  text-align: center;
  margin-bottom: 36px;
}
.pla-audience__h2 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: var(--text-xl);/*clamp(26px, 3vw, 40px)*/
  font-weight: 800;
  color: var(--pla-white);
  line-height: 1.2;
  margin: 10px 0 0;
}

/* Tab nav */
.pla-audience__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 4px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.pla-audience__tab {
  flex: 1;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: 'Open Sans', sans-serif;
  font-size: var(--text-sm);/*.9rem*/
  font-weight: 600;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: background var(--pla-transition), color var(--pla-transition), box-shadow var(--pla-transition);
  white-space: nowrap;
}
.pla-audience__tab--active {
  background: var(--pla-green);
  color: var(--pla-white);
  box-shadow: 0 1px 6px rgba(0,0,0,.2);
}
.pla-audience__tab:hover:not(.pla-audience__tab--active) {
  color: var(--pla-white);
}

/* Panels */
.pla-audience__panel {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--pla-r);
  padding: clamp(28px, 4vw, 48px);
}
.pla-audience__panel--hidden { display: none; }

.pla-audience__panel-header { margin-bottom: 24px; }
.pla-audience__panel-header h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: var(--text-lg); /*clamp(18px, 2vw, 24px)*/
  font-weight: 800;
  color: var(--pla-white);
  margin: 0 0 8px;
}
.pla-audience__panel-header p { font-size: var(--text-base); /*.9rem*/ color: rgba(255,255,255,.7); line-height: 1.65; margin: 0; }
.pla-audience__panel-header strong { color: var(--pla-white); }

/* Topic grid */
.pla-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.pla-topic-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 14px 16px;
  transition: box-shadow var(--pla-transition), border-color var(--pla-transition);
}
.pla-topic-card:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.3);
}
.pla-topic-card__label {
  font-size: var(--text-sm);/*.88rem*/
  font-weight: 700;
  color: var(--pla-white);
  margin-bottom: 4px;
}
.pla-topic-card__count {
  font-size: var(--text-xs);/*.78rem*/
  color: var(--pla-green);
  font-weight: 600;
}

.pla-audience__more {
  text-align: center;
  font-size: var(--text-sm);/*.85rem*/
  color: var(--pla-green);
  font-weight: 600;
  margin: 0;
}

/* ── ACT 4: LEAD REACTIVATION ───────────────────────────────── */
.pla-react {
  background: var(--pla-navy);
  padding: clamp(32px, 8vw, 48px);/* padding: clamp(64px, 8vw, 112px) 0; */
}

/* Bridge headline */
.pla-react__bridge {
  text-align: center;
  margin: 0 auto 50px;   /* margin: 0 auto clamp(48px, 6vw, 72px); */
}
.pla-react__bridge-h2 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: var(--text-xl);/*clamp(22px, 2.4vw, 32px)*/
  font-weight: 800;
  color: var(--pla-white);
  line-height: 1.35;
  margin: 10px auto 0;
  max-width: 780px;
}
.no_maxwidth{
  max-width: none;
}
.pla-react__bridge-h2 em {
  font-style: italic;
  color: var(--pla-green);
}

/* Two-column body */
.pla-react__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Left: text */
.pla-react__h2 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: var(--text-lg);/*clamp(24px, 2.6vw, 34px)*/
  font-weight: 800;
  color: var(--pla-white);
  line-height: 1.2;
  margin: 0 0 16px;
}
.pla-react__intro-p {
  font-size: var(--text-sm);/*.93rem*/
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin: 0 0 12px;
}
.pla-react__emphasis {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--pla-white);
  margin: 0 0 28px;
}

/* Steps */
.pla-react__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pla-react__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pla-react__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pla-green);
  color: #fff;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size:  var(--text-lg);/* .82rem */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pla-react__step strong {
  display: block;
  font-size: var(--text-base);/*.93rem*/
  font-weight: 700;
  color: var(--pla-white);
  margin-bottom: 5px;
}
.pla-react__step p {
  font-size: var(--text-sm);/*.86rem*/
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin: 0;
}

/* Right: live card visual */
.pla-react__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Live card */
.pla-live-card {
  background: var(--pla-bg);
  border: 1px solid var(--pla-border);
  border-radius: var(--pla-r);
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--pla-sh);
}

/* Browser chrome bar */
.pla-live-card__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #e8ecf0;
  border-bottom: 1px solid var(--pla-border);
}
.pla-chrome-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pla-chrome-dot--red    { background: #ff5f57; }
.pla-chrome-dot--yellow { background: #febc2e; }
.pla-chrome-dot--green  { background: #28c840; }
.pla-chrome-url {
  flex: 1;
  font-size: 11px;
  color: var(--pla-muted);
  background: #fff;
  border: 1px solid var(--pla-border);
  border-radius: 4px;
  padding: 3px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 6px;
}

/* App toolbar */
.pla-live-card__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid var(--pla-border);
}
.pla-toolbar-title {
  font-size: 13.12px;/*.82rem*/
  font-weight: 700;
  color: var(--pla-navy);
}
.pla-toolbar-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.52px;/*.72rem*/
  color: var(--pla-muted);
}

/* Column header row */
.pla-live-card__cols {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  padding: 6px 14px;
  background: var(--pla-bg);
  border-bottom: 1px solid var(--pla-border);
  font-size: 10.88px; /*.68rem*/
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--pla-muted);
}

.pla-live-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid var(--pla-border);
  font-size: 11px;
}
.pla-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pla-green);
  flex-shrink: 0;
  animation: pla-pulse 1.6s ease-in-out infinite;
}
.pla-live-url {
  flex: 1;
  font-size: 11px;
  color: var(--pla-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pla-live-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  color: var(--pla-green-d);
  background: rgba(122,197,70,.12);
  border: 1px solid rgba(122,197,70,.3);
  border-radius: 999px;
  padding: 2px 8px;
  white-space: nowrap;
}

/* Stats row */
.pla-live-stats {
  display: flex;
  border-bottom: 1px solid var(--pla-border);
}
.pla-live-stat {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid var(--pla-border);
}
.pla-live-stat:last-child { border-right: none; }
.pla-live-stat__num {
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--pla-navy);
  line-height: 1.1;
}
.pla-live-stat__lbl {
  display: block;
  font-size: .68rem;
  color: var(--pla-muted);
  margin-top: 3px;
  line-height: 1.3;
}

/* Section label */
.pla-live-section-label {
  padding: 8px 14px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--pla-muted);
  background: var(--pla-bg);
  border-bottom: 1px solid var(--pla-border);
  border-top: 1px solid var(--pla-border);
}

/* Alert rows */
.pla-live-alerts {
  display: flex;
  flex-direction: column;
}
.pla-live-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-bottom: 1px solid var(--pla-border);
  background: #fff;
  transition: background var(--pla-transition);
}
.pla-live-alert:last-child { border-bottom: none; }
.pla-live-alert--muted { opacity: .55; background: var(--pla-bg); }
.pla-live-alert__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(100,116,139,.25);
  flex-shrink: 0;
}
.pla-live-alert__dot--hot {
  background: var(--pla-green);
  animation: pla-pulse 1.6s ease-in-out infinite;
}
.pla-live-alert__body { flex: 1; min-width: 0; }
.pla-live-alert__name {
  font-size: 12.08px; /*.8rem;*/
  font-weight: 700;
  color: var(--pla-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pla-live-alert__detail {
  font-size: 11.52px; /*.72rem;*/
  color: var(--pla-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pla-live-alert__cta {
  font-size: 11.52px; /*.72rem;*/
  font-weight: 700;
  color: var(--pla-green-d);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

/* Card footer */
.pla-live-card__footer {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--pla-bg);
  border-top: 1px solid var(--pla-border);
  font-size: .72rem;
  color: var(--pla-muted);
  font-weight: 500;
}

/* ── ACT 5: AGENCY ───────────────────────────────────────────── */
.pla-agency {
  background: var(--pla-white);
  padding: clamp(32px, 8vw, 48px); /* clamp(64px, 8vw, 112px) 0 */
}
.pla-agency__header { text-align: center; margin-bottom: clamp(36px, 4vw, 52px); max-width: 640px; margin-inline: auto; }
.pla-agency__h2 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: var(--text-xl);/*clamp(24px, 2.6vw, 36px)*/ font-weight: 800;
  color: var(--pla-navy); line-height: 1.2; margin: 8px 0 14px;
}
.pla-agency__sub { font-size: var(--text-base); /*.93rem*/ color: var(--pla-muted); line-height: 1.7; }

.pla-agency__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.pla-agency__card {
  background: var(--pla-bg);
  border: 1px solid var(--pla-border);
  border-radius: var(--pla-r);
  padding: 30px;
  transition: transform var(--pla-transition), box-shadow var(--pla-transition);
}
.pla-agency__card:hover { transform: translateY(-3px); box-shadow: var(--pla-sh); }
.pla-agency__card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(122,197,70,.12); color: var(--pla-green-d);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.pla-agency__card h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: var(--text-base);/* .97rem */ font-weight: 800; color: var(--pla-navy); margin-bottom: 8px;
}
.pla-agency__card p { font-size: var(--text-sm);/* .86rem */ color: var(--pla-muted); line-height: 1.65; margin: 0; }

/* ── ACT 6: FAQ ──────────────────────────────────────────────── */
.pla-faq {
  background: var(--pla-bg);
  padding: clamp(32px, 8vw, 48px); /* clamp(64px, 8vw, 112px) 0 */
}
.pla-faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  /* display: flex;
  justify-content: center; */
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}
.pla-faq__header { position: static; }
.pla-faq__h2 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: var(--text-xl);/* clamp(26px, 3vw, 38px); */ font-weight: 800;
  color: var(--pla-navy); margin: 10px 0 0;
}

.pla-faq__list { display: flex; flex-direction: column; }
.pla-faq__item { border-bottom: 1px solid var(--pla-border); }
.pla-faq__item:first-of-type { border-top: 1px solid var(--pla-border); }
.pla-faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 0; cursor: pointer; list-style: none;
    font-size: var(--text-base);  font-weight: 600; color: var(--pla-navy);
  user-select: none;
}
.pla-faq__q::-webkit-details-marker { display: none; }
.pla-faq__icon {
  flex-shrink: 0; font-size: 20.8px;/* 1.3rem */ font-weight: 300;
  color: var(--pla-green-d); transition: transform var(--pla-transition);
}
.pla-faq__item[open] .pla-faq__icon { transform: rotate(45deg); }
.pla-faq__a { padding-bottom: 20px; }
.pla-faq__a p { font-size: var(--text-sm);/* font-size: .88rem; */ color: var(--pla-muted); line-height: 1.7; margin: 0; }
.pla-faq__a a { color: var(--pla-green); text-decoration: underline; }
.pla-faq__a a:hover { color: var(--pla-green-d); }

/* ── ACT 7: FINAL CTA ────────────────────────────────────────── */
.pla-cta {
  background: #03426e;
  padding: clamp(80px, 10vw, 130px) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.pla-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(122,197,70,.08) 0%, transparent 65%),
    radial-gradient(ellipse 80% 40% at 0% 100%, rgba(4,77,128,.4) 0%, transparent 50%);
  pointer-events: none;
}
.pla-cta__inner { position: relative; }
.pla-cta__h2 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: var(--text-2xl);/* clamp(40px, 5.5vw, 70px) */ font-weight: 900;
  color: #fff; line-height: 1.08; margin-bottom: 20px;
}
.pla-cta__h2 em { font-style: normal; color: var(--pla-green); }
.pla-cta__sub {
  font-size: var(--text-base);/* clamp(15px, 1.2vw, 17px) */ color: rgba(255,255,255,.7);
  line-height: 1.65; max-width: 52ch; margin: 0 auto 36px;
}
.pla-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.pla-cta__phone { font-size: var(--text-sm);/* .88rem */ color: rgba(255,255,255, 0.5); }
.pla-cta__phone a { color: rgba(255, 255, 255, 0.75) !important; font-weight: 600 !important ;/* color: rgba(255,255,255,.65); text-decoration: none; */ }
.pla-cta__phone a:hover { color: #fff; }

/* ─────────────────────────────────────────────────────────── */
/* VV Security Compliance */
/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.security-hero{
  background: #fff;/* linear-gradient(135deg, #d6e8f5 0%, #e8f2fa 40%, #f0f7fc 100%); */
  padding: 72px 0 60px;
  border-bottom: 1px solid #c8dded;
  position: relative;
  overflow: hidden;
  margin-top: 124px;
}

/* Dot matrix pattern — top-left */
/* .security-hero::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 280px;
  height: 280px;
  background-image: radial-gradient(circle, #044d80 1.2px, transparent 1.2px);
  background-size: 18px 18px;
  opacity: 0.12;
  pointer-events: none;
} */

/* Soft circle blob — bottom right */
/* .security-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(4,77,128,0.08) 0%, transparent 70%);
  pointer-events: none;
} */

.hero-inner {
  display: flex;/*grid*/
  /* grid-template-columns: 1fr 340px; */
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-image{
  width: 500px;
  height:auto;
}

.hero-image img {
  width: 100%;
  /* max-width: 300px; */
  margin-left: auto;
  display: block;
}

.security-hero h1 {
  font-size: var(--text-hero);/* clamp(32px, 5vw, 46px) */
  font-weight: 800;
  color: #044d80;
  margin-bottom: 20px;  
  line-height: 1.15;
}

.security-hero p {
  font-size: var(--text-base);/* clamp(15.2px, 13.6px + 7.68px, 16.8px) */
  color: #4a5568;
  max-width: 600px;
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   RESPONSIBLE AI
══════════════════════════════════════════ */
.responsible-ai {
  background: #f6f7fb;
  padding: 72px 0;
  text-align: center;
}

.responsible-ai h2 {
  font-size: var(--text-xl); /*clamp(24px, 3.5vw, 34px)*/
  font-weight: 700;
  color: #044d80;
  margin-bottom: 16px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.pillar {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
}

.pillar-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.pillar-icon svg {
  width: 72px;
  height: 72px;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg);
}

.pillar h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: #044d80;
  margin-bottom: 10px;
}

.pillar p {
  font-size: var(--text-sm);
  color: #4a5568;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   ENTERPRISE SECURITY
══════════════════════════════════════════ */
.enterprise-security {
  background: #fff;
  padding: 72px 0;
}

.enterprise-security h2 {
  font-size: 32px !important;
  font-weight: 700;
  color: #044d80 !important;
  text-align: center;
  margin-bottom: 48px;
}

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

.sec-card {
  background: #f6f7fb;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
}

.sec-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.sec-icon svg {
  width: 72px;
  height: 72px;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg);
}

.sec-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: #044d80;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sec-card p {
  font-size: var(--text-sm);
  color: #4a5568;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   DATA RIGHTS
══════════════════════════════════════════ */
.data-rights {
  background: #f6f7fb;
  padding: 72px 0;
}

.rights-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.rights-headline h2 {
  font-size: var(--text-xl);/*clamp(28px, 4vw, 40px)*/
  font-weight: 700;
  color: #044d80;
  line-height: 1.15;
  margin-bottom: 20px;
}

.rights-headline p {
  font-size: var(--text-base);
  color: #4a5568;
  line-height: 1.7;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.right-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 18px;
}

.right-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-primary-highlight);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-icon svg {
  width: 18px;
  height: 18px;
}

.right-item strong {
  display: block;
  font-size: var(--text-lg);
  font-weight: 700;
  color: #044d80;
  margin-bottom: 4px;
}

.right-item p {
  font-size: var(--text-sm);
  color: #4a5568;
  line-height: 1.55;
}

/* ══════════════════════════════════════════
   COMMITMENTS
══════════════════════════════════════════ */
.commitments {
  background: #044d80;
  padding: 72px 0;
  color: #fff;
}

.commitments h2 {
  font-size: var(--text-xl);/*clamp(24px, 3.5vw, 32px)*/
  font-weight: 700;
  color: #fff !important;
  text-align: center;
  margin-bottom: 12px;
}

.commitments .vv-security-section-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.72);
  text-align: center;
}

.vv-security-section-sub{
  font-size: var(--text-base);
  margin-bottom: 25px;
}

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

.commit-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 28px 24px;
}

.commit-num {
  font-size: clamp(3rem, 5vw,4.5rem);;
  font-weight: 700;
  color: #7ac546;
  margin-bottom: 12px;
  line-height: 1;
}

.commit-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.commit-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.vv-security-faq-section {
  background: #fff;
  padding: 72px 0;
}

.faq-layout {
  /* display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px; */
  align-items: start;
}

.faq-sidebar h2 {
  font-size: var(--text-xl);/*clamp(20px, 2.5vw, 26px)*/
  font-weight: 700;
  color: #044d80;
  line-height: 1.25;
  position: sticky;
  top: 24px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #f7fafc;
}

.faq-item[open] {
  background: #fff;
  border-color: #044d80;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-size: var(--text-base);/*14.5px*/
  font-weight: 600;
  color: #044d80;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23044d80' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item summary:hover {
  background: #edf2fb;
}

.faq-answer {
  padding: 0 20px 18px;
  border-top: 1px solid #e2e8f0;
  height: 0;
  overflow: hidden;
  padding: 0 var(--space-6);
  transition: height .36s ease;
}

.faq-answer p {
  font-size: var(--text-sm);/*13.5px*/
  color: #4a5568;
  line-height: 1.75;
  padding-top: 14px;
  max-width: 68ch;
}

.faq-answer a {
  color: #044d80;
  text-decoration: underline;
}

/* ==========================================
 Latest Home Css 
========================================== */
/* Overline / eyebrow label with dot */
.overline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.overline .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

/* Spacing utilities used in markup */
.mt   { margin-top: var(--space-4); }
.mt-s { margin-top: var(--space-2); }
.mt-l { margin-top: var(--space-10); }

/* Read-more link */
.read-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  transition: gap var(--transition), color var(--transition);
}
.read-link:hover { gap: 9px; color: var(--color-primary-hover); }

/* CTA row (button groups) */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

/* Section head (centered intro block) */
.sec-head {
  max-width: 760px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.sec-head .overline { justify-content: center; }
.sec-head h2 { margin-bottom: var(--space-4); font-size: var(--text-xl); color: var(--color-navy); }
.sec-head p { color: var(--color-text-muted);  font-size: var(--text-base);}

/* ── BUTTON VARIANTS (markup names) ──────────────────────────── */
.btn-green {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}
.btn-green:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-border);
}
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-1px); }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }

/* ── HEADER / NAV (injected by site.js) ──────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: var(--space-3) 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

/* ── HERO (index .split layout) ──────────────────────────────── */
.hero-home{
  margin-top: 124px;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(var(--space-10), 5vw, var(--space-20));
  align-items: center;
}
.col-text h1 { font-size: var(--text-hero) !important; line-height: 1.08; margin-bottom: var(--space-5); }
.split .col-text .lead{ font-size: clamp(15.2px, 13.6px + 7.68px, 16.8px); }
.col-vis img { max-width: 460px; height: auto; display: block; }
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
}
.trust svg { width: 16px; height: 16px; color: var(--color-primary); display: block; max-width: none; }
.trust.on-dark span { color: #c3d2e3; }
.trust.on-dark svg { color: var(--color-primary); }

/* Floating "identified visitors" mock card */
.mock {
  background: #fff;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-5);
  max-width: 360px;
}
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-success);
  background: rgba(26,158,92,0.12);
  padding: 3px 9px;
  border-radius: var(--radius-full);
}
.badge-live::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-success);
}
.mock-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--color-divider);
}
.avatar {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}
.intent-bar {
  margin-top: 6px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  overflow: hidden;
}
.intent-bar i {
  display: block;
  height: 100%;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

/* ── INDUSTRY STRIP / LOGO MARQUEE ───────────────────────────── */
.industry-strip {
  background: var(--color-navy);
  color: #fff;
  padding: var(--space-12) 0;
  overflow: hidden;
}
.strip-headline {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-8);
}
.logo-marquee {
  overflow: hidden;
  margin: var(--space-6) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  gap: var(--space-12);
  width: max-content;
  animation: marquee 38s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.logo-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.strip-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
}
.strip-stats strong { color: var(--color-primary); font-family: var(--font-display); font-size: 16.8px; }
.strip-stats-sep { color: rgba(255,255,255,0.3); }

/* ── GRIDS ───────────────────────────────────────────────────── */
.grid { display: grid; gap: var(--space-6); }
.grid.g2 { grid-template-columns: repeat(2, 1fr); }
.grid.g3 { grid-template-columns: repeat(3, 1fr); }
.grid.g4 { grid-template-columns: repeat(4, 1fr); }

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card-top{
  flex: 1;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.card h3 { margin: var(--space-2) 0 var(--space-3); font-size: var(--text-lg); color: var(--color-navy);}
.card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; }
.card .read-link { margin-top: var(--space-4); }
.card-blue {
  background: linear-gradient(160deg, var(--color-navy), #022f4f);
  border-color: var(--color-navy);
  color: #fff;
}
.card-blue h3, .card-blue p { color: #fff; }
.card-blue p { color: rgba(255,255,255,0.8); }

/* Feature icon tile */
.feat-ico {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
}
.feat-ico svg { width: 24px; height: 24px; }

/* Step number */
.step-num {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16.8px;
}

/* Checklist */
.checklist { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.5;
}
.checklist svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  color: var(--color-primary);
}

/* ── FEATURE SPLIT (two-column intro: col-a / col-b) ─────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-20));
  align-items: center;
}
.feature-split .col-a h2 { margin-bottom: var(--space-3); margin-top:0; font-size: var(--text-xl); color: var(--color-navy);}
.feature-split .col-b { margin-top: var(--space-10); }
/* ── TESTIMONIAL / QUOTE CARDS ───────────────────────────────── */
.quote-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform var(--transition), box-shadow var(--transition);
}
.quote-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.quote-card .stars { color: #f59e0b; letter-spacing: 2px; font-size: 1.05rem; margin-bottom: var(--space-4); }
.quote-card blockquote {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.quote-card .who { display: flex; align-items: center; gap: var(--space-3); }
.quote-card .av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.quote-card .nm { font-weight: 700; font-size: var(--text-sm); color: var(--color-navy); }
.quote-card .rl { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--color-navy) 0%, #022438 100%);
  color: #fff;
  text-align: center;
}
.cta-band .overline { justify-content: center; color: var(--color-primary); }
.cta-band h2 { color: #fff; font-size:var(--text-xl); margin-bottom: var(--space-4); }
.cta-band p { color: rgba(255,255,255,0.75); font-size: var(--text-base); max-width: 600px; margin: 0 auto; }
.cta-band .cta-row { justify-content: center; }
.cta-band .fine { margin-top: var(--space-5); font-size: var(--text-xs); color: rgba(255,255,255,0.5); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  text-align: center;
  background: linear-gradient(180deg, var(--color-surface-2), var(--color-bg));
  padding-block: clamp(var(--space-16), 8vw, var(--space-24)) clamp(var(--space-10), 5vw, var(--space-16));
  border-bottom: 1px solid var(--color-divider);
}
.page-hero .overline { justify-content: center; }
.page-hero h1 {
  font-size: var(--text-2xl);
  color: var(--color-navy);
  max-width: 18ch;
  margin: 0 auto var(--space-4);
}
.page-hero .lead { max-width: 60ch; margin: 0 auto; }

/* ── STAT BAR ────────────────────────────────────────────────── */
.statbar { background: var(--color-navy); color: #fff; padding-block: var(--space-12); }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.stat-lbl {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  text-align: center;
}
.statbar .grid > div { text-align: center; }

/* ── PRICING ─────────────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}
.price-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.price-card.feat {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary), var(--shadow-lg);
  position: relative;
}
.price-badge {
  align-self: flex-start;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}
.price-card h3 { font-size: var(--text-lg); color: var(--color-navy); }
.price-sub { font-size: var(--text-sm); font-weight: 700; color: var(--color-primary); margin: var(--space-1) 0 var(--space-3); }
.price-card .desc { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-5); }
.price-card .checklist { margin-bottom: var(--space-6); }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ── FAQ (markup: .faq-item / .faq-q / .faq-a, toggled by .open) ─ */
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open { border-color: var(--color-primary); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
}
.faq-q::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 var(--space-6);
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 var(--space-6) var(--space-6);
}
.faq-a p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; }

/* ── INTEGRATIONS (int-grid / int-chip) ──────────────────────── */
.int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--space-4);
}
.int-chip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.int-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--color-primary); }
.int-chip.soon { opacity: 0.7; }
.int-chip.soon::after {
  content: "Soon";
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-faint);
  background: var(--color-surface-2);
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

/* Pill badge (product hero) */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: var(--color-primary-highlight);
  border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

/* ── ABOUT: timeline + founders ──────────────────────────────── */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: var(--space-8);
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--color-divider);
}
.tl-item { position: relative; padding-bottom: var(--space-8); }
.tl-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-8) + 1px);
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg);
}
.tl-date {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.tl-item h3 { font-size: var(--text-base); margin-bottom: 4px; }
.tl-item p { font-size: var(--text-sm); color: var(--color-text-muted); }

.founder {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
}
.founder .ph {
  width: 72px; height: 72px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
}
.founder .nm { font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); color: var(--color-navy); }
.founder .rl { font-size: var(--text-sm); font-weight: 600; color: var(--color-primary); margin: 2px 0; }
.founder .loc { font-size: var(--text-xs); color: var(--color-text-muted); margin-bottom: var(--space-3); }
.founder a { font-size: var(--text-sm); font-weight: 700; color: var(--color-primary); }
.founder a:hover { color: var(--color-primary-hover); }

/* ── BLOG INDEX + CARDS (rendered by blog-data.js) ───────────── */
.blog-section .container .feature-split .col-b{
  text-align:right;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.blog-card .img { aspect-ratio: 16 / 9; width: 100%; height: 218px; }
.blog-card .img img { object-fit: cover; }
.blog-card .body { padding: var(--space-6); display: flex; flex-direction: column; flex: 1; }
.cat-pill {
  align-self: flex-start;
  font-size: 10.88px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  background: var(--color-primary-highlight);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}
.blog-card h3 { font-size: var(--text-base); line-height: 1.3; margin-bottom: var(--space-3); color:var(--color-navy); }
.blog-card .excerpt { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; margin-bottom: var(--space-4); flex: 1; }
.blog-card .meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-bottom: var(--space-3);
}
.blog-card .read-link { margin-top: auto; }

/* ── BLOG ARTICLE ────────────────────────────────────────────── */
.article-hero {
  background: linear-gradient(180deg, var(--color-surface-2), var(--color-bg));
  padding-block: clamp(var(--space-12), 6vw, var(--space-20)) clamp(var(--space-8), 4vw, var(--space-12));
  border-bottom: 1px solid var(--color-divider);
}
.back-link { display: inline-block; font-size: var(--text-sm); font-weight: 600; color: var(--color-text-muted); margin-bottom: var(--space-5); }
.back-link:hover { color: var(--color-primary); }
.article-hero .cat-pill { display: inline-block; margin-bottom: var(--space-4); }
.article-hero h1 { font-size: var(--text-2xl); color: var(--color-navy); max-width: 22ch; margin-bottom: var(--space-4); }
.article-hero .ex { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 64ch; line-height: 1.5; margin-bottom: var(--space-5); }
.article-hero .meta { display: flex; flex-wrap: wrap; gap: var(--space-4); font-size: var(--text-sm); color: var(--color-text-faint); }
.article-hero .meta span { position: relative; }
.article-hero .meta span + span::before { content: "·"; margin-right: var(--space-4); color: var(--color-border); }

.article-wrap {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(var(--space-10), 5vw, var(--space-16));
  align-items: start;
}
.article-body { max-width: 720px; }
.article-body .feat-img { width: 100%; border-radius: var(--radius-xl); margin-bottom: var(--space-8); }
.article-body p { font-size: 1.05rem; color: var(--color-text); line-height: 1.8; margin-bottom: var(--space-6); }
.article-body h2 { font-size: var(--text-lg); color: var(--color-navy); margin: var(--space-10) 0 var(--space-4); }
.article-body h3 { font-size: var(--text-base); color: var(--color-navy); margin: var(--space-8) 0 var(--space-3); }
.article-body ul, .article-body ol { margin: 0 0 var(--space-6) var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
.article-body li { font-size: 1.02rem; color: var(--color-text); line-height: 1.7; }
.article-body a { color: var(--color-primary); font-weight: 600; text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.article-body a:hover { text-decoration-color: var(--color-primary); }
.article-body strong { color: var(--color-navy); }
.article-body blockquote {
  border-left: 4px solid var(--color-primary);
  padding: var(--space-2) 0 var(--space-2) var(--space-6);
  margin: var(--space-8) 0;
  font-style: italic;
  color: var(--color-text-muted);
}

/* Sidebar (recent posts) */
.sidebar {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}
.sidebar h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.sidebar .rp {
  display: block;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--color-divider);
}
.sidebar .rp:first-of-type { border-top: none; }
.sidebar .rp .t { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--color-navy); line-height: 1.4; transition: color var(--transition); }
.sidebar .rp:hover .t { color: var(--color-primary); }
.sidebar .rp .d { display: block; font-size: var(--text-xs); color: var(--color-text-faint); margin-top: 4px; }

/* ── FOOTER (injected by site.js) ────────────────────────────── */
/* .site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.8);
  padding-block: var(--space-16) var(--space-8);
  margin-top: var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: var(--space-8);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 40px; width: auto; margin-bottom: var(--space-4); background: #fff; padding: 6px 10px; border-radius: var(--radius-md); }
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 32ch; }
.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: var(--space-4);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); padding: 0; margin: 0; }
.footer-col a { font-size: var(--text-sm); color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col a:hover { color: var(--color-primary); }
.footer-contact .fc-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: var(--text-base); font-weight: 700; color: #fff;
  margin-bottom: var(--space-4);
}
.footer-contact .fc-phone svg { width: 18px; height: 18px; color: var(--color-primary); }
.footer-contact img { max-width: 110px; height: auto; border-radius: var(--radius-sm); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-6);
}
.fb-links { display: flex; flex-wrap: wrap; gap: var(--space-5); }
.fb-links a { font-size: var(--text-xs); color: rgba(255,255,255,0.6); }
.fb-links a:hover { color: var(--color-primary); }
.footer-social { display: flex; gap: var(--space-2); }
.footer-social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--color-primary); color: #fff; }
.footer-copy { font-size: var(--text-xs); color: rgba(255,255,255,0.5); } */

/* ── REVEAL (markup uses [data-reveal], JS adds .in) ─────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════
   REVISION 2 — layout breathing, flat nav, no eyebrow dots,
   bottom-aligned card links, white footer
   ════════════════════════════════════════════════════════════════ */

/* 1 ─ Wider content + less side padding so elements breathe */
:root { --content-default: 1240px; }
.container { padding-inline: clamp(var(--space-4), 3vw, var(--space-4)); }
.site-header > .container { max-width: 1320px; }

/* 2 ─ Remove the pill box around the nav; open up the spacing */
.nav-pill {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: var(--space-2) var(--space-2);
  gap: var(--space-4);
}
.nav-menu { gap: var(--space-1); }
.nav-link { padding: var(--space-2) var(--space-2); font-size: var(--text-sm); }
.nav-right { gap: var(--space-3); }
/* solid white navigation background */
.site-header { background: #ffffff; }
.site-header.scrolled { background: #ffffff; box-shadow: var(--shadow-sm); }

/* 3 ─ Remove the dots next to eyebrow / overline labels */
.overline .dot { display: none; }
.overline { gap: 0; }

/* 4 ─ Bottom-align the "Learn more" links across the product cards */
.grid.g3 .card { display: flex; flex-direction: column; }
.grid.g3 .card .read-link { margin-top: auto; padding-top: var(--space-4); }

/* 5 ─ White footer with adjusted (dark-on-light) colors */
.site-footer { background: #fff; color: var(--color-text-muted); border-top: 1px solid var(--color-divider); }
.footer-grid { border-bottom: 1px solid var(--color-divider); }
.footer-brand img { background: transparent; padding: 0; border-radius: 0; }
.footer-brand p { color: var(--color-text-muted); }
.footer-col h4 { color: var(--color-navy); }
.footer-col a { color: var(--color-text-muted); }
.footer-col a:hover { color: var(--color-primary); }
.footer-contact .fc-phone { color: var(--color-navy); }
.footer-bottom { border-top: none; }
.fb-links a { color: var(--color-text-muted); }
.fb-links a:hover { color: var(--color-primary); }
.footer-social a { background: var(--color-surface-2); color: var(--color-navy); }
.footer-social a:hover { background: var(--color-primary); color: #fff; }
.footer-copy { color: var(--color-text-muted); }

/* 6 ─ Hero trust row on a single line at desktop; wrap only on tablet/mobile */
.trust { flex-wrap: nowrap; gap: var(--space-4); }
.trust span { white-space: nowrap; }
@media (max-width: 900px) {
  .trust { flex-wrap: wrap; gap: var(--space-5); }
}

/* 7 ─ "Who It's For" card checklists: top-align the bullet blocks so each
   list starts right after its paragraph, with clear space between the
   paragraph and the first bullet. */
.grid.g3 .card > p { margin-bottom: 0; }
.grid.g3 .card .checklist.mt { margin-top: var(--space-5); padding-top: 0; }

/* 8 ─ "Trusted by 3,000+" trust strip on a light background.
   Convert the navy band to #F8F9FB with dark, contrast-correct text. */
.industry-strip { background: #F8F9FB; color: var(--color-navy); }
.strip-headline { color: var(--color-navy); }
.logo-item { color: rgba(3,66,110,0.45); }
.strip-stats { color: var(--color-text-muted); }
.strip-stats strong { color: var(--color-primary); }
.strip-stats-sep { color: var(--color-divider); }

/* 9 ─ Hero "Anonymous → Identified" reveal card (idea 1, animated).
   Each .vv-row starts as a blurred anonymous placeholder, then resolves
   into a named contact on load with a staggered per-row delay (--d). */
.vv-reveal{
  background:#ffffff;
  border:1px solid rgba(3,66,110,.08);
  border-radius:20px;
  box-shadow:0 30px 70px -20px rgba(2,29,49,.55), 0 8px 24px -12px rgba(2,29,49,.35);
  padding:22px 22px 20px;
  max-width:520px;
  width:100%;
  margin-left:auto;
}
.vv-reveal__head{ display:flex; align-items:center; justify-content:space-between; }
.vv-reveal__head strong{ color:var(--color-navy); font-size:1.02rem; font-weight:800; letter-spacing:-.01em; }
.vv-reveal__sub{ color:var(--color-text-muted); font-size:.82rem; margin:2px 0 14px; }

.vv-row{
  display:flex; align-items:center; gap:12px;
  padding:11px 0; border-top:1px solid rgba(3,66,110,.07);
}
.vv-row:first-of-type{ border-top:0; }

/* Avatar: starts desaturated/blurred (anonymous), then settles to its color */
.vv-ava{
  flex:none; width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:800; font-size:.78rem;
  background:var(--c,#2f7fd6);
  filter:grayscale(1) brightness(1.4) blur(1px); opacity:.6;
  animation:vvAva .6s ease forwards; animation-delay:var(--d,0s);
}
@keyframes vvAva{ to{ filter:none; opacity:1; } }

.vv-info{ flex:1; min-width:0; }
/* Stack anonymous + named text in the same grid cell so the slot grows to
   the taller of the two (no fixed height, no overlap when text wraps). */
.vv-id, .vv-meta{ display:grid; }
.vv-meta{ margin-top:2px; }
.vv-id > span, .vv-meta > span{
  grid-area:1 / 1; line-height:1.25; min-width:0;
}
.vv-id > span{ font-size:.9rem; font-weight:700; }
.vv-meta > span{ font-size:.8rem; }

.vv-anon{ color:var(--color-text-muted); filter:blur(2px); opacity:.75; }
.vv-named{ opacity:0; color:var(--color-navy); }
.vv-meta .vv-named{ color:var(--color-text-muted); font-weight:400; }
.vv-name{ color:var(--color-navy); font-weight:800; }

/* On load: fade the anonymous text out, the named text in (per-row delay) */
.vv-anon{ animation:vvAnonOut .55s ease forwards; animation-delay:var(--d,0s); }
.vv-named{ animation:vvNamedIn .55s ease forwards; animation-delay:var(--d,0s); }
@keyframes vvAnonOut{ to{ opacity:0; filter:blur(6px); } }
@keyframes vvNamedIn{ to{ opacity:1; } }

.intent-bar{ margin-top:8px; height:5px; border-radius:999px; background:rgba(3,66,110,.1); overflow:hidden; }
.intent-bar i{ display:block; height:100%; border-radius:999px; background:var(--color-primary);
  transform:scaleX(0); transform-origin:left; animation:vvBar .7s cubic-bezier(.2,.7,.3,1) forwards; animation-delay:calc(var(--d,0s) + .15s); }
@keyframes vvBar{ to{ transform:scaleX(1); } }

/* Lead-status badge pops in once the row resolves */
.vv-badge{
  flex:none; align-self:flex-start; white-space:nowrap; font-size:.7rem; font-weight:800; color:var(--green-text,#5a9e2f);
  background:var(--color-surface-2,#eef4e8); border-radius:999px; padding:4px 9px;
  opacity:0; transform:scale(.8); animation:vvBadge .4s ease forwards; animation-delay:calc(var(--d,0s) + .25s);
}
/* Campaign-source variant: shows which channel the visitor came from */
.vv-badge--src{ display:inline-flex; align-items:center; gap:5px; color:var(--color-navy,#03426e); background:#eef2f6; }
.vv-badge--src::before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--src-dot,#888); flex:none; }
.vv-badge--google{ --src-dot:#f59e0b; }
.vv-badge--facebook{ --src-dot:#1877f2; }
.vv-badge--chatgpt{ --src-dot:#10a37f; }
@keyframes vvBadge{ to{ opacity:1; transform:scale(1); } }

.vv-reveal__tags{ display:flex; gap:8px; margin-top:14px; flex-wrap:wrap; }
.vv-tag{ font-size:.72rem; font-weight:700; padding:5px 11px; border-radius:999px;
  background:#eef2f8; color:#5a6b7e; }
.vv-tag--green{ background:var(--color-surface-2,#eef4e8); color:var(--green-text,#5a9e2f); }

/* Respect reduced-motion: show resolved state instantly, no animation */
@media (prefers-reduced-motion: reduce){
  .vv-ava{ filter:none; opacity:1; animation:none; }
  .vv-anon{ display:none; }
  .vv-named{ position:static; opacity:1; animation:none; }
  .intent-bar i{ transform:none; animation:none; }
  .vv-badge{ opacity:1; transform:none; animation:none; }
}

/* ---- 10. Hero eyebrow pill ---- */
.eyebrow-pill{
  display:inline-flex; align-items:center;
  padding:7px 16px; border-radius:999px;
  background:rgba(122,197,70,.12);
  border:1px solid rgba(122,197,70,.45);
}

/* ---- 11. Feature-split: top-align header & subheader ---- */
.feature-split{ align-items:start; }
.feature-split .col-b .lead{ margin-top:0; font-size:var(--text-base);}

/* All New page's Media query */
/* ======================================== 
    Responsive
========================================== */
/* ── RESPONSIVE PLA Page──────────────────────────────────────────────── */

/* ---- Tablet portrait / large phone (≤900px) ---- */
@media (max-width: 1200px) {
  .hero, .hero-home, .security-hero, .pla-hero{
    margin-top: 112px;
  }
  /* ================================
              Latest Home 
  =================================*/
  .split{ gap:0; }
  .hero-image{
    width: 450px;
  }
  .hero-image img{
    width: 100%;
    height: auto;
  }
  .col-vis img { max-width: 360px; height: auto; }
  .blog-card .img { height: 174px; }
}

/* ---- Tablet / small laptop (≤1024px) ---- */
@media (max-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__text { width: clamp(320px, 56%, 520px); }
  .hero__bg-image { background-position: 78% center; }
  
  .hero, .hero-home, .security-hero, .pla-hero{
    margin-top: 109px;
  }
 /* ================================
              Latest Home 
  =================================*/
  .grid.g4 { grid-template-columns: repeat(2, 1fr); }
  /* .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; } */
  .article-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }

  .blog-card .img { height: 174px; }
}

@media(max-width:991px){

  .compare, .how, .compliance, .audience, .benefits, .social-proof,  .section-eyebrow, .section-title {
    text-align: center;
  }
  
  .section-title, .section-sub{
    margin: 0 auto;
  }

  .pla-hero__inner{
    display: block;
    text-align: center;
  }

  .pla-hero__text{
    margin: 0 auto clamp(20px, 39.64px, 60px) auto;
  }
  .pla-hero__sub{
    margin: 0 auto 34px auto;
  }
  .pla-hero__ctas{
    justify-content: center;
  }
  .pla-hero__graphic{
    margin: 0 auto;
  }

  .compliance__inner { grid-template-columns: 1fr; }
  .compliance__text p { text-align: center; margin: 0 auto; }
  /* Compare */
  .compare__list{
    text-align: left;
  }

  /* how it works */
  .how__step-icon{
    margin: 0 auto;
  }

  /* AUDIENCE TOPICS */
  .audience__desc {
      margin: 0 auto var(--space-8);
  }

  .audience__chips{
    justify-content: center;
  }

  /* BENEFITS */
  .benefits__card-icon{
    margin: 0 auto var(--space-5);
  }
  .hero, .hero-home, .security-hero, .pla-hero{
    margin-top: 70px;
  }
  /* ================================
              Latest Home 
  =================================*/
  /* industry-strip */
  .industry-strip{
    padding: 0;
  }

  .split {
        grid-template-columns: 1fr;
  }
  .split .col-text{
        text-align: center;
  }
  .split .col-text .lead{
    margin: 0 auto 20px;
  }
  .cta-row{
    justify-content: center;
  }
  .split .col-text .cta-row{
    justify-content: center;
  }
  .split .col-text .trust{
    justify-content: center;
  }
  .col-vis { order: 2; margin: 0 auto;} 
  .col-vis img { width: 360px; height: auto; }
  .blog-card .img { height: auto; }
  .col-md-4 { margin-bottom: var(--space-6); }
  .feature-split { text-align: center; display: block;}
}

@media (max-width: 900px) {
  /* .nav__links { display: none; }
  .nav__inner { justify-content: space-between; gap: var(--space-4); } */

  /* Hero: stack text over a softened photo, let height grow with content */
  .hero__inner {
    height: auto;
    min-height: 60vh;
    max-height: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-block: clamp(var(--space-12), 8vh, var(--space-20));
  }
  .hero__bg-image { background-position: 75% center; }
  .hero__bg-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.55);
  }
  .hero__text {
    width: 100%;
    max-width: 600px;
    background: rgba(255,255,255,0.9);
    padding: clamp(var(--space-5), 4vw, var(--space-8));
    border-radius: var(--radius-xl);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: var(--shadow-md);
  }
  .hero__badge { margin-inline: auto; }
  .hero__headline { max-width: none; }
  .hero__sub { max-width: 52ch; margin-inline: auto; }
  .hero__actions { align-items: stretch; width: 100%; max-width: 360px; margin-inline: auto; }
  .hero__proof { justify-content: center; margin-inline: auto; }

  .compare__grid { grid-template-columns: 1fr; }
  .how__steps { flex-direction: column;  margin-top: var(--space-12); }
  .how__step-arrow { transform: rotate(90deg); align-self: center; margin-top: 0; }
  .reactivation__inner { grid-template-columns: 1fr; }
  .reactivation__visual { order: -1; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .compliance__inner { grid-template-columns: 1fr; }
  /* .footer__inner { grid-template-columns: 1fr; }
  .footer__links { flex-wrap: wrap; gap: var(--space-8); } */

  .benefits__grid { grid-template-columns: repeat(2, 1fr); }

  /* COMPLIANCE  */
  .compliance__text p{
    margin: 0 auto;
  }

  /* Second Section */
  .pla-shift__compare{
    display: block;
    text-align: center;
  }
  .pla-shift__col--old{
    margin-bottom: var(--space-6);
  }


   /* Responsive ─ how */
 .pla-how__steps {
    grid-template-columns: 1fr;
  }
  .pla-how__arrow {
    padding: 0;
    width: 100%;
    justify-content: center;
    transform: rotate(90deg);
    height: 32px;
  }

  .pla-react__body{
    grid-template-columns: 1fr;
  }

  /* PLA FAQ */
  .pla-faq__inner {
    /* display: block; */
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* ================================
        Data Security Compliance 
  =================================*/
  .hero-inner {
    /* grid-template-columns: 1fr; */
    /* gap: 32px; */
    display: block;
  }
  .hero-text {
    margin: 0 auto;
    text-align: center;
  }
  .hero-text  p{
    margin: 0 auto;
  }
  
  .hero-image{
    margin: 0 auto;
  }

  .hero-image img {
    margin: 0 auto;
    width: 100%;
    /* max-width: 200px; */
  }
  .pillars-grid,
  .security-grid,
  .commit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rights-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-sidebar h2 {
    position: static;
  }
  .rights-headline{
    text-align: center;
    margin-bottom: 48px;
  }
  /* ================================
              Latest Home
  =================================*/
   /* .nav-menu, .nav-phone, .nav-login { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: var(--space-4); right: var(--space-4);
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--color-divider);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-3);
  }
  .nav-menu.open .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding-left: var(--space-4);
    min-width: 0;
  }
  .nav-menu.open .dropdown--grid {
    display: flex; flex-direction: column;
    transform: none; left: auto; min-width: 0;
    padding: var(--space-3) var(--space-4);
  } */
  .split { grid-template-columns: 1fr; }
  .col-vis { order: -1; }
  .mock { position: static !important; max-width: 100% !important; margin-top: var(--space-5); inset: auto !important; }
  .feature-split { grid-template-columns: 1fr; }
  .grid.g3 { grid-template-columns: repeat(1, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
}

/* One Platform two pipelines */
@media (max-width: 860px) {
  .pla-react__body { grid-template-columns: 1fr; }
  .pla-react__visual { order: -1; min-width: 100%; }
  .pla-live-card { max-width: 100%; }
}

/* ---- Phone (≤600px) ---- */
@media(max-width:768px){
  /* PLA Page's For Agencies section */
  .pla-agency__grid {
      grid-template-columns: 1fr;
  }
  /* =============================== 
              Latest Home
  =================================*/ 
  .col-vis { order: 2; margin: 0 auto;} 

  .blog-section .container .feature-split .col-b{
    text-align:center;
    margin-top: var(--space-6);
  }
}

@media (max-width: 720px) {
  .pla-audience__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .benefits__grid { grid-template-columns: 1fr; }
  
  .pla-live-alert__name{
    text-wrap: auto;
  }
  .pla-live-alert__detail{
    text-wrap: auto;
  }

  .compliance__badges { grid-template-columns: 1fr 1fr; }
  .hero, .hero-home{
    margin-top: 70px;
  }
  .hero__inner {
    padding-block: 0;
    gap: var(--space-8);
  }
  .hero__proof {
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-6);
    width: 100%;
  }
  .hero__proof-divider { width: 60%; height: 1px; }
  .hero__badge {
    white-space: normal;
    max-width: 100%;
    text-align: center;
    line-height: 1.4;
    font-size: 12px;
  }
  .compare__list, .benefits__card, .how__step, .testimonial { padding: var(--space-6); }
  .final-cta__actions { flex-direction: column; align-items: stretch; }
  .final-cta__actions .btn { /* width: 50%; */ justify-content: center; margin: 0 auto; }
  /* .footer__links { flex-direction: column; gap: var(--space-6); } */
  .benefits__card{
     padding: var(--space-6); 
  }
  /* ================================
        Data Security Compliance
  =================================*/
  .security-hero{
    margin-top: 70px;
  }
  .security-hero h1{
    font-size: var(--text-hero);
  }
  .security-hero p{
    font-size: var(--text-base);
  }
  .hero-image{
    width: 100%;
  }
  .hero-image img{
    width: 300px;
  }
  .sec-card{
    text-align: center;
  }
  .sec-icon{
    margin: 0 auto 20px;
     justify-content: center;
  }
  .vv-security-container { padding: 0 20px; }
  .pillars-grid,
  .security-grid,
  .commit-grid,
  .rights-grid {
    grid-template-columns: 1fr;
  }
  .security-hero{ padding: 48px 0 40px; }
  .responsible-ai,
  .enterprise-security,
  .data-rights,
  .commitments,
  .vv-security-faq-section { padding: 48px 0; }

  /* ================================
              Latest Home
  =================================*/
  .grid.g2, .grid.g3, .grid.g4 { grid-template-columns: 1fr; }
  .nav-pill { padding-right: var(--space-4); }
  .strip-stats { font-size: var(--text-xs); }
  /* .footer-grid { grid-template-columns: 1fr 1fr; } */
  .article-hero h1 { font-size: var(--text-xl); }
}

/* ---- Small phone (≤420px) ---- */
@media (max-width: 480px) {
  .pla-audience__grid { grid-template-columns: 1fr; }
  .pla-audience__tabs { max-width: 100%; }
}
@media (max-width: 420px) {
  .compliance__badges { grid-template-columns: 1fr; }
  .nav__logo-img { height: 30px; }
  .audience__tabs { width: 100%; }
  .audience__tab { flex: 1; text-align: center; padding-inline: var(--space-3); }
}
/* Person-Level Advertising template renders outside .wp-site-blocks,
   so the theme's header stacking rules never apply. Restore them. */
body.vv-pla-bridge > header.vv-site-header { position: relative; z-index: 10050; }
body.vv-pla-bridge > main.vv-pla-main { position: relative; z-index: 1; }