:root {
  /* Brand */
  --pt-primary:        #005D94;  /* core brand blue */
  --pt-primary-dark:   #042E53;  /* deep navy accent */
  --pt-primary-darker: #012341;  /* footer / contrast */
  --pt-accent:         #0091EA;  /* bright accent */
  --pt-accent-btn:     #0098FF;  /* CTA button base */
  --pt-accent-btn-hov: #0086CA;  /* CTA button hover */

  /* Neutrals */
  --pt-ink:            #141D38;  /* headings */
  --pt-body:           #4A5568;  /* body text */
  --pt-muted:          #737887;  /* secondary text */
  --pt-line:           #E2E8F0;  /* dividers / borders */
  --pt-line-soft:      #EDEFF4;  /* card borders */
  --pt-bg:             #F2F2F2;  /* page background */
  --pt-bg-soft:        #F8FAFF;  /* alt section background */
  --pt-white:          #FFFFFF;
  --pt-black:          #000000;

  /* Palette extensions */
  --pt-navy:           #143D6F;
  --pt-ocean:          #2B6FB4;
  --pt-sky:            #5CA8E1;
  --pt-slate:          #75787B;

  /* Code block */
  --pt-code-bg:        #0B1220;
  --pt-code-text:      #E6EDF7;
  --pt-code-key:       #7BD8F5;
  --pt-code-str:       #A8E7B4;
  --pt-code-num:       #F5C078;
  --pt-code-comment:   #6B7A94;


  /* State */
  --pt-success:         #28A745;
  --pt-warn:            #FFB539;
  --pt-error:           #DC3545;
  --pt-warn-ink:        #8A5A00;
  --pt-error-ink:       #9A2230;
  --pt-success-ink:     #1e7a34;
  --pt-success-soft:    #E8F6EC;

  /* Layout */
  --pt-radius-sm: 8px;
  --pt-radius:    14px;
  --pt-radius-lg: 22px;
  --pt-shadow-sm: 0 6px 18px rgba(20,29,56,0.06);
  --pt-shadow:    0 14px 38px rgba(20,29,56,0.08);
  --pt-shadow-lg: 0 24px 60px rgba(20,29,56,0.12);


  /* GST-specific highlights */
  --pt-gst-saffron:    #D97706;
  --pt-gst-saffron-bg: #FEF3C7;
  
  --pt-gst-red:        #B91C1C;
  --pt-gst-red-bg:     #FEE2E2;

  /* Legal-page specifics */
  --pt-legal-tint:     #F4F9FE;   /* notice + card background */
  --pt-legal-border:   #D6E3F4;   /* card border */

  /* Category Blog tones */
  --cat-opinion:       #A60D7D;
  --cat-engineering:   #005D94;
  --cat-case-study:    #1E7E34;
  --cat-playbook:      #C26200;
  --cat-compliance:    #6A1B9A;
  --cat-inside:        #143D6F;

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;

  /* Shadows */
  --sh-sm: 0 4px 16px rgba(20,29,56,0.06);
  --sh-md: 0 12px 40px rgba(20,29,56,0.10);
  --sh-lg: 0 24px 64px rgba(20,29,56,0.14);

  /* Motion */
  --ease: cubic-bezier(.22,.84,.44,1);

  /* Header */
  --hh: 74px;   /* header height */

  /* Typography */
  --pt-font-body: "Archivo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --pt-font-title: "Archivo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--pt-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--pt-body);
  background: var(--pt-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pt-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pt-primary-dark); }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--pt-font-title);
  color: var(--pt-ink);
  margin: 0 0 .5em;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
 .container-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.mw-none {
    max-width: none !important;
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pt-accent-btn);
  color: var(--pt-white);
  box-shadow: 0 6px 18px rgba(0,152,255,0.35);
}
.btn-primary:hover {
  background: var(--pt-accent-btn-hov);
  color: var(--pt-white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--pt-ink);
  border-color: var(--pt-line);
}
.btn-ghost:hover {
  background: var(--pt-white);
  border-color: var(--pt-primary);
  color: var(--pt-primary);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--pt-primary);
}
.btn-link:hover { gap: 10px; }


/* HEADER SHELL */
.site-header {
  position: sticky;
  inset: 0 0 auto 0;
  z-index: 9000;
  height: var(--hh);
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--pt-line);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 4px 28px rgba(20,29,56,0.12);
}

/* INNER NAV ROW  */
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--hh);
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
}
.nav-inner nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* BRAND / LOGO */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 36px;
  text-decoration: none;
}
.brand-mark {
  width: 40px;
  height: 50px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
}
.brand-mark img {
  width: 40px;
  fill: var(--pt-white);
  position: relative;
  z-index: 1;
}
.brand-name {
  font-size: 1.22rem;
  font-weight: 900;
  color: var(--pt-ink);
  letter-spacing: -0.02em;
}
.brand-name span {
  color: var(--pt-primary);
}

/* PRIMARY NAV LIST */
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list > .nav-item {
  position: static;  /* mega panels are positioned relative to .nav-inner */
}

/* Top-level link / trigger */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--pt-ink);
  border-radius: var(--r-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.open > .nav-link {
  color: var(--pt-primary);
  background: rgba(0,93,148,0.06);
}
.nav-link .caret {
  font-size: 0.72rem;
  color: var(--pt-muted);
  transition: transform 0.28s var(--ease), color 0.2s;
  margin-top: 1px;
}
.nav-item:hover > .nav-link .caret,
.nav-item.open > .nav-link .caret {
  transform: rotate(180deg);
  color: var(--pt-primary);
}

/* Active underline */
.nav-link.active {
  color: var(--pt-primary);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--pt-primary);
  border-radius: 2px;
}
/* DROPDOWN PANEL — shared base*/
.dropdown {
  position: absolute;
  top: calc(var(--hh) - 4px);
  left: 62%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.26s var(--ease),
    transform 0.26s var(--ease),
    visibility 0.26s;
  transform-origin: top center;
  background: var(--pt-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--pt-line-soft);
  box-shadow: var(--sh-lg);
  z-index: 9001;
}
.dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Hover & JS-open states */
.nav-item:hover > .dropdown,
.nav-item.open > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}


/* Bridge (invisible gap filler so the cursor can travel) */
.dropdown::before {
  content: "";
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}

/* MEGA PANEL — Products */
.mega-products {
  width: 680px;
  padding: 26px;
}
.mega-products .mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pt-line-soft);
}
.mega-header .mega-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pt-muted);
}
.mega-header .mega-all {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pt-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mega-header .mega-all:hover { gap: 8px; }
.mega-header .mega-all:hover i { transform: translateX(2px); }
.mega-header .mega-all i { transition: transform 0.2s; font-size: 0.8rem; }

/* Product family sections */
.mega-families {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mega-family {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--r-md);
  padding: 18px;
}
.mega-family-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pt-white);
  background: var(--pt-primary);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.mega-family-label.finsuite {
  background: linear-gradient(90deg, var(--pt-navy), var(--pt-ocean));
}
.mega-family-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-family-links li{
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-product-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  transition: background 0.18s, transform 0.18s;
}
.mega-product-link:hover {
  background: var(--pt-white);
  transform: translateX(3px);
}
.mega-product-link:hover .mpl-name { color: var(--pt-primary); }
.mpl-ico {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(0,93,148,0.12), rgba(43,111,180,0.12));
  color: var(--pt-primary);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: background 0.18s;
}
.mega-product-link:hover .mpl-ico {
  background: linear-gradient(135deg, var(--pt-primary), var(--pt-ocean));
  color: #fff;
}
.mpl-text { display: flex; flex-direction: column; gap: 1px; }
.mpl-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pt-ink);
  transition: color 0.18s;
}
.mpl-desc {
  font-size: 0.74rem;
  color: var(--pt-muted);
  line-height: 1.4;
}

/* MEGA PANEL — Services */
.mega-services {
  width: 740px;
  padding: 26px;
}
.mega-services .mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pt-line-soft);
}
.mega-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.mega-service-link {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  transition: background 0.18s, transform 0.18s;
}
.mega-service-link:hover {
  background: rgba(0,93,148,0.06);
  transform: translateX(3px);
}
.mega-service-link:hover .msl-name { color: var(--pt-primary); }
.msl-ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.msl-ico.blue   { background: #EBF5FF; color: #0070CC; }
.msl-ico.purple { background: #F0EBFF; color: #6B3FC4; }
.msl-ico.teal   { background: #E7F7F5; color: #1A8A7F; }
.msl-ico.orange { background: #FFF3E8; color: #CC6600; }
.msl-ico.green  { background: #EDFAF1; color: #1D8248; }
.msl-ico.rose   { background: #FFF0F3; color: #CC2244; }
.msl-text { display: flex; flex-direction: column; gap: 2px; }
.msl-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pt-ink);
  transition: color 0.18s;
}
.msl-desc {
  font-size: 0.74rem;
  color: var(--pt-muted);
  line-height: 1.4;
}
/* Bottom CTA strip in services */
.mega-services-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--pt-line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.msf-text {
  font-size: 0.82rem;
  color: var(--pt-muted);
}
.msf-text strong {
  color: var(--pt-ink);
}

/* SIMPLE DROPDOWN */
.dropdown-about {
  width: 220px;
  padding: 10px;
}
.dropdown-about ul li {
  list-style: none !important;
}
.simple-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  transition: background 0.18s;
}
.simple-link:hover {
  background: rgba(0,93,148,0.06);
}
.simple-link:hover .sl-name { color: var(--pt-primary); }
.sl-ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(0,93,148,0.08);
  color: var(--pt-primary);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.sl-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pt-ink);
  transition: color 0.18s;
}
.sl-desc {
  font-size: 0.72rem;
  color: var(--pt-muted);
}

/* NAV RIGHT — spacer + standalone links + CTA  */
.nav-spacer { flex: 1; }

.nav-standalone {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-standalone .nav-link {
  font-size: 0.9rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--pt-accent-btn) 0%, var(--pt-primary) 100%);
  color: var(--pt-white);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background 0.2s;
  margin-left: 14px;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,152,255,0.42);
  color: var(--pt-white);
  background: linear-gradient(135deg, var(--pt-accent-btn-hov) 0%, var(--pt-primary-dark) 100%);
}
.btn-cta i { font-size: 0.8rem; transition: transform 0.2s; }
.btn-cta:hover i { transform: translateX(2px); }

/* MOBILE HAMBURGER  */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--r-sm);
  margin-left: auto;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(0,93,148,0.08); }
.hamburger .bar {
  width: 22px; height: 2.5px;
  background: var(--pt-ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.active .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* MOBILE NAV DRAWER  */
.mobile-nav {
  position: fixed;
  top: var(--hh);
  inset-inline: 0;
  bottom: 0;
  background: var(--pt-white);
  z-index: 8999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.34s var(--ease);
  padding: 20px;
  border-top: 1px solid var(--pt-line);
}
.mobile-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav.open { transform: translateX(0); }

.mob-section {
  margin-bottom: 22px;
}
.mob-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pt-muted);
  padding: 0 4px 8px;
  border-bottom: 1px solid var(--pt-line-soft);
  margin-bottom: 8px;
}
.mob-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pt-ink);
  transition: background 0.18s, color 0.18s;
}
.mob-link:hover { background: rgba(0,93,148,0.06); color: var(--pt-primary); }
.mob-link i { font-size: 0.9rem; color: var(--pt-primary); width: 18px; text-align: center; }

.mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--pt-accent-btn), var(--pt-primary));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--r-md);
  margin-top: 24px;
  box-shadow: 0 8px 22px rgba(0,152,255,0.28);
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 1024px) {
  .nav-list,
  .nav-standalone,
  .btn-cta { display: none; }
  .hamburger { display: flex; }
}

/* ACCESSIBILITY: keyboard focus */
.nav-link:focus-visible {
  outline: 2px solid var(--pt-primary);
  outline-offset: 3px;
}
.mega-product-link:focus-visible,
.mega-service-link:focus-visible,
.simple-link:focus-visible {
  outline: 2px solid var(--pt-primary);
  outline-offset: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(92,168,225,0.18), transparent 60%),
    radial-gradient(800px 400px at -10% 110%, rgba(0,93,148,0.12), transparent 60%),
    linear-gradient(180deg, var(--pt-white) 0%, var(--pt-bg) 100%);
}
.hero-inner { max-width: 760px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 30px;
}
 .hero-grid2 {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: flex-start;
  gap: 56px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pt-primary);
  background: rgba(0,93,148,0.08);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.white-glass {
    background: rgba(255,255,255,0.12);
    color: #FFFFFF;
    margin: 0 auto 14px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pt-success);
  box-shadow: 0 0 0 4px rgba(40,167,69,0.15);
}
.dot-blue{
  background: var(--pt-sky) !important;

}
.hero-lede {
  font-size: 1.1rem;
  color: var(--pt-body);
  margin: 0 0 28px;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  display: flex; align-items: center; gap: 18px;
  color: var(--pt-muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.hero-trust strong { color: var(--pt-ink); font-weight: 700; }

.hero-card {
  background: var(--pt-white);
  border-radius: var(--pt-radius-lg);
  box-shadow: var(--pt-shadow-lg);
  padding: 28px;
  border: 1px solid var(--pt-line-soft);
}
.hero-card h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pt-muted);
}

.hero-card .split { margin-top: 18px; }
.hero-card .split:first-child { margin-top: 0; }
.hero-card .split-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pt-white);
  background: var(--pt-primary);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.hero-card .split-label.fs {
  background: linear-gradient(135deg, var(--pt-navy) 0%, var(--pt-ocean) 100%);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0; margin: 0;
}
.hero-features li {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
  padding: 14px 14px 14px 40px;
  font-size: 0.92rem;
  color: var(--pt-ink);
  font-weight: 600;
  position: relative;
}
.hero-features li::before {
  content: "";
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--pt-primary);
  box-shadow: inset 0 0 0 3px var(--pt-white), 0 0 0 2px var(--pt-primary);
}

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  margin-top: 22px;
  font-size: 0.92rem;
  color: var(--pt-body);
}
.hero-meta i { color: var(--pt-primary); margin-right: 6px; }

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 40px;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(92,168,225,0.18), transparent 60%),
    radial-gradient(800px 400px at -10% 110%, rgba(0,93,148,0.12), transparent 60%),
    linear-gradient(180deg, var(--pt-white) 0%, var(--pt-bg) 100%);
}
.legal-hero h1 {
      max-width: 760px;
      margin: 0 0 14px;
    }
.legal-hero .hero-lede {
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--pt-body);
  margin: 0 0 22px;
}
.updated-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pt-white);
  border: 1px solid var(--pt-line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--pt-ink);
  box-shadow: var(--pt-shadow-sm);
}
.updated-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pt-success);
  box-shadow: 0 0 0 4px rgba(40,167,69,0.15);
}
.updated-pill .label {
  color: var(--pt-muted);
  font-weight: 500;
}
.updated-pill .date {
  color: var(--pt-ink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero { padding: 56px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .hero-features { grid-template-columns: 1fr; } }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--pt-white);
  border-top: 1px solid var(--pt-line);
  border-bottom: 1px solid var(--pt-line);
  padding: 22px 0;
}
.trust-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-label {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--pt-muted); font-weight: 600;
}
.trust-badges { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--pt-ink); font-weight: 600; font-size: 0.92rem; }
.trust-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--pt-primary); }

/* ---------- Section scaffolding ---------- */
section { padding: 88px 0; }
.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { margin: 0 auto 14px; }
.section-head p { color: var(--pt-body); font-size: 1.05rem; }

/* ==========================================================================
  AGENTIC AI SECTION
  ========================================================================== */
.agentic{
  background: var(--pt-white);
  padding: 72px 0;
}
.pillars{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.pillar{
  padding:34px 28px;
  border-radius:var(--pt-radius);
  background:var(--pt-white);
  border:1px solid var(--pt-line-soft);
  position:relative;
  overflow:hidden;
  transition:all .35s var(--ease-out);
}
.pillar::after{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg, var(--pt-primary), var(--pt-accent));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .4s var(--ease-out);
}
.pillar:hover{ transform:translateY(-6px); box-shadow:var(--pt-shadow); }
.pillar:hover::after{ transform:scaleX(1); }
.pillar .p-num{
  font-family:var(--pt-font-title);
  font-size:.78rem;
  color:var(--pt-primary);
  font-weight:700;
  letter-spacing:.1em;
  margin-bottom:16px;
}
.pillar .p-ico{
  width:54px;height:54px;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(0,93,148,.1), rgba(0,145,234,.1));
  color:var(--pt-primary);
  display:grid;place-items:center;
  font-size:1.5rem;
  margin-bottom:18px;
}
.pillar h3{ font-size:1.2rem; margin-bottom:10px; }
.pillar p{ color:var(--text-light); font-size:.95rem; margin:0; }

@media (max-width:900px){ .pillars{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:540px){ .pillars{ grid-template-columns:1fr; } }

/* ---------- ADE explainer ---------- */
.ade-band {
  background: var(--pt-white);
  padding: 72px 0;
  border-bottom: 1px solid var(--pt-line);
}
.ade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
@media (max-width: 900px) { .ade-grid { grid-template-columns: 1fr; } }
.ade-cell {
  padding: 26px;
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  background: var(--pt-bg-soft);
}
.ade-cell h3 { font-size: 1.05rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ade-cell h3 .pill {
  font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--pt-primary); color: var(--pt-white);
  padding: 3px 8px; border-radius: 999px; font-weight: 700;
}
.ade-cell.legacy h3 .pill { background: #75787B; }
.ade-cell p { margin: 0; font-size: 0.95rem; color: var(--pt-body); }

/* ---------- Services ---------- */
.services { background: linear-gradient(180deg, var(--pt-white) 0%, var(--pt-bg) 100%); }
.services-section { background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%); }
.service-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--pt-shadow); border-color: #D6E3F4; }
.service-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pt-sky) 0%, var(--pt-ocean) 100%);
  color: var(--pt-white);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(43,111,180,0.25);
}
.service-ico img { max-width: 24px; }
.service-card img { max-width: 35px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { font-size: 0.96rem; color: var(--pt-body); margin-bottom: 16px; }
.service-tags { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags li {
  font-size: 0.78rem;
  background: var(--pt-bg-soft);
  color: var(--pt-primary);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #DDEAF7;
  font-weight: 600;
}
/* ---------- Industries ---------- */
.industries { background: var(--pt-white); }
.industries-band { background: linear-gradient(180deg, var(--pt-bg) 0%, var(--pt-white) 100%); }
.industry-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.industry-grid2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1100px) { .industry-grid, .industry-grid2 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .industry-grid, .industry-grid2 { grid-template-columns: repeat(2, 1fr); } }
.industry-chip {
  text-align: center;
  padding: 22px 12px;
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  background: var(--pt-bg-soft);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.industry-chip:hover { transform: translateY(-3px); border-color: var(--pt-primary); background: var(--pt-white); }
.industry-chip .ico { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.industry-chip .ico img { max-width: 50px; display: inline;}
.industry-chip .name { font-weight: 600; color: var(--pt-ink); font-size: 0.92rem; }
.industry-chip .sub { color: var(--pt-muted); font-size: 0.78rem; margin-top: 4px; display: block; }
.industry-chip h3 { font-size: 1.02rem; margin: 0 0 6px; }
.industry-chip p  { font-size: 0.9rem; color: var(--pt-body); margin: 0; }
/* ---------- Products ---------- */
.products { background: linear-gradient(180deg, var(--pt-bg) 0%, var(--pt-white) 100%); }

/* Product family header — reusable block for DocPro / Finsuite */
.family-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 56px 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--pt-line);
}
.family-head:first-of-type { margin-top: 0; }
.family-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pt-white);
  background: var(--pt-primary);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.family-label.finsuite {
  background: linear-gradient(135deg, #143D6F 0%, #2B6FB4 100%);
}
.family-head h3 {
  font-size: 1.6rem;
  margin: 0 0 6px;
  color: var(--pt-ink);
  letter-spacing: -0.01em;
}
.family-head p {
  margin: 0;
  color: var(--pt-body);
  font-size: 1rem;
  max-width: 620px;
}
.family-head .family-meta { flex: 1 1 520px; }
.family-head .family-cta { flex: 0 0 auto; }
@media (max-width: 640px) {
  .family-head { margin-top: 40px; }
  .family-head h3 { font-size: 1.3rem; }
}
.product-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--pt-shadow); border-color: #D6E3F4; }
.product-head { display: flex; align-items: center; gap: 14px; margin-bottom: 2px; }
.product-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #E6F2FA;
  color: var(--pt-primary);
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.product-ico img { max-width: 24px; }
.product-card h3 { font-size: 1.1rem; margin: 0; }
.product-card p { margin: 0; color: var(--pt-body); font-size: 0.95rem; }
.bullet-list { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 6px; }
.bullet-list li { font-size: 0.88rem; color: var(--pt-body); padding-left: 22px; position: relative; }
.bullet-list li::before { content: "✓"; position: absolute; left: 0; color: var(--pt-primary); font-weight: 700; }

/* ---------- Why us ---------- */
.why { background: linear-gradient(135deg, #0A1929 0%, #143D6F 55%, #2B6FB4 100%); color: #EAF2FA; }
.why-band { background: var(--pt-white); }
.why-band2 { background: var(--pt-white); }
.why h2, .why .eyebrow { color: var(--pt-white); }
.why .eyebrow { background: rgba(255,255,255,0.12); color: var(--pt-white); }
.why p { color: #C5D4E4 !important; }
.why-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-band .why-grid { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr);}
.why-band .why-grid2 { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr);}
@media (max-width: 960px) { .why-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--pt-radius);
  padding: 24px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.why-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.10); border-color: rgba(92,168,225,0.55); }
.why-card h3 { color: var(--pt-white); font-size: 1.1rem; margin-bottom: 8px; }
.why-card p  { margin: 0; font-size: 0.95rem; color: #C5D4E4; }
.why-card .ico {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5CA8E1 0%, #2B6FB4 100%);
  color: var(--pt-white);
  margin-bottom: 14px;
  font-size: 1.2rem;
}
.why-card .ico img { max-width: 20px; }

.why-band .why-card {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 26px;
  border-top: 4px solid var(--pt-primary);
  transition: transform .2s ease, border-color .2s ease;
}
.why-band .why-card .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,93,148,0.08);
  color: var(--pt-primary);
  display: grid; place-items: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.why-band .why-card h3 { font-size: 1.02rem; margin: 0 0 8px; color: var(--pt-ink);}
.why-band .why-card p { font-size: 0.9rem; color: var(--pt-body); margin: 0;}
/* ---------- Process ---------- */
.process { background: var(--pt-white); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; padding: 0; margin: 0; list-style: none; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--pt-bg-soft); border: 1px solid var(--pt-line-soft); border-radius: var(--pt-radius); padding: 28px 22px; position: relative; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -14px; left: 22px;
  background: var(--pt-primary);
  color: var(--pt-white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.step h3 { font-size: 1.05rem; margin: 6px 0 8px; }
.step p { font-size: 0.92rem; color: var(--pt-body); margin: 0; }

/* ---------- Stats ---------- */
.stats-band { background: var(--pt-primary-darker); color: var(--pt-white); padding: 48px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-row2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
@media (max-width: 800px) { .stats-row, .stats-row2 { grid-template-columns: repeat(2, 1fr); } }
.stat .num { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--pt-white); letter-spacing: -0.02em; line-height: 1.1; }
.stat .label { font-size: 0.85rem; color: var(--pt-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

/* ---------- Blog ---------- */
.blog { background: var(--pt-bg-soft); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1000px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--pt-shadow); border-color: #D6E3F4; }
.blog-thumb { position: relative; height: 180px; display: block; overflow: hidden; }
.blog-thumb .cover { position: absolute; inset: 0; }
.blog-thumb .cover.g1 { background: linear-gradient(135deg, #2B6FB4 0%, #5CA8E1 100%); }
.blog-thumb .cover.g2 { background: linear-gradient(135deg, #143D6F 0%, #2B6FB4 100%); }
.blog-thumb .cover.g3 { background: linear-gradient(135deg, #042E53 0%, #005D94 100%); }
.blog-thumb .mono {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.22);
  font-size: 4rem; font-weight: 800; letter-spacing: -0.05em;
}
.blog-category {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--pt-primary);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.blog-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-meta { font-size: 0.82rem; color: var(--pt-muted); display: flex; align-items: center; gap: 8px; }
.blog-body h3 { font-size: 1.1rem; line-height: 1.35; margin: 0; }
.blog-body h3 a { color: var(--pt-ink); }
.blog-body h3 a:hover { color: var(--pt-primary); }
.blog-excerpt { color: var(--pt-body); font-size: 0.93rem; margin: 0; flex: 1; }
.blog-foot { margin-top: 8px; display: flex; align-items: center; justify-content: space-between; }
.blog-cta-row { text-align: center; margin-top: 40px; }

/* ---------- FAQ ---------- */
.faq { background: var(--pt-white); }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
details.faq-item {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
details.faq-item[open] { box-shadow: var(--pt-shadow-sm); border-color: #D6E3F4; }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--pt-ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--pt-primary); transition: transform .2s ease; line-height: 1; }
details.faq-item[open] summary::after { content: "–"; }
details.faq-item .faq-body { padding: 0 24px 22px; color: var(--pt-body); font-size: 0.97rem; }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(600px 260px at 85% 40%, rgba(92,168,225,0.35), transparent 60%),
    linear-gradient(135deg, #005D94 0%, #042E53 100%);
  color: var(--pt-white);
  text-align: center;
}
.final-cta .section-head{ margin-bottom: 28px; }
.final-cta h3 { color: var(--pt-white); text-align: center; font-size: 2.5rem; }
.final-cta p { color: #CBDCEB; margin: 0 auto 24px; max-width: 600px; font-size: 1.05rem; }
.final-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.final-cta .btn-ghost { background: rgba(255,255,255,0.08); color: var(--pt-white); border-color: rgba(255,255,255,0.28); }
.final-cta .btn-ghost:hover { background: var(--pt-white); color: var(--pt-primary-dark); }

/* ---------- Footer ---------- */
.site-footer { background: #080E1C; color: #BFC7D4; padding: 72px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 36px; }
@media (max-width: 1000px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .foot-grid { grid-template-columns: 1fr; } }
.foot-about p { color: #9AA6B8; font-size: 0.95rem; }
.foot-about .brand { font-size: 1.5rem; font-weight: 700; color: var(--pt-white);}
.foot-col h4 {
  color: var(--pt-white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: #BFC7D4; font-size: 0.92rem; }
.foot-col a:hover { color: var(--pt-sky); }
.foot-bottom {
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem; color: #7A8699;
}
.foot-bottom a { color: #BFC7D4; }
.foot-bottom a:hover { color: var(--pt-sky); }
.foot-socials {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.foot-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #BFC7D4;
  transition: background 160ms ease, color 160ms ease,
              border-color 160ms ease, transform 160ms ease;
}
.foot-socials a i {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}
.foot-socials a:hover {
  background: var(--pt-primary);
  border-color: var(--pt-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.foot-socials a:focus-visible {
  outline: 2px solid var(--pt-sky);
  outline-offset: 2px;
}
/* ---------- Utility ---------- */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }



/* ---------- Family band ---------- */
.family-band {
  position: relative;
}
.family-band.docpro {
  background: linear-gradient(180deg, var(--pt-bg) 0%, var(--pt-white) 100%);
}
.family-band.finsuite {
  background: linear-gradient(180deg, var(--pt-white) 0%, var(--pt-bg) 100%);
}
.family-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .family-intro { grid-template-columns: 1fr; gap: 28px; } }

.family-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pt-white);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.family-label.docpro { background: #005D94; }
.family-label.finsuite { background: linear-gradient(135deg, #143D6F 0%, #2B6FB4 100%); }

.family-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 14px;
}
.family-intro p {
  font-size: 1.04rem;
  color: var(--pt-body);
  margin-bottom: 10px;
}
.family-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0 26px;
}
@media (max-width: 520px) { .family-kpis { grid-template-columns: 1fr 1fr; } }
.family-kpi {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 14px 16px;
}
.family-kpi .num {
  font-weight: 800;
  color: var(--pt-ink);
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.family-kpi .label {
  font-size: 0.82rem;
  color: var(--pt-muted);
  margin-top: 4px;
}

/* Decorative mock panel */
.mock-panel {
  position: relative;
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-lg);
  box-shadow: var(--pt-shadow-lg);
  padding: 22px;
  overflow: hidden;
}
.mock-panel::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 36px;
  background: linear-gradient(180deg, rgba(0,93,148,0.06), transparent);
  pointer-events: none;
}
.mock-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.mock-head .tab {
  font-family: var(--pt-font-title);
  font-size: 0.78rem;
  color: var(--pt-muted);
  background: var(--pt-bg-soft);
  padding: 5px 10px;
  border-radius: 6px;
}
.mock-head .tab.on {
  color: var(--pt-primary);
  background: #E6F2FA;
  font-weight: 700;
}
.mock-body {
  font-family: var(--pt-font-title);
  font-size: 0.82rem;
  color: var(--pt-ink);
  background: #0B1E34;
  color: #D6E4F5;
  border-radius: 10px;
  padding: 16px;
  line-height: 1.55;
  overflow-x: auto;
}
.mock-body .k { color: #5CA8E1; }
.mock-body .s { color: #B7E88B; }
.mock-body .n { color: #FFB539; }
.mock-body .c { color: #8092A8; font-style: italic; }

/* Invoice preview card variant */
.mock-invoice .row {
  display: flex;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 0.88rem;
  border-bottom: 1px dashed var(--pt-line);
}
.mock-invoice .row:last-child { border-bottom: 0; }
.mock-invoice .row .k {
  color: var(--pt-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.mock-invoice .row .v { color: var(--pt-ink); font-weight: 600; }
.mock-invoice .row .conf {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(40,167,69,0.12);
  color: #1e7a34;
  margin-left: 8px;
  font-weight: 700;
}
.mock-invoice .row .conf.low {
  background: rgba(255,181,57,0.18);
  color: #8a5a00;
}

/* ---------- Detailed product cards ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }

.detail-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pt-shadow);
  border-color: var(--pt-mist);
}
.detail-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.detail-ico {
  flex: 0 0 auto;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--pt-ice);
  color: var(--pt-primary);
  display: grid; place-items: center;
  font-size: 1.5rem;
}
.detail-ico img { max-width: 28px; }
.detail-card h3 {
  margin: 0 0 4px;
  font-size: 1.22rem;
}
.detail-card .tagline {
  font-size: 0.82rem;
  color: var(--pt-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0;
}
.detail-card .blurb {
  font-size: 0.96rem;
  color: var(--pt-body);
  margin: 0;
}
.detail-card .what-for {
  font-size: 0.82rem;
  color: var(--pt-muted);
  font-style: italic;
  margin: 0;
  padding: 10px 14px;
  background: var(--pt-bg-soft);
  border-left: 3px solid var(--pt-primary);
  border-radius: 4px;
}
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 520px) { .feature-split { grid-template-columns: 1fr; } }
.feature-split li {
  font-size: 0.88rem;
  color: var(--pt-body);
  padding-left: 22px;
  position: relative;
}
.feature-split li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--pt-primary);
  font-weight: 700;
}
.detail-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--pt-line-soft);
  flex-wrap: wrap;
}
.detail-foot .doc-chip {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--pt-primary);
  background: var(--pt-ice);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* ---------- Flow diagram ---------- */
.flow-band {
  background: linear-gradient(135deg, #0A1929 0%, #143D6F 55%, #2B6FB4 100%);
  color: #EAF2FA;
}
.flow-band h2 { color: var(--pt-white); }
.flow-band .section-head .eyebrow {
  background: rgba(255,255,255,0.12);
  color: var(--pt-white);
}
.flow-band p { color: #C5D4E4 !important; }

.flow-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 12px;
  position: relative;
}
@media (max-width: 900px) { .flow-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .flow-row { grid-template-columns: 1fr; } }

.flow-cell {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--pt-radius);
  padding: 22px;
  position: relative;
}
.flow-cell .num {
  font-family: var(--pt-font-title);
  font-size: 0.78rem;
  color: #5CA8E1;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.flow-cell h3 {
  color: var(--pt-white);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.flow-cell p {
  font-size: 0.92rem;
  color: #C5D4E4;
  margin: 0;
}
.flow-cell .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  margin-top: 12px;
}
.flow-cell .tag.docpro { background: rgba(92,168,225,0.22); color: #BEDBF5; }
.flow-cell .tag.finsuite { background: rgba(255,181,57,0.18); color: #FFD789; }

/* ---------- Integrations strip ---------- */
.integrations { background: var(--pt-white); padding: 72px 0; }
.int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px; margin-top: 30px;
}
.int-chip {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  font-weight: 600; font-size: 0.9rem;
  color: var(--pt-ink);
}


/* Invoice mock card (no JS) */
.ap-card {
  background: var(--pt-white);
  border-radius: var(--pt-radius-lg);
  box-shadow: var(--pt-shadow-lg);
  border: 1px solid var(--pt-line-soft);
  overflow: hidden;
}
.ap-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: #F4F8FE;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.85rem;
  color: var(--pt-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ap-card-head .status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e7a34;
  background: #E8F6EC;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
}
.ap-card-head .status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #1e7a34;
}
.ap-card-body { padding: 22px; }
.ap-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--pt-line-soft);
  align-items: center;
}
.ap-row:last-of-type { border-bottom: 0; }
.ap-row .k { color: var(--pt-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.ap-row .v { color: var(--pt-ink); font-weight: 600; font-size: 0.95rem; }
.ap-row .tag {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.tag.match { background: #E8F6EC; color: #1e7a34; }
.tag.check { background: #E6F0FA; color: #005D94; }
.tag.warn  { background: #FFF4DE; color: #8a5a00; }

.ap-match-strip {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}
.ap-match-strip .chip {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--pt-ink);
  font-weight: 600;
}
.ap-match-strip .chip.ok { border-color: #CDEAD5; color: #1e7a34; }

/* ---------- Section scaffolding ---------- */
section.std { padding: 80px 0; }
.section-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.section-head .eyebrow { margin: 0 auto 14px; }
/* .section-head p { color: var(--pt-body); font-size: 1.05rem; } */

/* ---------- Pain points (what's broken) ---------- */
.pain { background: var(--pt-white); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 26px;
  border-left: 4px solid var(--pt-error);
}
.pain-card .lbl {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pt-error);
  background: rgba(220,53,69,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.pain-card .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pt-error);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.pain-card h3 { font-size: 1.1rem; margin: 0 0 8px; }
.pain-card p { margin: 0; font-size: 0.96rem; color: var(--pt-body); }
.pain-card .src { display: block; margin-top: 8px; font-size: 0.78rem; color: var(--pt-muted); }
.pain-fix {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--pt-line);
  font-size: 0.9rem;
  color: var(--pt-ink);
}
.pain-fix strong { color: var(--pt-primary); }
/* ---------- 6-way match explainer ---------- */
.match-band { background: linear-gradient(180deg, #F8FAFF 0%, var(--pt-white) 100%); }
.match-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) { .match-wrap { grid-template-columns: 1fr; gap: 36px; } }
.match-copy ul {
  padding: 0; margin: 18px 0 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.match-copy li {
  padding-left: 30px; position: relative;
  color: var(--pt-body); font-size: 0.98rem;
}
.match-copy li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #E8F6EC;
  color: #1e7a34;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.82rem;
}
.match-diagram {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-lg);
  padding: 28px;
  box-shadow: var(--pt-shadow-sm);
}
.match-diagram h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pt-muted);
  margin: 0 0 18px;
}
.match-hex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 560px) { .match-hex { grid-template-columns: repeat(2, 1fr); } }
.match-pin {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
  padding: 16px 14px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.match-pin:hover { transform: translateY(-3px); border-color: var(--pt-primary); }
.match-pin .ico {
  width: 36px; height: 36px;
  margin: 0 auto 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pt-sky) 0%, var(--pt-ocean) 100%);
  color: var(--pt-white);
  display: grid; place-items: center;
  font-size: 1rem;
}
.match-pin .ico img { max-width: 20px; }
.match-pin .name { font-weight: 700; color: var(--pt-ink); font-size: 0.88rem; display: block; margin-bottom: 2px; }
.match-pin .sub { font-size: 0.78rem; color: var(--pt-muted); }

/* ---------- Pipeline ---------- */
.pipeline { background: var(--pt-white); }
.pipeline .steps {
    grid-template-columns: repeat(3, 1fr);
}
.pipeline .steps4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
    padding: 0;
    margin: 0;
    list-style: none;
}
@media (max-width: 900px) { .pipeline .steps, .pipeline .steps4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pipeline .steps, .pipeline .steps4 { grid-template-columns: 1fr; } }

/* ---------- Feature grid ---------- */
.features { background: linear-gradient(180deg, var(--pt-white) 0%, #F8FAFF 100%); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1000px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-3 { grid-template-columns: 1fr; } }
.feat-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--pt-shadow); border-color: #D6E3F4; }
.feat-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #E6F2FA;
  color: var(--pt-primary);
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.feat-ico img { max-width: 30px; }
.feat-card h3 { font-size: 1.1rem; margin: 0; }
.feat-card p { margin: 0; color: var(--pt-body); font-size: 0.95rem; }

/* ---------- ERP grid ---------- */
.erp { background: var(--pt-white); }
.erp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .erp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .erp-grid { grid-template-columns: repeat(2, 1fr); } }
.erp-cell {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 22px 14px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.erp-cell:hover { transform: translateY(-3px); border-color: var(--pt-primary); background: var(--pt-white); }
.erp-cell .name { font-weight: 700; color: var(--pt-ink); font-size: 0.98rem; display: block; }
.erp-cell .kind { font-size: 0.78rem; color: var(--pt-muted); }
.erp-note {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 18px 22px;
  background: var(--pt-bg-soft);
  border: 1px dashed var(--pt-line);
  border-radius: var(--pt-radius-sm);
  text-align: center;
  font-size: 0.95rem;
  color: var(--pt-body);
}

/* ---------- Compare table ---------- */
.compare-band { background: var(--pt-bg-soft); }
.compare-wrap {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-lg);
  overflow: hidden;
  box-shadow: var(--pt-shadow-sm);
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table thead th {
  text-align: left;
  padding: 18px 22px;
  background: #F4F8FE;
  color: var(--pt-ink);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--pt-line-soft);
}
.compare-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.95rem;
  color: var(--pt-body);
  vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table td.feat { font-weight: 700; color: var(--pt-ink); width: 32%; }
.compare-table td.y { color: #1e7a34; font-weight: 700; }
.compare-table td.n { color: #8E98A6; }
.compare-table td.partial { color: #8a5a00; font-weight: 600; }
.compare-scroll { overflow-x: auto; }
.compare-table-note{
  text-align: center;
  color: var(--pt-muted);
  font-size: 0.85rem;
  margin-top: 16px;
}
/* ---------- Security ---------- */
.security { background: linear-gradient(135deg, #0A1929 0%, #143D6F 55%, #2B6FB4 100%); color: #EAF2FA; }
.security h2, .security .eyebrow { color: var(--pt-white); }
.security .eyebrow { background: rgba(255,255,255,0.12); color: var(--pt-white); }
.security p { color: #C5D4E4; }
.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
@media (max-width: 960px) { .sec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sec-grid { grid-template-columns: 1fr; } }
.sec-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--pt-radius);
  padding: 24px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.sec-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(92,168,225,0.55);
}
.sec-card h3 { color: var(--pt-white); font-size: 1.1rem; margin-bottom: 8px; }
.sec-card p  { margin: 0; font-size: 0.95rem; color: #C5D4E4; }
.sec-card .ico {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5CA8E1 0%, #2B6FB4 100%);
  color: var(--pt-white);
  margin-bottom: 14px;
  font-size: 1.2rem;
}
.sec-card .ico img { max-width: 22px; }

/* ---------- Hero dashboard mock (Screenshot 4 reference) ---------- */
.vm-dashboard {
  background: var(--pt-white);
  border-radius: var(--pt-radius-lg);
  box-shadow: var(--pt-shadow-lg);
  border: 1px solid var(--pt-line-soft);
  overflow: hidden;
}
.vm-dash-top {
  padding: 20px 22px;
  background: linear-gradient(135deg, #5515a7 0%, #7A3BD6 100%);
  color: var(--pt-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.vm-dash-top h4 { color: var(--pt-white); margin: 0 0 4px; font-size: 1.1rem; }
.vm-dash-top p  { color: #E2D6FF; margin: 0; font-size: 0.82rem; }
.vm-dash-top .add-btn {
  background: #28C76F;
  color: var(--pt-white);
  border: 0;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 8px;
  white-space: nowrap;
}
.vm-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px;
  background: #F8FAFD;
}
.vm-kpi {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.vm-kpi .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.vm-kpi .ic.blue { background: #E6ECFA; color: #3F57A0; }
.vm-kpi .ic.green { background: #E2F4E7; color: #1E7A34; }
.vm-kpi .ic.red { background: #FDE7E9; color: #A8242F; }
.vm-kpi .ic.yellow { background: #FFF4DE; color: #8A5A00; }
.vm-kpi .ic img { max-width: 18px; }
.vm-kpi .lab { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--pt-muted); font-weight: 600; }
.vm-kpi .num { font-size: 1.25rem; font-weight: 800; color: var(--pt-ink); }
.vm-kpi .num.g { color: #1E7A34; }
.vm-kpi .num.r { color: #A8242F; }
.vm-kpi .num.y { color: #8A5A00; }

.vm-tabs {
  display: flex;
  gap: 18px;
  padding: 10px 18px 0;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.82rem;
}
.vm-tabs span {
  padding: 10px 4px;
  color: var(--pt-muted);
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.vm-tabs span.on { color: var(--pt-primary); border-bottom-color: var(--pt-primary); }

.vm-mini-table {
  padding: 12px 18px 18px;
  font-size: 0.8rem;
}
.vm-mini-table .row {
  display: grid;
  grid-template-columns: 28px 1.4fr 1fr 0.7fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--pt-line-soft);
  align-items: center;
}
.vm-mini-table .row.head { font-weight: 700; font-size: 0.68rem; text-transform: uppercase; color: var(--pt-muted); letter-spacing: 0.06em; }
.vm-mini-table .row:last-child { border-bottom: 0; }
.vm-mini-table .nm { color: var(--pt-ink); font-weight: 600; }

/* ---------- Workflow stages (Screenshot 1 reference) ---------- */
.workflow-band { background: linear-gradient(180deg, #F8FAFF 0%, var(--pt-white) 100%); }
.workflow-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-lg);
  padding: 28px 28px 32px;
  box-shadow: var(--pt-shadow);
}
.wf-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--pt-line-soft);
  margin-bottom: 24px;
}
.wf-head h4 { margin: 0 0 4px; font-size: 1.1rem; }
.wf-head .sub { font-size: 0.85rem; color: var(--pt-muted); }
.wf-head .pill {
  background: var(--pt-warn); color: #5C3D00;
  font-weight: 700; font-size: 0.72rem;
  padding: 5px 12px; border-radius: 999px;
  letter-spacing: 0.04em;
}
.wf-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 800px) { .wf-metrics { grid-template-columns: repeat(2, 1fr); } }
.wf-metric {
  background: #FAFBFD;
  border: 1px solid var(--pt-line-soft);
  border-radius: 10px;
  padding: 14px;
}
.wf-metric .lab {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--pt-muted); font-weight: 600; margin-bottom: 4px;
}
.wf-metric .val { font-size: 1.25rem; font-weight: 800; color: var(--pt-ink); }
.wf-metric .val.accent { color: var(--pt-warn); }
.wf-metric .val.good { color: #1E7A34; }

.wf-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
  margin-bottom: 28px;
}
@media (max-width: 900px) { .wf-stages { grid-template-columns: 1fr 1fr; } }
.wf-stage {
  text-align: center;
  position: relative;
}
.wf-stage .dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: grid; place-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--pt-white);
  background: #1E7A34;
  position: relative;
  z-index: 2;
}
.wf-stage.current .dot { background: #5515a7; }
.wf-stage.pending .dot { background: #C3CADA; color: var(--pt-white); }
.wf-stage .nm {
  font-size: 0.82rem; color: var(--pt-ink); font-weight: 600;
}
.wf-stage.current .nm { color: #5515a7; }
.wf-stage::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #1E7A34;
  z-index: 1;
}
.wf-stage:last-child::before { display: none; }
.wf-stage.pending::before,
.wf-stage.current::before { background: #D1D7E2; }

.wf-panels {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) { .wf-panels { grid-template-columns: 1fr; } }
.wf-panel {
  background: #FAFBFD;
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 20px;
}
.wf-panel h5 {
  font-size: 0.95rem;
  margin: 0 0 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.wf-panel h5 .pill-s {
  background: var(--pt-warn); color: #5C3D00;
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  letter-spacing: 0.03em;
}
.wf-panel ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 0.85rem;
}
.wf-panel li {
  display: flex; justify-content: space-between;
  padding: 6px 0; border-bottom: 1px dashed var(--pt-line-soft);
}
.wf-panel li:last-child { border-bottom: 0; }
.wf-panel li .k { color: var(--pt-muted); }
.wf-panel li .v { color: var(--pt-ink); font-weight: 600; }

.wf-timeline {
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  padding-left: 16px;
}
.wf-timeline::before {
  content: ""; position: absolute;
  left: 5px; top: 6px; bottom: 6px;
  width: 2px; background: #1E7A34;
  opacity: .3;
}
.wf-tl-item {
  position: relative;
  padding-left: 4px;
}
.wf-tl-item::before {
  content: "";
  position: absolute;
  left: -14px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #1E7A34;
}
.wf-tl-item .ts { font-size: 0.72rem; color: var(--pt-muted); font-weight: 600; }
.wf-tl-item .ev { font-size: 0.86rem; color: var(--pt-body); margin-top: 2px; }
.wf-tl-item .ev strong { color: var(--pt-ink); }

/* ---------- Seven-step wizard (Screenshot 2 reference) ---------- */
.wizard-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 20px;
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-lg);
  padding: 22px;
  box-shadow: var(--pt-shadow);
}
@media (max-width: 900px) { .wizard-wrap { grid-template-columns: 1fr; } }

.wizard-steps {
  background: #DDEBF4;
  border-radius: var(--pt-radius);
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.wizard-step {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--pt-muted);
  font-weight: 600;
  font-size: 0.92rem;
}
.wizard-step .num {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--pt-muted);
  display: grid; place-items: center;
  font-size: 0.78rem;
  color: var(--pt-muted);
}
.wizard-step.active { background: #CADBEB; color: #042E53; }
.wizard-step.active .num {
  background: #042E53; color: var(--pt-white); border-color: #042E53;
}

.wizard-form h4 { font-size: 1.05rem; margin: 0 0 20px; }
.wizard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
@media (max-width: 560px) { .wizard-grid { grid-template-columns: 1fr; } }
.wizard-field label {
  display: block;
  font-size: 0.82rem;
  color: var(--pt-ink);
  font-weight: 600;
  margin-bottom: 6px;
}
.wizard-field label .req { color: var(--pt-error); }
.wizard-field .input,
.wizard-field .select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #C9D0DE;
  border-radius: 6px;
  background: var(--pt-white);
  font-size: 0.88rem;
  color: var(--pt-muted);
}
.wizard-field .select {
  background: var(--pt-white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23737887' stroke-width='1.5' fill='none'/></svg>") no-repeat right 12px center;
  padding-right: 32px;
}
.wizard-foot {
  display: flex; justify-content: flex-end;
  margin-top: 22px;
}
.wizard-foot .btn-next {
  background: #2B6FB4;
  color: var(--pt-white);
  border: 0;
  padding: 10px 26px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 6px;
}

/* ---------- Vendor list mock (Screenshot 3 reference) ---------- */
.list-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--pt-shadow);
}
.list-tabs {
  display: flex; gap: 22px;
  padding: 16px 22px 0;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.88rem;
}
.list-tabs span {
  padding: 10px 4px;
  color: var(--pt-muted);
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.list-tabs span.on { color: var(--pt-primary); border-bottom-color: var(--pt-primary); }
.list-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px;
  background: #FBFCFE;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}
.list-toolbar .show { color: var(--pt-muted); }
.list-toolbar .search {
  border: 1px solid var(--pt-line);
  border-radius: 6px;
  padding: 7px 12px;
  min-width: 220px;
  background: var(--pt-white);
  font-size: 0.85rem;
}
.table-scroll { overflow-x: auto; }
.vm-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.vm-table th {
  background: #F5F7FA;
  color: var(--pt-muted);
  font-size: 0.72rem;
  text-align: left;
  padding: 12px 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--pt-line-soft);
}
.vm-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--pt-line-soft);
  color: var(--pt-body);
  vertical-align: middle;
}
.vm-table td.nm { color: var(--pt-ink); font-weight: 600; }
.vm-table td.action { color: var(--pt-primary); }
.vm-table tr:last-child td { border-bottom: 0; }
.list-foot {
  padding: 14px 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--pt-muted);
  background: #FBFCFE;
  border-top: 1px solid var(--pt-line-soft);
  flex-wrap: wrap; gap: 10px;
}
.list-foot .pager { display: flex; gap: 6px; }
.list-foot .pager span {
  min-width: 30px; text-align: center;
  padding: 5px 10px;
  border: 1px solid var(--pt-line);
  background: var(--pt-white);
  border-radius: 6px;
  font-weight: 600;
  color: var(--pt-body);
  font-size: 0.82rem;
}
.list-foot .pager span.on {
  background: #5515A7; color: var(--pt-white); border-color: #5515A7;
}
.list-foot .pager span.disabled { color: #B6BECE; }

/* ---------- How it works (parity with VM page) ---------- */
.steps-band { background: var(--pt-white); }


/* ---------- Risk scoring panel ---------- */
.risk-band { background: var(--pt-white); }
.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) { .risk-grid { grid-template-columns: 1fr; gap: 36px; } }
.risk-gauge {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-lg);
  padding: 28px;
  box-shadow: var(--pt-shadow-sm);
}
.risk-score-box {
  text-align: center;
  padding: 18px;
  background: var(--pt-bg-soft);
  border-radius: var(--pt-radius);
  margin-bottom: 20px;
}
.risk-score-box .big {
  font-size: 2.8rem; font-weight: 800;
  color: #1E7A34;
  letter-spacing: -0.02em;
  line-height: 1;
}
.risk-score-box .big.med { color: #8A5A00; }
.risk-score-box .big.high { color: #A8242F; }
.risk-score-box .lab {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--pt-muted); font-weight: 600; margin-top: 4px;
}
.risk-meter {
  display: flex; gap: 4px;
  margin-top: 12px;
}
.risk-meter i {
  flex: 1; height: 8px;
  border-radius: 4px;
  background: #E4E8F0;
}
.risk-meter i.on { background: #1E7A34; }
.risk-factors { display: flex; flex-direction: column; gap: 10px; }
.risk-factor {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  background: #FAFBFD;
  border: 1px solid var(--pt-line-soft);
  border-radius: 8px;
  font-size: 0.88rem;
}
.risk-factor .nm { color: var(--pt-ink); font-weight: 600; }
.risk-factor .st { font-size: 0.76rem; font-weight: 700; }
.risk-factor .st.pass { color: #1E7A34; }
.risk-factor .st.warn { color: #8A5A00; }
.risk-factor .st.fail { color: #A8242F; }

/* ---------- Use cases ---------- */
.uc-band { background: linear-gradient(180deg, var(--pt-white) 0%, #F8FAFF 100%); }
.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .uc-grid { grid-template-columns: 1fr; } }
.uc-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 26px;
  border-top: 3px solid var(--pt-primary);
}
.uc-card h3 { font-size: 1.05rem; margin: 0 0 10px; }
.uc-card p { margin: 0; font-size: 0.94rem; }
.uc-card .tag-small {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pt-primary);
  background: rgba(0,93,148,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* ---------- Vendor Feature grid ---------- */
.features-band { background: linear-gradient(180deg, #F8FAFF 0%, var(--pt-white) 100%); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 26px;
  box-shadow: var(--pt-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pt-shadow);
}
.feature-card .ico {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5CA8E1 0%, #2B6FB4 100%);
  color: var(--pt-white);
  margin-bottom: 14px;
  font-size: 1.2rem;
}
.feature-card .ico img { max-width: 22px; }
.feature-card h3 { font-size: 1.05rem; margin: 0 0 6px; }
.feature-card p  { margin: 0; font-size: 0.94rem; color: var(--pt-body); }

/* GST 2B reconciliation mock card */
.gst-card {
  background: var(--pt-white);
  border-radius: var(--pt-radius-lg);
  box-shadow: var(--pt-shadow-lg);
  border: 1px solid var(--pt-line-soft);
  overflow: hidden;
}
.gst-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: #F4F8FE;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.85rem;
  color: var(--pt-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gst-card-head .pill {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--pt-success-ink);
  background: var(--pt-success-soft);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
}
.gst-card-head .pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pt-success-ink);
}
.gst-card-body { padding: 22px; }
.gst-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.gst-summary .cell {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
  padding: 12px 14px;
}
.gst-summary .cell .label {
  font-size: 0.72rem;
  color: var(--pt-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.gst-summary .cell .value {
  font-weight: 700;
  color: var(--pt-ink);
  font-size: 1rem;
}
.gst-summary .cell.good .value { color: var(--pt-success-ink); }
.gst-summary .cell.warn .value { color: var(--pt-gst-saffron); }
.gst-invoice-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--pt-line-soft);
  align-items: center;
  font-size: 0.92rem;
}
.gst-invoice-row:last-of-type { border-bottom: 0; }
.gst-invoice-row .inv { font-weight: 600; color: var(--pt-ink); }
.gst-invoice-row .inv .sub { font-weight: 400; color: var(--pt-muted); font-size: 0.82rem; display: block; }
.gst-invoice-row .amt { color: var(--pt-body); }
.gst-invoice-row .tag {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.tag.matched  { background: var(--pt-success-soft); color: var(--pt-success); }
.tag.missing  { background: var(--pt-gst-red-bg);   color: var(--pt-gst-red); }
.tag.pending  { background: var(--pt-gst-saffron-bg); color: var(--pt-gst-saffron); }
.tag.extra    { background: #E6F0FA; color: var(--pt-primary); }


/* ---------- 2A/2B reconciliation explainer ---------- */
.recon-band { background: var(--pt-white); }
.recon-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 980px) { .recon-wrap { grid-template-columns: 1fr; gap: 30px; } }
.recon-copy h3 { font-size: 1.4rem; margin: 0 0 12px; }
.recon-copy ul {
  padding-left: 20px;
  color: var(--pt-body);
  margin: 10px 0 0;
}
.recon-copy li { margin-bottom: 10px; }
.recon-copy li strong { color: var(--pt-ink); }

.recon-diagram {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-lg);
  padding: 28px;
}
.recon-diagram h4 {
  font-family: var(--pt-font-title);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pt-muted);
  margin: 0 0 20px;
}
.recon-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.recon-col {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
  padding: 14px 16px;
}
.recon-col .head {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pt-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.recon-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.recon-col li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--pt-ink);
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--pt-bg-soft);
}
.recon-col li .rup { color: var(--pt-muted); font-weight: 600; }
.recon-col li.match  { background: var(--pt-success-soft); }
.recon-col li.miss   { background: var(--pt-gst-red-bg); }
.recon-col li.extra  { background: #E6F0FA; }

.recon-result {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--pt-primary-darker);
  color: var(--pt-white);
  border-radius: var(--pt-radius-sm);
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.recon-result strong { color: var(--pt-white); font-weight: 700; }
.recon-result .amt { color: var(--pt-sky); font-weight: 700; font-family: var(--pt-font-title); }

/* ---------- Returns coverage table ---------- */
.coverage-band { background: var(--pt-bg-soft); }
.coverage-wrap {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-lg);
  overflow: hidden;
  box-shadow: var(--pt-shadow-sm);
}
.coverage-table { width: 100%; border-collapse: collapse; }
.coverage-table thead th {
  text-align: left;
  padding: 18px 22px;
  background: #F4F8FE;
  color: var(--pt-ink);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid var(--pt-line-soft);
}
.coverage-table td {
  padding: 14px 22px;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.93rem;
  color: var(--pt-body);
  vertical-align: top;
}
.coverage-table tr:last-child td { border-bottom: 0; }
.coverage-table td.ret {
  font-weight: 700;
  color: var(--pt-ink);
  font-family: var(--pt-font-title);
  font-size: 0.9rem;
  width: 15%;
  white-space: nowrap;
}
.coverage-table td.who { width: 22%; }
.coverage-table td.y {
  color: var(--pt-success-ink);
  font-weight: 700;
  width: 14%;
  white-space: nowrap;
}
.coverage-scroll { overflow-x: auto; }

/* Code preview card */
.api-card {
  background: var(--pt-code-bg);
  border-radius: var(--pt-radius-lg);
  padding: 0;
  box-shadow: var(--pt-shadow-lg);
  overflow: hidden;
  border: 1px solid #1E293B;
}
.api-card-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #0F1A2E;
  border-bottom: 1px solid #1E293B;
}
.api-dots { display: inline-flex; gap: 6px; }
.api-dots span { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.api-dots span:nth-child(1) { background: #FF605C; }
.api-dots span:nth-child(2) { background: #FFBD44; }
.api-dots span:nth-child(3) { background: #00CA4E; }
.api-tab {
  font-family: var(--pt-font-title);
  font-size: 0.78rem;
  color: #8FA3BF;
  padding: 4px 10px;
  border-radius: 6px;
}
.api-tab.on { background: #1B2B46; color: var(--pt-code-text) }
.api-card pre {
  margin: 0;
  padding: 22px 2px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--pt-code-text);
  overflow-x: auto;
}
.tok-k { color: var(--pt-code-key); }
.tok-s { color: var(--pt-code-str); }
.tok-n { color: var(--pt-code-num); }
.tok-c { color: var(--pt-code-comment); font-style: italic; }

/* ---------- Agents grid ---------- */
.agents { background: linear-gradient(180deg, var(--pt-white) 0%, #F8FAFF 100%); }
.agent-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pt-shadow);
  border-color: #D6E3F4;
}
.agent-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2px;
}
.agent-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #E6F2FA;
  color: var(--pt-primary);
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.agent-card h3 { font-size: 1.1rem; margin: 0; }
.agent-card p { margin: 0; color: var(--pt-body); font-size: 0.95rem; }
.agent-card .btn-link { margin-top: auto; }
.agent-ico img { max-width: 24px; }
/* ---------- Two-column JSON + rules ---------- */
.schema { background: var(--pt-bg-soft); }
.schema-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .schema-grid { grid-template-columns: 1fr; gap: 30px; } }
.schema-copy h2 { margin-top: 0; }
.schema-copy p { color: var(--pt-body); }
.schema-copy ul { padding-left: 20px; color: var(--pt-body); }
.schema-copy li { margin-bottom: 8px; }

/* Lighthouse-style preview card (no JS) */
.lh-card {
  background: var(--pt-white);
  border-radius: var(--pt-radius-lg);
  box-shadow: var(--pt-shadow-lg);
  border: 1px solid var(--pt-line-soft);
  overflow: hidden;
}
.lh-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: #F4F8FE;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.85rem;
  color: var(--pt-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lh-head .pass {
  display: inline-flex; align-items: center; gap: 8px;
  color: #1e7a34;
  background: #E8F6EC;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
}
.lh-head .pass::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #1e7a34;
}
.lh-body { padding: 22px; }
.lh-scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
@media (max-width: 520px) { .lh-scores { grid-template-columns: repeat(2, 1fr); } }
.lh-score {
  text-align: center;
  padding: 14px 8px;
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
}
.lh-score .ring {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: conic-gradient(#1e7a34 0% var(--p, 100%), #E8F6EC var(--p, 100%) 100%);
  display: grid; place-items: center;
  margin: 0 auto 8px;
  position: relative;
}
.lh-score .ring::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--pt-white);
  border-radius: 50%;
}
.lh-score .val {
  position: relative;
  z-index: 1;
  font-weight: 800;
  color: var(--pt-ink);
  font-size: 0.95rem;
}
.lh-score .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pt-muted);
  font-weight: 600;
}
.lh-vitals {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  font-size: 0.85rem;
}
@media (max-width: 520px) { .lh-vitals { grid-template-columns: repeat(2, 1fr); } }
.lh-vitals .k { display: block; color: var(--pt-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }
.lh-vitals .v { display: block; color: var(--pt-ink); font-weight: 700; font-family: var(--pt-font-title); margin-top: 2px; }
/* ---------- Tech stack ---------- */
.stack { background: var(--pt-bg-soft); }
.stack-band { background: var(--pt-white); }
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { .stack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stack-grid { grid-template-columns: 1fr; } }
.stack-col {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 24px;
}
.stack-col h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pt-muted);
  margin: 0 0 14px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--pt-ink);
  font-weight: 600;
  font-size: 0.85rem;
}
.stack-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.stack-col li {
  font-size: 0.85rem;
  color: var(--pt-ink);
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 500;
}
/* ---------- Web Development Process steps ---------- */
.process-band {
  padding: 96px 0 104px;
  background:
    radial-gradient(800px 400px at 15% 0%, rgba(92,168,225,0.10), transparent 60%),
    radial-gradient(700px 380px at 95% 100%, rgba(0,93,148,0.08), transparent 60%),
    linear-gradient(180deg, var(--pt-white) 0%, #F4F7FC 100%);
  position: relative;
  overflow: hidden;
}

/* subtle diagonal grid pattern for depth */
.process-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(0,93,148,0.03) 25%, transparent 25%, transparent 50%, rgba(0,93,148,0.03) 50%, rgba(0,93,148,0.03) 75%, transparent 75%, transparent);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
}
.process-band > .container { position: relative; z-index: 1; }

/* PROCESS FLOW — layout */
.process-flow {
  position: relative;
  padding-top: 42px;   /* room for the numbered badges to overlap */
}

/* SVG connector line behind the badges */
.flow-line {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 100px;
  pointer-events: none;
  z-index: 0;
}
.flow-line path {
  fill: none;
  stroke: url(#flowGradient);
  stroke-width: 2;
  stroke-dasharray: 6 6;
  stroke-linecap: round;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
/* STAGE — badge + card */
 .flow-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.flow-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pt-primary) 0%, var(--pt-ocean) 55%, var(--pt-sky) 100%);
  color: var(--pt-white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  box-shadow:
    0 12px 24px rgba(0,93,148,0.35),
    0 0 0 6px rgba(255,255,255,0.85),
    0 0 0 7px rgba(0,93,148,0.12);
  position: relative;
  z-index: 2;
  margin-bottom: -34px;  /* overlap into card */
  transition: transform .3s cubic-bezier(.2,.9,.3,1.2);
}
.flow-stage:hover .flow-badge {
  transform: translateY(-4px) scale(1.05);
}
.flow-badge::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}

.flow-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 54px 24px 28px;
  width: 100%;
  text-align: center;
  box-shadow: var(--pt-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.flow-stage:hover .flow-card {
  transform: translateY(-6px);
  box-shadow: var(--pt-shadow);
  border-color: #D6E3F4;
}

.flow-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #E6F2FA 0%, #F4F8FE 100%);
  display: grid;
  place-items: center;
  color: var(--pt-primary);
  transition: background .3s ease, color .3s ease;
}
.flow-stage:hover .flow-ico {
  background: linear-gradient(135deg, var(--pt-primary) 0%, var(--pt-ocean) 100%);
  color: var(--pt-white);
}
.flow-ico svg { width: 28px; height: 28px; }

.flow-card h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--pt-ink);
}
.flow-card p {
  font-size: 0.9rem;
  color: var(--pt-body);
  margin: 0;
  line-height: 1.55;
}

/* subtle underline accent on card */
.flow-card::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pt-primary), var(--pt-sky));
  opacity: 0;
  transition: opacity .3s ease, width .3s ease;
}
.flow-stage:hover .flow-card::before {
  opacity: 1;
  width: 48px;
}

@media (max-width: 1100px) {
  .flow-grid { grid-template-columns: repeat(3, 1fr); row-gap: 72px; }
  .flow-line { display: none; }
}
@media (max-width: 760px) {
  .process-band { padding: 64px 0 72px; }
  .section-head { margin-bottom: 56px; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); row-gap: 72px; }
}
@media (max-width: 520px) {
  .flow-grid { grid-template-columns: 1fr; row-gap: 64px; }
  .flow-card { padding: 50px 22px 26px; }
}

/* Accessibility — focus visible */
.flow-stage:focus-within .flow-card {
  outline: 2px solid var(--pt-primary);
  outline-offset: 3px;
}

/* Engagement pipeline mock card (no JS) */
.eng-card {
  background: var(--pt-white);
  border-radius: var(--pt-radius-lg);
  box-shadow: var(--pt-shadow-lg);
  border: 1px solid var(--pt-line-soft);
  overflow: hidden;
}
.eng-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: #F4F8FE;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.85rem;
  color: var(--pt-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eng-card-head .status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e7a34;
  background: #E8F6EC;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
}
.eng-card-head .status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #1e7a34;
}
.eng-card-body { padding: 22px; }
.eng-phase {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--pt-line-soft);
  align-items: center;
}
.eng-phase:last-of-type { border-bottom: 0; }
.eng-phase .pip {
  width: 22px; height: 22px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--pt-white);
}
.eng-phase.done .pip { background: var(--pt-success); }
.eng-phase.done .pip::before { content: "✓"; }
.eng-phase.live .pip {
  background: var(--pt-accent-btn);
  box-shadow: 0 0 0 4px rgba(0,152,255,0.18);
}
.eng-phase.live .pip::before { content: "•"; font-size: 1.2rem; }
.eng-phase.next .pip { background: #CBD5E1; }
.eng-phase .name { color: var(--pt-ink); font-weight: 600; font-size: 0.96rem; }
.eng-phase .sub  { color: var(--pt-muted); font-size: 0.82rem; }
.eng-phase .meta {
  font-size: 0.74rem;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.meta.ok    { background: #E8F6EC; color: #1e7a34; }
.meta.live  { background: #E6F0FA; color: var(--pt-primary); }
.meta.queue { background: #EEF0FB; color: #3F4A9B; }

.eng-stack {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
}
.eng-stack .chip {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--pt-ink);
  font-weight: 600;
  font-family: var(--pt-font-title);
}

/* ---------- Capabilities (what we build) ---------- */
.cap { background: var(--pt-bg-soft); }
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.cap-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pt-shadow);
  border-color: #D6E3F4;
}
.cap-card .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pt-primary) 0%, var(--pt-ocean) 100%);
  color: var(--pt-white);
  display: grid; place-items: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(0,93,148,0.22);
}
.cap-card .ico img { max-width: 30px; }
.cap-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.cap-card p { font-size: 0.95rem; margin: 0 0 12px; }
.cap-card .stack-mini {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 0.74rem;
  font-family: var(--pt-font-title);
}
.cap-card .stack-mini span {
  background: var(--pt-bg-soft);
  color: var(--pt-primary-dark);
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--pt-line-soft);
  font-weight: 600;
}

/* ---------- How we work (Software process) ---------- */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
@media (max-width: 960px) { .proc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .proc-grid { grid-template-columns: 1fr; } }
.proc-card {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 26px;
  position: relative;
}
.proc-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--pt-font-title);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pt-sky);
  letter-spacing: 0.06em;
}
.proc-card .pwk {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pt-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.proc-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.proc-card p { font-size: 0.93rem; margin: 0; }

/* ----------Software Stack section ---------- */
.stack-sec {
  background: linear-gradient(135deg, #0A1929 0%, #143D6F 55%, #2B6FB4 100%);
  color: #EAF2FA;
}
.stack-sec h2, .stack-sec .eyebrow { color: #FFFFFF; }
.stack-sec .eyebrow { background: rgba(255,255,255,0.12); color: #FFFFFF; }
.stack-sec p { color: #C5D4E4; }
.stack-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 960px) { .stack-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stack-cols { grid-template-columns: 1fr; } }
.stack-col2 {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--pt-radius);
  padding: 22px;
}
.stack-col2 h3 { color: #FFFFFF; font-size: 1rem; margin-bottom: 14px; letter-spacing: 0.02em; }
.stack-col2 ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.stack-col2 li {
  background: rgba(255,255,255,0.10);
  color: #EAF2FA;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--pt-font-title);
}
/* ---------- Engagement models ---------- */
.engage { background: var(--pt-white); }
.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .engage-grid { grid-template-columns: 1fr; } }
.engage-card {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 30px;
  display: flex; flex-direction: column;
}
.engage-card.featured {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FE 100%);
  border-color: #D6E3F4;
  box-shadow: var(--pt-shadow);
  position: relative;
}
.engage-card.featured::before {
  content: "Most common";
  position: absolute;
  top: -12px; left: 24px;
  background: var(--pt-primary);
  color: var(--pt-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.engage-card .tier {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pt-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.engage-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.engage-card .price {
  font-family: var(--pt-font-title);
  font-size: 0.92rem;
  color: var(--pt-ink);
  font-weight: 600;
  padding: 10px 14px;
  background: var(--pt-white);
  border: 1px dashed var(--pt-line);
  border-radius: var(--pt-radius-sm);
  margin: 6px 0 18px;
}
.engage-card ul {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 0.95rem;
}
.engage-card ul li {
  display: flex; gap: 10px;
  align-items: flex-start;
}
.engage-card ul li::before {
  content: "✓";
  color: var(--pt-success);
  font-weight: 800;
  flex-shrink: 0;
}
.engage-card .btn { margin-top: auto; }
.engage-note {
  text-align:center;
  font-size:0.85rem;
  color:var(--pt-muted);
  margin-top:24px;
}
/* ---------- Hero: Dashboard preview card (no JS, no images) ---------- */
.dash-card {
  background: var(--pt-white);
  border-radius: var(--pt-radius-lg);
  box-shadow: var(--pt-shadow-lg);
  border: 1px solid var(--pt-line-soft);
  overflow: hidden;
}
.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #F4F8FE;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.82rem;
  color: var(--pt-muted);
  font-weight: 600;
}
.dash-head .dots { display: inline-flex; gap: 6px; }
.dash-head .dots i {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  background: #D6DCE4;
}
.dash-head .dots i:nth-child(1) { background: #FF6058; }
.dash-head .dots i:nth-child(2) { background: #FFBD2E; }
.dash-head .dots i:nth-child(3) { background: #28C940; }
.dash-head .url {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--pt-font-title);
  font-size: 0.74rem;
  color: var(--pt-muted);
}
.dash-body { padding: 20px 20px 22px; }
.dash-title-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.dash-title-row .dash-h {
  margin: 0; font-size: 0.95rem; color: var(--pt-ink); font-weight: 700;
}
.dash-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pt-success-soft);
  color: var(--pt-success-ink);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.dash-pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pt-success-ink);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
@media (max-width: 520px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
.kpi {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
  padding: 12px 10px;
}
.kpi .lbl {
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pt-muted);
  font-weight: 600;
}
.kpi .val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--pt-ink);
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.kpi .delta {
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 4px;
}
.kpi .delta.up   { color: var(--pt-success-ink); }
.kpi .delta.down { color: var(--pt-error-ink); }
.kpi .delta.up::before   { content: "▲"; font-size: 0.62rem; }
.kpi .delta.down::before { content: "▼"; font-size: 0.62rem; }

/* Bar chart (CSS only) */
.chart {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
  padding: 14px 14px 12px;
}
.chart-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
  font-size: 0.78rem; color: var(--pt-muted); font-weight: 600;
}
.chart-head .legend { display: inline-flex; gap: 10px; }
.chart-head .legend span {
  display: inline-flex; align-items: center; gap: 5px; font-size: 0.7rem;
}
.chart-head .legend span::before {
  content: ""; width: 8px; height: 8px; border-radius: 2px;
  background: var(--pt-primary);
}
.chart-head .legend span:last-child::before { background: var(--pt-sky); }
.bars {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  align-items: end;
  height: 110px;
}
.bar-col {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  height: 100%;
  justify-content: end;
}
.bar-stack {
  width: 100%;
  display: flex; flex-direction: column; justify-content: end;
  gap: 2px;
}
.bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
}
.bar.a { background: var(--pt-primary); }
.bar.b { background: var(--pt-sky); }
.bar-col .x {
  font-size: 0.62rem; color: var(--pt-muted); font-weight: 600; letter-spacing: 0.04em;
}
/* ---------- Industries 2 with Details ---------- */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ind-grid { grid-template-columns: 1fr; } }
.ind-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 24px;
  transition: transform .2s ease, border-color .2s ease;
}
.ind-card:hover { transform: translateY(-3px); border-color: var(--pt-primary); }
.ind-card .ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pt-sky) 0%, var(--pt-ocean) 100%);
  color: var(--pt-white);
  display: grid; place-items: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.ind-card .ico img { max-width: 28px; }
.ind-card h3 { font-size: 1.02rem; margin: 0 0 6px; }
.ind-card p  { font-size: 0.9rem; color: var(--pt-body); margin: 0; }

/* ---------- Security 2---------- */
.security-band {
  background: var(--pt-primary-darker);
  color: #C5D4E4;
}
.security-band h2 { color: #FFFFFF; }
.security-band .section-head p { color: #A9BBD1; }
.security-band .eyebrow {
  background: rgba(255,255,255,0.08);
  color: #8BC4EE;
}
.security-band .sec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
@media (max-width: 800px) { .security-band .sec-grid { grid-template-columns: 1fr; } }
.security-band .sec-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--pt-radius);
  padding: 26px;
  transition: transform .2s ease, background .2s ease;
}
.security-band .sec-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.07);
}
.security-band .sec-card h3 { color: #FFFFFF; font-size: 1.08rem; margin: 0 0 8px; }
.security-band .sec-card p  { margin: 0; font-size: 0.94rem; color: #B8C6D8; }
.security-band .sec-card .ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(92,168,225,0.18);
  color: #8BC4EE;
  display: grid; place-items: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.security-band .sec-card .ico img { max-width: 28px; }

/* Model registry card (no JS) */
.ml-card {
  background: var(--pt-white);
  border-radius: var(--pt-radius-lg);
  box-shadow: var(--pt-shadow-lg);
  border: 1px solid var(--pt-line-soft);
  overflow: hidden;
}
.ml-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: #F4F8FE;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.85rem;
  color: var(--pt-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ml-card-head .status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e7a34;
  background: #E8F6EC;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
}
.ml-card-head .status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #1e7a34;
}
.ml-card-body { padding: 18px 22px 22px; }
.ml-model {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--pt-line-soft);
  align-items: center;
}
.ml-model:last-of-type { border-bottom: 0; }
.ml-model .name {
  color: var(--pt-ink);
  font-weight: 600;
  font-size: 0.96rem;
  font-family: var(--pt-font-title);
}
.ml-model .sub {
  color: var(--pt-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}
.ml-model .meta {
  font-size: 0.74rem;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.meta.ok      { background: #E8F6EC; color: #1e7a34; }
.meta.warn    { background: #FFF4DC; color: #8A5A00; }
.meta.live    { background: #E6F0FA; color: var(--pt-primary); }
.meta.train   { background: #EEF0FB; color: #3F4A9B; }

.ml-metrics {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ml-metrics .m {
  text-align: center;
}
.ml-metrics .m .v {
  font-family: var(--pt-font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pt-ink);
  letter-spacing: -0.01em;
}
.ml-metrics .m .k {
  font-size: 0.68rem;
  color: var(--pt-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.drift-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--pt-muted);
}
.drift-row .label {
  font-weight: 600;
  color: var(--pt-ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  flex: 1;
}
.spark span {
  flex: 1;
  background: linear-gradient(180deg, var(--pt-sky) 0%, var(--pt-primary) 100%);
  border-radius: 2px 2px 0 0;
  opacity: 0.85;
}

/* ---------- Hero: Requirements board card (no JS, no images) ---------- */
.req-card {
  background: var(--pt-white);
  border-radius: var(--pt-radius-lg);
  box-shadow: var(--pt-shadow-lg);
  border: 1px solid var(--pt-line-soft);
  overflow: hidden;
}
.req-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #F4F8FE;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.82rem;
  color: var(--pt-muted);
  font-weight: 600;
}
.req-head .dots { display: inline-flex; gap: 6px; }
.req-head .dots i {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  background: #D6DCE4;
}
.req-head .dots i:nth-child(1) { background: #FF6058; }
.req-head .dots i:nth-child(2) { background: #FFBD2E; }
.req-head .dots i:nth-child(3) { background: #28C940; }
.req-head .url {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--pt-font-title);
  font-size: 0.74rem;
  color: var(--pt-muted);
}
.req-body { padding: 20px 20px 22px; }
.req-title-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.req-title-row .req-h {
  margin: 0; font-size: 0.95rem; color: var(--pt-ink); font-weight: 700;
}
.req-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pt-info-soft);
  color: var(--pt-info-ink);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.req-pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pt-info-ink);
}

/* Epic header */
.epic {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
  padding: 12px 14px;
  margin-bottom: 12px;
}
.epic-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}
.epic-key {
  font-family: var(--pt-font-title);
  font-size: 0.72rem;
  color: var(--pt-muted);
  font-weight: 600;
}
.epic-name {
  font-size: 0.94rem;
  color: var(--pt-ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.epic-bar {
  height: 6px;
  background: #E2E8F0;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}
.epic-bar > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--pt-primary) 0%, var(--pt-sky) 100%);
  border-radius: 999px;
}

/* Story list */
.stories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.story {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
  padding: 10px 12px;
}
.story .skey {
  font-family: var(--pt-font-title);
  font-size: 0.7rem;
  color: var(--pt-muted);
  font-weight: 600;
}
.story .stitle {
  font-size: 0.86rem;
  color: var(--pt-ink);
  font-weight: 600;
  line-height: 1.35;
}
.story .stitle small {
  display: block;
  color: var(--pt-muted);
  font-weight: 500;
  font-size: 0.74rem;
  margin-top: 2px;
}
.state {
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.state.done    { background: var(--pt-success-soft); color: var(--pt-success-ink); }
.state.dev     { background: #E7F1FB;    color: #1E5A8C; }
.state.uat     { background: #FFF4DA;    color: var(--pt-warn-ink); }
.state.draft   { background: #EDEFF4;     color: var(--pt-slate); }

/* Footer of req card */
.req-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--pt-line-soft);
  font-size: 0.78rem;
  color: var(--pt-muted);
  flex-wrap: wrap;
}
.req-foot strong { color: var(--pt-ink); font-weight: 700; }

/* Hero visual — company snapshot card */
.snap-card {
  background: var(--pt-white);
  border-radius: var(--pt-radius-lg);
  box-shadow: var(--pt-shadow-lg);
  border: 1px solid var(--pt-line-soft);
  overflow: hidden;
}
.snap-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  background: #F4F8FE;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.85rem; color: var(--pt-muted); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.snap-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--pt-primary); font-weight: 700;
}
.snap-tag::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--pt-success); box-shadow: 0 0 0 4px rgba(40,167,69,0.18);
}
.snap-body { padding: 26px 22px 8px; }
.snap-row {
  display: grid; grid-template-columns: 140px 1fr; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--pt-line);
  align-items: baseline;
}
.snap-row:last-child { border-bottom: none; }
.snap-row .k { color: var(--pt-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.snap-row .v { color: var(--pt-ink); font-weight: 600; font-size: 0.98rem; }
.snap-foot {
  padding: 18px 22px;
  background: linear-gradient(180deg, #FFFFFF, #F8FAFF);
  border-top: 1px solid var(--pt-line-soft);
  display: flex; gap: 8px; flex-wrap: wrap;
}

/* ---------- Foundation (Image 3) — Vision / Mission / Commitment ---------- */
.foundation-band { background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%); }
.foundation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 800px) { .foundation-grid { grid-template-columns: 1fr; } }
.foundation-grid .pillar {
  background: var(--pt-white);
  border-radius: var(--pt-radius);
  border: 1px solid var(--pt-line-soft);
  border-left: 5px solid var(--pt-primary);
  padding: 28px 30px;
  box-shadow: var(--pt-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}

.foundation-grid .pillar.wide { grid-column: 1 / -1; }
.foundation-grid .pillar-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.foundation-grid .pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--pt-shadow);
}
.foundation-grid .pillar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,93,148,0.10);
  color: var(--pt-primary);
  display: grid; place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.foundation-grid .pillar h3 { color: var(--pt-primary); margin: 0; font-size: 1.25rem; }
.foundation-grid .pillar p { margin: 0; color: var(--pt-body); }
.foundation-grid .pillar.wide .pillar-icon {
  background: rgba(0,93,148,0.08);
}
/* ---------- How we can help (Image 1) — centered prose ---------- */
.help-band {
  background: var(--pt-white);
  padding: 90px 0;
}
.help-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.help-wrap h2 {
  color: var(--pt-primary);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 28px;
}
.help-wrap p {
  color: var(--pt-body);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.help-wrap p:last-child { margin-bottom: 0; }
.help-wrap p strong { color: var(--pt-ink); font-weight: 700; }

/* ---------- Values (Image 2) — dark gradient with white cards ---------- */
.values-band {
  background:
    radial-gradient(800px 360px at 0% 0%, rgba(92,168,225,0.10), transparent 60%),
    radial-gradient(800px 360px at 100% 100%, rgba(0,93,148,0.18), transparent 60%),
    linear-gradient(135deg, var(--pt-primary-darker) 0%, var(--pt-navy) 100%);
  color: var(--pt-white);
  padding: 90px 0;
}
.values-band .section-head h2 { color: #FFFFFF; font-size: clamp(2rem, 3.8vw, 2.75rem); }
.values-band .section-head p { color: #CBDCEB; font-size: 1rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--pt-white);
  border-radius: var(--pt-radius);
  padding: 26px 26px 24px;
  box-shadow: var(--pt-shadow);
  transition: transform .2s ease;
}
.value-card:hover { transform: translateY(-3px); }
.value-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.value-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFB539 0%, #F5A623 100%);
  color: #5A3E00;
  display: grid; place-items: center;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(245,166,35,0.30);
  flex-shrink: 0;
}
.value-icon.icn-target { background: linear-gradient(135deg, #FF5C8A 0%, #E03A6E 100%); color: #FFFFFF; box-shadow: 0 4px 10px rgba(224,58,110,0.30); }
.value-icon.icn-star   { background: linear-gradient(135deg, #FFD24C 0%, #F5B400 100%); color: #5A3E00; box-shadow: 0 4px 10px rgba(245,180,0,0.30); }
.value-icon.icn-bulb   { background: linear-gradient(135deg, #FFE066 0%, #FFC107 100%); color: #5A3E00; box-shadow: 0 4px 10px rgba(255,193,7,0.30); }
.value-icon.icn-globe  { background: linear-gradient(135deg, #4DB6F2 0%, #2196F3 100%); color: #FFFFFF; box-shadow: 0 4px 10px rgba(33,150,243,0.30); }
.value-icon.icn-shake  { background: linear-gradient(135deg, #FFD24C 0%, #F5A623 100%); color: #5A3E00; box-shadow: 0 4px 10px rgba(245,166,35,0.30); }
.value-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--pt-primary);
}
.value-card p {
  margin: 0;
  color: var(--pt-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- What we ship ---------- */
.ship-band { background: var(--pt-white); }
.ship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .ship-grid { grid-template-columns: 1fr; } }
.ship-card {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ship-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pt-shadow);
  border-color: rgba(0,93,148,0.25);
}
.ship-card .tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pt-primary);
  background: rgba(0,93,148,0.10);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.ship-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.ship-card p { margin: 0 0 14px; font-size: 0.95rem; color: var(--pt-body); }
.ship-card ul { padding-left: 18px; margin: 0 0 16px; color: var(--pt-body); font-size: 0.92rem; }
.ship-card ul li { margin-bottom: 6px; }
.ship-card a.more {
  font-weight: 600;
  color: var(--pt-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ship-card a.more:hover { gap: 10px; }

/* ---------- Industries ---------- */
.ind-band { background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%); }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .ind-grid { grid-template-columns: 1fr; } }
.ind-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .2s ease, border-color .2s ease;
}
.ind-card:hover { transform: translateY(-2px); border-color: rgba(0,93,148,0.25); }
.ind-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(0,93,148,0.10);
  color: var(--pt-primary);
  display: grid; place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.ind-card h4 { margin: 0 0 2px; font-size: 1rem; }
.ind-card p { margin: 0; font-size: 0.85rem; color: var(--pt-muted); }


/* ---------- Leadership / Team card (matches image 2) ---------- */
.team-band { padding: 24px 0 72px; }
.team-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-lg);
  padding: 36px 40px;
  box-shadow: var(--pt-shadow);
}
.team-card + .team-card { margin-top: 28px; }

.tc-head {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}
.tc-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F4F8FE 0%, #E6F0FA 100%);
  border: 2px solid var(--pt-vision-edge);
  display: grid; place-items: center;
  overflow: hidden;
  font-size: 56px; line-height: 1;
}
.tc-id .name {
  margin: 0; font-size: 1.5rem; color: var(--pt-ink);
  font-weight: 700; letter-spacing: -0.01em;
}
.tc-id .role {
  margin: 4px 0 10px; color: var(--pt-muted);
  font-size: 0.95rem;
}
.tc-social { display: inline-flex; align-items: center; gap: 10px; }
.tc-social a {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  border: 1px solid var(--pt-line);
  border-radius: 6px;
  color: var(--pt-primary);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.tc-social a:hover { background: var(--pt-primary); border-color: var(--pt-primary); color: var(--pt-white); }
.tc-social svg { width: 14px; height: 14px; fill: currentColor; }

/* Expertise highlight box */
.tc-expertise {
  background: #E6F0FA;
  border: 1px solid #C9DDF1;
  border-radius: var(--pt-radius-sm);
  padding: 18px 22px;
  margin-bottom: 24px;
}
.tc-expertise h4 {
  margin: 0 0 8px; font-size: 1rem;
  color: var(--pt-ink); font-weight: 700;
}
.tc-expertise p {
  margin: 0; color: var(--pt-ink);
  font-size: 0.96rem; line-height: 1.65;
}
.tc-expertise strong { color: var(--pt-primary-dark); font-weight: 700; }

.tc-bio p { margin: 0 0 14px; color: var(--pt-body); font-size: 0.98rem; line-height: 1.7; }
.tc-bio p:last-child { margin-bottom: 0; }
.tc-bio strong { color: var(--pt-ink); font-weight: 700; }

@media (max-width: 720px) {
  .team-card { padding: 26px 22px; }
  .tc-head { grid-template-columns: 72px 1fr; gap: 16px; }
  .tc-avatar { width: 72px; height: 72px; font-size: 40px; }
  .tc-id .name { font-size: 1.25rem; }
  .tc-expertise { padding: 16px 18px; }
}

/* ---------- Collaborative Vision panel (matches image 1) ---------- */
.vision-band { padding: 16px 0 56px; background: var(--pt-bg); }
.vision-card {
  background: #EDF4FB;
  border: 1px solid #D6E5F4;
  border-left: 4px solid var(--pt-primary);
  border-radius: var(--pt-radius);
  padding: 28px 32px;
  box-shadow: var(--pt-shadow-sm);
}
.vision-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.vision-head .icon { display: inline-flex; gap: 8px; font-size: 1.4rem; line-height: 1; }
.vision-head .icon img { width: 28px; height: 28px; }
.vision-head h2 {
  margin: 0; font-size: 1.25rem; color: var(--pt-ink); letter-spacing: -0.01em;
}
.vision-card p {
  margin: 0; color: var(--pt-ink);
  font-size: 1rem; line-height: 1.7;
}
@media (max-width: 600px) {
  .vision-card { padding: 22px 20px; }
  .vision-head h2 { font-size: 1.1rem; }
}
/* ---------- Extraction map (what the agent pulls) ---------- */
.extract { background: var(--pt-bg-soft); }
.extract-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 980px) { .extract-grid { grid-template-columns: 1fr; gap: 26px; } }

.invoice-mock {
  background: var(--pt-white);
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius);
  box-shadow: var(--pt-shadow);
  padding: 0;
  overflow: hidden;
  font-size: 0.86rem;
}
.inv-head {
  padding: 20px 22px 14px;
  border-bottom: 1px solid var(--pt-line-soft);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.inv-head .vendor {
  font-weight: 800;
  color: var(--pt-ink);
  font-size: 1rem;
}
.inv-head .vendor small {
  display: block;
  font-weight: 500;
  color: var(--pt-muted);
  font-size: 0.78rem;
  margin-top: 2px;
}
.inv-tag {
  background: rgba(0,93,148,0.08);
  color: var(--pt-primary);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.78rem;
}
.inv-meta {
  padding: 14px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-bottom: 1px solid var(--pt-line-soft);
}
.inv-meta div {
  font-size: 0.78rem;
  color: var(--pt-muted);
}
.inv-meta div strong {
  display: block;
  color: var(--pt-ink);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 2px;
}
.inv-table {
  width: 100%;
  border-collapse: collapse;
}
.inv-table th, .inv-table td {
  padding: 10px 12px;
  font-size: 0.78rem;
  text-align: left;
  border-bottom: 1px solid var(--pt-line-soft);
}
.inv-table th {
  background: #F4F8FE;
  font-weight: 700;
  color: var(--pt-ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
}
.inv-table td.right, .inv-table th.right { text-align: right; }
.inv-totals {
  padding: 14px 22px 18px;
  background: #F4F8FE;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  font-size: 0.85rem;
}
.inv-totals .total-row { display: contents; }
.inv-totals .total-row span:first-child { color: var(--pt-muted); }
.inv-totals .total-row span:last-child { color: var(--pt-ink); font-weight: 600; text-align: right; }
.inv-totals .total-row.grand span { font-weight: 800; color: var(--pt-primary); font-size: 0.95rem; }

.hl {
  background: rgba(0,152,255,0.14);
  border-bottom: 2px solid var(--pt-accent-btn);
  padding: 1px 4px;
  border-radius: 3px;
}

.extract-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.extract-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.extract-item .num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pt-primary) 0%, var(--pt-ocean) 100%);
  color: var(--pt-white);
  font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(0,93,148,0.25);
}
.extract-item h4 { margin: 2px 0 4px; font-size: 1.02rem; }
.extract-item p  { margin: 0; font-size: 0.94rem; color: var(--pt-body); }
.extract-item code {
  background: #EEF3FA;
  color: var(--pt-primary-dark);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.82rem;
}
/* ---------- Use cases ---------- */
.use-cases { background: var(--pt-bg-soft); }
.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .use-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .use-grid { grid-template-columns: 1fr; } }
.use-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 26px;
}
.use-card .ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pt-sky) 0%, var(--pt-ocean) 100%);
  color: var(--pt-white);
  display: grid; place-items: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.use-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.use-card p { font-size: 0.93rem; margin: 0 0 12px; }
.use-card .outcome {
  font-size: 0.85rem;
  color: var(--pt-primary-dark);
  background: #EAF4FB;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}
.use-card .ico img { max-width: 28px; }

/* ---------- Statement preview mock ---------- */
.stmt-mock {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-lg);
  box-shadow: var(--pt-shadow-lg);
  overflow: hidden;
  position: relative;
}
.stmt-mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, #005D94 0%, #143D6F 100%);
  color: var(--pt-white);
}
.stmt-mock-head .stmt-bank {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stmt-mock-head .stmt-period {
  font-size: 0.78rem;
  color: #C5D4E4;
}
.stmt-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px 20px;
  background: #F4F8FE;
  border-bottom: 1px solid var(--pt-line-soft);
  font-size: 0.8rem;
}
.stmt-meta .lbl {
  color: var(--pt-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.68rem;
  display: block;
  margin-bottom: 2px;
}
.stmt-meta .val { color: var(--pt-ink); font-weight: 600; font-family: var(--pt-font-title); }
.stmt-rows { padding: 6px 0; }
.stmt-row {
  display: grid;
  grid-template-columns: 64px 1fr 78px 78px;
  gap: 8px;
  padding: 10px 20px;
  align-items: center;
  font-size: 0.82rem;
  border-bottom: 1px solid #F5F7FB;
}
.stmt-row:last-child { border-bottom: 0; }
.stmt-row .dt { color: var(--pt-muted); font-family: var(--pt-font-title); }
.stmt-row .desc { color: var(--pt-ink); }
.stmt-row .tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag-salary { background: #E6F4EA; color: #1E7A34; }
.tag-emi    { background: #FDECEC; color: #B12C2C; }
.tag-vendor { background: #E6F2FA; color: #1E5A8C; }
.tag-gst    { background: #FFF4DD; color: #8A5A00; }
.tag-upi    { background: #EFE9FF; color: #5A2EBF; }
.stmt-row .dr { color: #B12C2C; font-family: var(--pt-font-title); text-align: right; font-weight: 600; }
.stmt-row .cr { color: #1E7A34; font-family: var(--pt-font-title); text-align: right; font-weight: 600; }
.stmt-row .nil { color: #C7CCD6; text-align: right; }
.stmt-foot {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  background: #F4F8FE;
  border-top: 1px solid var(--pt-line-soft);
  font-size: 0.85rem;
}
.stmt-foot .lbl { color: var(--pt-muted); }
.stmt-foot .val { color: var(--pt-ink); font-weight: 700; font-family: var(--pt-font-title); }
.stmt-badge {
  position: absolute;
  top: 14px; right: -10px;
  background: var(--pt-success);
  color: var(--pt-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(40,167,69,0.35);
  transform: rotate(2deg);
}

@media (max-width: 980px) {
  .stmt-row { grid-template-columns: 56px 1fr 70px 70px; font-size: 0.78rem; }
}
@media (max-width: 480px) {
  .stmt-row { grid-template-columns: 50px 1fr 60px; }
  .stmt-row .nil:not(:last-child),
  .stmt-row .dr + .nil { display: none; }
}

/* ---------- OCR vs ADE callout ---------- */
.ocr-band { background: var(--pt-bg-soft); }
.ocr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .ocr-grid { grid-template-columns: 1fr; } }
.ocr-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 28px;
}
.ocr-card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ocr-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pill-old  { background: #FDECEC; color: #B12C2C; }
.pill-new  { background: #E6F4EA; color: #1E7A34; }
.ocr-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ocr-card li {
  padding-left: 28px;
  position: relative;
  color: var(--pt-body);
  font-size: 0.95rem;
}
.ocr-card .x::before {
  content: "×";
  position: absolute;
  left: 6px; top: -2px;
  color: #B12C2C;
  font-weight: 700;
  font-size: 1.2rem;
}
.ocr-card .y::before {
  content: "✓";
  position: absolute;
  left: 4px; top: 0;
  color: #1E7A34;
  font-weight: 700;
  font-size: 1rem;
}
/* ---------- Fields grid ---------- */
.fields { background: var(--pt-white); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1000px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-3 { grid-template-columns: 1fr; } }

.field-card {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.field-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pt-shadow);
  border-color: #D6E3F4;
}
.field-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #E6F2FA;
  color: var(--pt-primary);
  display: grid; place-items: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  font-weight: 700;
  font-family: var(--pt-font-title);
}
.field-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.field-card p { margin: 0; color: var(--pt-body); font-size: 0.93rem; }
.field-card code {
  display: inline-block;
  background: #EEF3FA;
  color: var(--pt-primary-dark);
  font-size: 0.78rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin: 2px 4px 0 0;
}
/* ---------- Use Bank cases ---------- */
.usecase { background: var(--pt-white); }
.uc-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .uc-grid2 { grid-template-columns: 1fr; } }
.uc-card2 {
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 28px;
  background: var(--pt-bg-soft);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: flex-start;
}
.uc-ico2 {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #005D94 0%, #2B6FB4 100%);
  color: var(--pt-white);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.uc-card2 h3 { font-size: 1.1rem; margin: 0 0 6px; }
.uc-card2 p { margin: 0 0 8px; color: var(--pt-body); font-size: 0.95rem; }
.uc-meta2 {
  font-size: 0.82rem;
  color: var(--pt-primary);
  font-weight: 600;
}

.uc-card3 {
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 28px;
  background: var(--pt-bg-soft);
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: flex-start;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  
}
.uc-card3:hover {
  transform: translateY(-3px);
  border-color: #D6E3F4;
  box-shadow: var(--pt-shadow-sm);
}
.uc-card3 .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pt-primary);
  background: rgba(0,93,148,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.uc-ico3 {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #005D94 0%, #2B6FB4 100%);
  color: var(--pt-white);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.uc-ico3 img { max-width: 28px; }
.uc-card3 h3 { font-size: 1.1rem; margin: 0 0 6px; }
.uc-card3 p { margin: 0 0 8px; color: var(--pt-body); font-size: 0.95rem; }


/* ---------- ID Document grid ---------- */
.ids-band { background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%); }
.id-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .id-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .id-grid { grid-template-columns: 1fr; } }

.id-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.id-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pt-shadow);
  border-color: #D6E3F4;
}
.id-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.id-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #E6F2FA;
  color: var(--pt-primary);
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.id-card h3 { font-size: 1.05rem; margin: 0; }
.id-card .pill-mini {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pt-ocean);
  background: rgba(43,111,180,0.10);
  padding: 4px 10px;
  border-radius: 999px;
}
.id-card p { margin: 0; color: var(--pt-body); font-size: 0.94rem; }
.id-card .fields {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.id-card .fields li {
  font-family: var(--pt-font-title);
  font-size: 0.74rem;
  color: var(--pt-ink);
  background: #F4F8FE;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--pt-line-soft);
}
.id-ico img { max-width: 28px; }

/* ---------- PII Section (two-column) ---------- */
.pii { background: var(--pt-bg-soft); }
.pii-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .pii-grid { grid-template-columns: 1fr; gap: 30px; } }
.pii-copy p { color: var(--pt-body); }
.pii-copy ul { padding-left: 20px; color: var(--pt-body); }
.pii-copy li { margin-bottom: 10px; }
.pii-copy li strong { color: var(--pt-ink); }
.pii-copy code {
  background: #ECF1F8;
  border: 1px solid var(--pt-line-soft);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--pt-ink);
}

/* ---------- Related agents ---------- */
.related { background: var(--pt-white); }
.rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .rel-grid { grid-template-columns: 1fr; } }
.rel-card {
  display: block;
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 22px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.rel-card:hover {
  transform: translateY(-3px);
  border-color: var(--pt-primary);
  background: var(--pt-white);
}
.rel-card h3 { font-size: 1.05rem; margin: 0 0 6px; color: var(--pt-ink); }
.rel-card p  { margin: 0 0 12px; color: var(--pt-body); font-size: 0.92rem; }
.rel-card span.arrow { color: var(--pt-primary); font-weight: 700; }

/* ---------- Document layout ---------- */
.legal-doc {
  padding: 56px 0 80px;
  background: var(--pt-bg);
}
.legal-wrap {
  max-width: 920px;
  margin: 0 auto;
}

/* ---------- Info card (TOC + Notice share this base) ---------- */
.info-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-legal-border);
  border-radius: var(--pt-radius);
  box-shadow: var(--pt-shadow-sm);
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}
.info-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pt-sky) 0%, var(--pt-ocean) 100%);
}
.info-card-inner {
  padding: 26px 30px 24px;
}
.info-card h2 {
  color: var(--pt-primary);
  font-size: 1.2rem;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
/* ---------- TOC ---------- */
.toc-list {
  margin: 0;
  padding-left: 22px;
  color: var(--pt-body);
  counter-reset: toc-counter;
  list-style: decimal;
}
.toc-list li {
  padding: 4px 0;
  font-size: 0.96rem;
}
.toc-list li::marker {
  color: var(--pt-primary);
  font-weight: 700;
}
.toc-list a {
  color: var(--pt-body);
  transition: color .15s ease;
}
.toc-list a:hover {
  color: var(--pt-primary);
  text-decoration: none;
}
/* ---------- Notice card variant ---------- */
.notice-card {
  background: var(--pt-legal-tint);
  border-color: var(--pt-legal-border);
}
.notice-card h2 {
  color: var(--pt-primary);
  font-size: 1.05rem;
  margin: 0 0 10px;
}
.notice-card p {
  margin: 0;
  color: var(--pt-ink);
  font-size: 0.96rem;
}
.notice-card strong { color: var(--pt-primary); font-weight: 700; }

/* ---------- Legal sections ---------- */
.legal-section {
  margin: 44px 0 0;
  scroll-margin-top: 90px;
  padding: 0px;
}
.legal-section h2 {
  color: var(--pt-primary);
  font-size: 1.4rem;
  margin: 0 0 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 700;
}
.legal-section h2 .num {
  color: var(--pt-primary);
  font-weight: 700;
  flex-shrink: 0;
}
.legal-section h3 {
  color: var(--pt-ink);
  font-size: 1.05rem;
  margin: 22px 0 10px;
  font-weight: 700;
}
.legal-section p {
  color: var(--pt-body);
  margin: 0 0 14px;
  font-size: 0.98rem;
}
.legal-section strong { color: var(--pt-ink); font-weight: 700; }
.legal-section a {
  color: var(--pt-primary);
  font-weight: 600;
}
.legal-section ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.legal-section ul li {
  position: relative;
  padding: 6px 0 6px 24px;
  color: var(--pt-body);
  font-size: 0.96rem;
}
.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pt-primary);
}
.legal-section ul li strong { color: var(--pt-ink); }

/* Section divider */
.legal-section + .legal-section {
  border-top: 1px solid var(--pt-line);
  padding-top: 36px;
}
/* Highlight callout inside sections */
.callout {
  background: var(--pt-legal-tint);
  border-left: 3px solid var(--pt-sky);
  padding: 16px 20px;
  border-radius: var(--pt-radius-sm);
  margin: 18px 0;
  font-size: 0.95rem;
  color: var(--pt-ink);
}
.callout p:last-child { margin-bottom: 0; }
/* ---------- Grievance / contact card ---------- */
.grievance {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 24px 28px;
  margin: 20px 0;
  box-shadow: var(--pt-shadow-sm);
}
.grievance h3 {
  color: var(--pt-primary);
  margin: 0 0 14px;
  font-size: 1.05rem;
}
.grievance dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 10px 18px;
  margin: 0;
  font-size: 0.95rem;
}
@media (max-width: 640px) {
  .grievance dl { grid-template-columns: 1fr; gap: 4px 0; }
  .grievance dl dt { margin-top: 10px; }
}
.grievance dt {
  color: var(--pt-muted);
  font-weight: 600;
}
.grievance dd {
  margin: 0;
  color: var(--pt-ink);
  font-weight: 500;
}
.grievance dd a { color: var(--pt-primary); font-weight: 600; }

/* Rights table */
.rights-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px 22px;
  margin: 12px 0 20px;
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-sm);
  padding: 18px 22px;
}
@media (max-width: 640px) {
  .rights-grid { grid-template-columns: 1fr; gap: 4px 0; padding: 16px 18px; }
  .rights-grid dt { margin-top: 12px; }
  .rights-grid dt:first-child { margin-top: 0; }
}
.rights-grid dt {
  color: var(--pt-primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}
.rights-grid dd {
  color: var(--pt-body);
  margin: 0;
  font-size: 0.95rem;
}
/* ---------- Contact section (form + cards) ---------- */
.contact-section {
  background: var(--pt-bg);
  padding-top: 56px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Form card */
.form-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 36px;
  box-shadow: var(--pt-shadow-sm);
}
.form-card h2 {
  font-size: 1.6rem;
  margin: 0 0 10px;
  color: var(--pt-ink);
}
.form-card .form-lede {
  color: var(--pt-body);
  margin: 0 0 24px;
  font-size: 0.96rem;
}
.form-head {
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--pt-primary) 0%, var(--pt-ocean) 100%);
  color: var(--pt-white);
}
.form-card2 {
  background: var(--pt-white);
  border-radius: var(--pt-radius-lg);
  box-shadow: var(--pt-shadow-lg);
  border: 1px solid var(--pt-line-soft);
  overflow: hidden;
}
.form-head h2 {
  color: var(--pt-white);
  font-size: 1.35rem;
  margin: 0 0 6px;
}
.form-head p {
  color: #D6E8F4;
  font-size: 0.92rem;
  margin: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
 .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
form.book-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } .row-2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pt-ink);
  margin-bottom: 8px;
}
.field label .req { color: var(--pt-error); margin-left: 2px; }
.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  color: var(--pt-ink);
  background: var(--pt-white);
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius-sm);
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--pt-primary);
  box-shadow: 0 0 0 4px rgba(0,93,148,0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: #A0A6B5; }

.form-block { margin-bottom: 18px; }
.form-help {
  font-size: 0.82rem;
  color: var(--pt-muted);
  margin: 6px 0 0;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 8px 0 22px;
}
.captcha-row label {
  font-weight: 600;
  color: var(--pt-ink);
  font-size: 0.92rem;
}
.captcha-row input {
  width: 90px;
  padding: 10px 12px;
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius-sm);
  font: inherit;
  color: var(--pt-ink);
}
.captcha-row input:focus {
  outline: none;
  border-color: var(--pt-primary);
  box-shadow: 0 0 0 4px rgba(0,93,148,0.12);
}

/* Inline field errors */
.field.has-error input,
.field.has-error textarea,
.field.has-error select,
.captcha-row.has-error input {
  border-color: var(--pt-error);
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}
.field-error {
  color: var(--pt-error);
  font-size: 0.82rem;
  margin-top: 6px;
  display: block;
}

/* Submit status banner (success / error from JSON response) */
.form-status {
  margin: 6px 0 14px;
  padding: 12px 14px;
  border-radius: var(--pt-radius-sm);
  font-size: 0.92rem;
  border: 1px solid transparent;
}
.form-status.is-success {
  background: #E8F6EE;
  border-color: #B7E2C5;
  color: #1E6B3A;
}
.form-status.is-error {
  background: #FDECEE;
  border-color: #F3BFC5;
  color: var(--pt-error-ink);
}

/* Submit button while sending */
.btn[disabled],
.btn.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.85rem;
  color: var(--pt-muted);
  margin: 4px 0 22px;
}
.consent input { margin-top: 4px; }
.consent a { font-weight: 600; }

/* Get in touch card (right) */
.touch-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 36px;
  box-shadow: var(--pt-shadow-sm);
}
.touch-card h2 {
  font-size: 1.6rem;
  margin: 0 0 6px;
  color: var(--pt-ink);
}
.touch-brand {
  color: var(--pt-primary);
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 0 4px;
}
.touch-loc {
  color: var(--pt-ink);
  font-weight: 600;
  margin: 0 0 22px;
  font-size: 0.95rem;
}

.touch-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.touch-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  background: var(--pt-white);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.touch-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--pt-shadow-sm);
  border-color: var(--pt-tint-strong);
}
.touch-icon {
  width: 56px; height: 56px;
  border-radius: var(--pt-radius-sm);
  background: var(--pt-tint);
  color: var(--pt-primary);
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.touch-body h3 {
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: var(--pt-ink);
}
.touch-body p, .touch-body a {
  margin: 0;
  color: var(--pt-body);
  font-size: 0.95rem;
  word-break: break-word;
}
.touch-body a:hover { color: var(--pt-primary); }

/* ---------- Map / office strip ---------- */
.office {
  background: linear-gradient(135deg, var(--pt-primary-darker) 0%, var(--pt-navy) 100%);
  color: var(--pt-white);
  padding: 56px 0;
}
.office-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 880px) { .office-grid { grid-template-columns: 1fr; } }
.office h2 { color: #FFFFFF; margin: 0 0 12px; }
.office p  { color: #CBDCEB; margin: 0 0 12px; }
.office .office-meta {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 18px;
  font-size: 0.95rem;
  color: #E8EDF2;
}
.office .office-meta i {
  color: var(--pt-sky);
  margin-right: 10px;
  width: 18px; text-align: center;
}
.office-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(92,168,225,0.25);
  border-radius: var(--pt-radius);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.office-card h3 { color: #FFFFFF; font-size: 1.05rem; margin: 0 0 14px; }
.office-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.office-card ul li {
  color: #CBDCEB;
  font-size: 0.93rem;
  padding-left: 22px;
  position: relative;
}
.office-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--pt-sky);
  position: absolute;
  left: 0; top: 1px;
  font-size: 0.8rem;
}

/* Promise list inside hero */
.promise {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.promise li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--pt-ink);
  font-size: 0.98rem;
  font-weight: 500;
}
.promise .pico {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: #E8F6EC;
  color: #1e7a34;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.promise span.txt small {
  display: block;
  color: var(--pt-body);
  font-weight: 400;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* Direct contact strip */
.direct {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 18px 20px;
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  box-shadow: var(--pt-shadow-sm);
}
.direct-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
}
.direct-item .lbl {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pt-muted);
  font-weight: 600;
}
.direct-item a, .direct-item .val {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--pt-ink);
}
.direct-item a:hover { color: var(--pt-primary); }

/* ---------- Who you'll talk to ---------- */
.who { background: var(--pt-bg-soft); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .who-grid { grid-template-columns: 1fr; } }
.who-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.who-card:hover { transform: translateY(-3px); box-shadow: var(--pt-shadow); border-color: #D6E3F4; }
.who-card .who-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pt-sky) 0%, var(--pt-ocean) 100%);
  color: var(--pt-white);
  display: grid; place-items: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.who-card .who-ico img { max-width: 28px; }
.who-card h3 { font-size: 1.1rem; margin: 0 0 6px; }
.who-card .role {
  font-size: 0.78rem;
  color: var(--pt-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}
.who-card p { font-size: 0.95rem; color: var(--pt-body); margin: 0; }

/* ---------- Channels (alt contact) ---------- */
.channels { background: var(--pt-white); }
.ch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .ch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ch-grid { grid-template-columns: 1fr; } }
.ch-card {
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  padding: 22px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.ch-card:hover { transform: translateY(-3px); border-color: var(--pt-primary); background: var(--pt-white); box-shadow: var(--pt-shadow-sm); }
.ch-card .ch-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,93,148,0.10);
  color: var(--pt-primary);
  display: grid; place-items: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.ch-card .ch-ico img { max-width: 22px; }
.ch-card .ch-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pt-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.ch-card .ch-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pt-ink);
  display: block;
}
.ch-card a.ch-val:hover { color: var(--pt-primary); }
.ch-card .ch-sub { font-size: 0.85rem; color: var(--pt-body); margin: 6px 0 0; }

/*---------- Category filter pills ---------- */
.filter-bar {
  background: var(--pt-white);
  border-bottom: 1px solid var(--pt-line);
  padding: 18px 0;
  position: sticky;
  top: 64px;
  z-index: 30;
}
.filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  overflow-x: auto;
}
.filter-label {
  color: var(--pt-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 6px;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--pt-bg-soft);
  border: 1px solid var(--pt-line-soft);
  color: var(--pt-ink);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}
.filter-pill:hover { background: var(--pt-white); border-color: var(--pt-primary); color: var(--pt-primary); transform: translateY(-1px); }
.filter-pill.is-active {
  background: var(--pt-primary);
  color: var(--pt-white);
  border-color: var(--pt-primary);
}
.filter-pill .count {
  background: rgba(0,0,0,0.08);
  color: inherit;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.filter-pill.is-active .count { background: rgba(255,255,255,0.2); }
/* ---------- Featured post ---------- */
.featured-section { background: var(--pt-bg-soft); padding: 64px 0 32px; }
.featured-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.featured-head h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pt-muted);
  margin: 0;
  font-weight: 700;
}
.featured-head .featured-meta {
  font-size: 0.85rem;
  color: var(--pt-muted);
}
.featured-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius-lg);
  overflow: hidden;
  box-shadow: var(--pt-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.featured-card:hover { transform: translateY(-4px); box-shadow: var(--pt-shadow-lg); }
.featured-thumb {
  position: relative;
  min-height: 340px;
  background: linear-gradient(135deg, #042E53 0%, #005D94 60%, #2B6FB4 100%);
  overflow: hidden;
}
.featured-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(420px 220px at 80% 20%, rgba(92,168,225,0.45), transparent 60%),
    radial-gradient(280px 180px at 10% 90%, rgba(0,145,234,0.3), transparent 60%);
}
.featured-thumb .stamp {
  position: absolute;
  top: 22px; left: 22px;
  background: rgba(255,255,255,0.95);
  color: var(--cat-opinion);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  z-index: 2;
}
.featured-thumb .mark {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.28);
  font-size: 7rem; font-weight: 800;
  letter-spacing: -0.05em;
  z-index: 1;
  background: none;
}
.featured-body {
  padding: 40px 42px;
  display: flex; flex-direction: column; gap: 14px; justify-content: center;
}

.featured-body h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  line-height: 1.25;
  margin: 6px 0 4px;
}
.featured-body h3 a { color: var(--pt-ink); }
.featured-body h3 a:hover { color: var(--pt-primary); }
.featured-body .excerpt {
  font-size: 1rem;
  color: var(--pt-body);
  margin: 0;
}
.featured-body .author-row {
  display: flex; align-items: center; gap: 12px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--pt-line-soft);
}
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pt-primary) 0%, var(--pt-ocean) 100%);
  color: var(--pt-white);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.78rem;
}
.author-row .name { color: var(--pt-ink); font-weight: 600; font-size: 0.9rem; }
.author-row .role { color: var(--pt-muted); font-size: 0.82rem; }
@media (max-width: 900px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-thumb { min-height: 220px; }
  .featured-body { padding: 28px 24px; }
  .featured-thumb .mark { font-size: 4.5rem; }
}
.featured-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.88rem; color: var(--pt-muted);
  margin-bottom: 22px;
}
.featured-meta .author {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--pt-ink);
  font-weight: 600;
}
.featured-meta .avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pt-primary) 0%, var(--pt-ocean) 100%);
  display: grid; place-items: center;
  color: var(--pt-white);
  font-weight: 800; font-size: 0.72rem;
}
/* ---------- Post grid ---------- */
.posts-section { background: var(--pt-bg-soft); padding: 32px 0 88px; }
.posts-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin: 24px 0 22px; flex-wrap: wrap;
}
.posts-head h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pt-muted);
  margin: 0;
  font-weight: 700;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .posts-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--pt-white);
  border: 1px solid var(--pt-line-soft);
  border-radius: var(--pt-radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--pt-shadow); border-color: #D6E3F4; }
.blog-thumb { position: relative; height: 180px; display: block; overflow: hidden; }
.blog-thumb .cover { position: absolute; inset: 0; }
.blog-thumb .cover.g1 { background: linear-gradient(135deg, #2B6FB4 0%, #5CA8E1 100%); }
.blog-thumb .cover.g2 { background: linear-gradient(135deg, #143D6F 0%, #2B6FB4 100%); }
.blog-thumb .cover.g3 { background: linear-gradient(135deg, #042E53 0%, #005D94 100%); }
.blog-thumb .cover.g4 { background: linear-gradient(135deg, #6A1B9A 0%, #A60D7D 100%); }
.blog-thumb .cover.g5 { background: linear-gradient(135deg, #1E7E34 0%, #2DAB4F 100%); }
.blog-thumb .cover.g6 { background: linear-gradient(135deg, #C26200 0%, #FFB539 100%); }
.blog-thumb .cover.g7 { background: linear-gradient(135deg, #012341 0%, #143D6F 100%); }
.blog-thumb .cover.g8 { background: linear-gradient(135deg, #2B6FB4 0%, #042E53 100%); }
.blog-thumb .cover.g9 { background: linear-gradient(135deg, #5CA8E1 0%, #2B6FB4 100%); }
.blog-thumb .mono {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.22);
  font-size: 4rem; font-weight: 800; letter-spacing: -0.05em;
}
.blog-category {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--pt-primary);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.blog-category.opinion     { color: var(--cat-opinion); }
.blog-category.engineering { color: var(--cat-engineering); }
.blog-category.case-study  { color: var(--cat-case-study); }
.blog-category.playbook    { color: var(--cat-playbook); }
.blog-category.compliance  { color: var(--cat-compliance); }
.blog-category.inside      { color: var(--cat-inside); }

.blog-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-meta { font-size: 0.82rem; color: var(--pt-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.blog-body h3 { font-size: 1.1rem; line-height: 1.35; margin: 0; }
.blog-body h3 a { color: var(--pt-ink); }
.blog-body h3 a:hover { color: var(--pt-primary); }
.blog-excerpt { color: var(--pt-body); font-size: 0.93rem; margin: 0; flex: 1; }
.blog-foot {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--pt-line-soft);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.author-mini {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--pt-muted); font-size: 0.82rem;
}
.author-mini .avatar { width: 26px; height: 26px; font-size: 0.66rem; }

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--pt-line-soft);
  background: var(--pt-white);
  color: var(--pt-ink);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.pagination a:hover {
  background: var(--pt-primary);
  color: var(--pt-white);
  border-color: var(--pt-primary);
}
.pagination .is-current {
  background: var(--pt-primary);
  color: var(--pt-white);
  border-color: var(--pt-primary);
}
.pagination .gap {
  background: transparent;
  border: 0;
  color: var(--pt-muted);
}

/* ---------- Article body layout ---------- */
.article-wrap {
  background: var(--pt-white);
  padding: 56px 0 80px;
}
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) {
  .article-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Article prose ---------- */
.prose {
  max-width: 760px;
  font-size: 1.05rem;
  color: var(--pt-body);
  line-height: 1.75;
}
.prose p { margin: 0 0 1.25em; }
.prose strong { color: var(--pt-ink); }
.prose a {
  color: var(--pt-primary);
  border-bottom: 1px solid rgba(0,93,148,0.25);
}
.prose a:hover { border-bottom-color: var(--pt-primary); }
.prose h2 {
  position: relative;
  margin: 2.2em 0 0.7em;
  padding-left: 18px;
  font-size: 1.5rem;
  scroll-margin-top: 90px;
}
.prose h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1em;
  background: var(--pt-primary);
  border-radius: 999px;
}
.prose h3 { margin: 1.6em 0 0.6em; font-size: 1.15rem; }
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1.25em; }
.prose li { margin-bottom: 0.5em; }
.prose li::marker { color: var(--pt-primary); font-weight: 700; }

.lede {
  font-size: 1.18rem;
  color: var(--pt-ink);
  font-weight: 500;
  line-height: 1.55;
  margin: 0 0 1.6em;
  padding-left: 18px;
  border-left: 3px solid var(--pt-primary);
}

/* Pull quote */
.pullquote {
  margin: 2em 0;
  padding: 28px 28px 28px 32px;
  background: var(--pt-bg-soft);
  border-left: 4px solid var(--pt-primary);
  border-radius: 0 var(--pt-radius) var(--pt-radius) 0;
  font-size: 1.15rem;
  color: var(--pt-ink);
  font-weight: 600;
  line-height: 1.5;
  font-style: normal;
}
.pullquote::before {
  content: "“";
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: 0.7;
  color: var(--pt-primary);
  margin-bottom: 12px;
}

/* Comparison table inside prose */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0 2em;
  font-size: 0.96rem;
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius);
  overflow: hidden;
}
.compare th, .compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--pt-line-soft);
  vertical-align: top;
}
.compare thead th {
  background: var(--pt-bg-soft);
  color: var(--pt-ink);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare td:first-child { font-weight: 600; color: var(--pt-ink); width: 30%; }

/* Inline note */
.inline-note {
  background: #FFFBEF;
  border: 1px solid #F2E1B0;
  border-left: 4px solid var(--pt-warn);
  padding: 16px 20px;
  border-radius: var(--pt-radius);
  margin: 1.5em 0;
  font-size: 0.96rem;
  color: #6F5A14;
}
.inline-note strong { color: #5A4910; }
.stats-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.stat-card{
  background: linear-gradient(135deg, #202a3b 0, #575761 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pt-shadow);
}
.stat-card .stat-number{
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  display: block;
  margin-bottom: .5rem;
}
.stat-card .stat-label{
  color: rgba(255, 255, 255, .9);
  font-size: .95rem;
}
.bg-col4{
  background-color: #005d94;
}
.sec-title{
  font-size: 1.7rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  line-height: 1.4;
  text-transform: capitalize;
}
.text-pearl{
  color:#F2F2F2 !important;
}
.sub-title{
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 24px;
}