/*
Theme Name: ProcuraOne
Theme URI: https://www.procuraonesolutions.com
Author: ProcuraOne Solutions Pvt. Ltd.
Author URI: https://www.procuraonesolutions.com
Description: A modern, animated corporate theme for ProcuraOne Solutions Pvt. Ltd. — a B2B procurement and sourcing company. Built around the brand palette (deep navy + emerald), with a 10-section animated homepage, dedicated pages for Services, About, Contact, and full blog support. Designed to pair with the ProcuraOne Core plugin for RFQ and partner registration.
Version: 1.12.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: procuraone
Tags: business, corporate, b2b, procurement, animated, one-page, blog
*/

/* =====================================================================
   ProcuraOne Design System
   Palette derived from brand assets:
     Navy (deep)     #0B1F33
     Navy (base)     #10243A
     Navy (panel)    #14304B
     Emerald (base)  #2EE6A0
     Emerald (deep)  #16B981
     Emerald (soft)  #6FE3B8
     Slate text      #5B6B7B
     Mist            #EEF3F2
   ===================================================================== */

:root {
  --c-ink: #060B14;          /* near-black base, AetherGuard-style */
  --c-ink-2: #0A1422;        /* slightly lifted panel */
  --c-navy-deep: #0B1F33;
  --c-navy: #10243A;
  --c-navy-panel: #14304B;
  --c-navy-line: #1E3A57;
  --c-glass-line: rgba(255,255,255,0.10);
  --c-emerald: #2EE6A0;
  --c-emerald-deep: #16B981;
  --c-emerald-soft: #6FE3B8;
  --c-blue-glow: #2563EB;    /* electric blue used in the orb glow */
  --c-white: #FFFFFF;
  --c-mist: #EEF3F2;
  --c-mist-2: #F6F9F8;
  --c-slate: #5B6B7B;
  --c-slate-dark: #34465A;
  --c-border: #E2E9E7;

  /* glassmorphism tokens */
  --glass-bg: rgba(255,255,255,0.06);
  --glass-bg-2: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.12);
  --glass-blur: blur(18px) saturate(140%);
  --glass-shadow: 0 24px 60px rgba(0,0,0,0.45);

  --grad-navy: linear-gradient(135deg, #0B1F33 0%, #11283F 60%, #0A1B2E 100%);
  --grad-ink: radial-gradient(140% 120% at 50% -10%, #16233B 0%, #0A1422 45%, #060B14 100%);
  --grad-emerald: linear-gradient(135deg, #2EE6A0 0%, #16B981 100%);
  --grad-emerald-text: linear-gradient(90deg, #2EE6A0 0%, #6FE3B8 100%);

  --shadow-sm: 0 2px 8px rgba(11, 31, 51, 0.06);
  --shadow-md: 0 12px 30px rgba(11, 31, 51, 0.10);
  --shadow-lg: 0 30px 60px rgba(11, 31, 51, 0.18);
  --shadow-emerald: 0 16px 40px rgba(22, 185, 129, 0.28);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --ff-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --ff-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --container-wide: 1320px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-slate-dark);
  background: var(--c-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-emerald-deep); text-decoration: none; transition: color .2s var(--ease-soft); }
a:hover { color: var(--c-navy); }
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  color: var(--c-navy);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

/* ---------- Layout helpers ---------- */
.po-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.po-container--wide { max-width: var(--container-wide); }
.po-section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.po-section--tight { padding-block: clamp(48px, 6vw, 90px); }

.po-eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--ff-display);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-emerald-deep);
  margin: 0 0 1rem;
}
.po-eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: var(--grad-emerald); border-radius: 2px;
}
.po-section--dark { background: var(--grad-ink); }
.po-section--dark .po-eyebrow { color: var(--c-emerald); }

.po-title { font-size: clamp(1.9rem, 4vw, 3rem); }
.po-section--dark .po-title,
.po-section--dark p { color: var(--c-white); }
.po-section--dark .po-lead { color: rgba(255,255,255,0.78); }
.po-lead { font-size: 1.18rem; color: var(--c-slate); max-width: 60ch; }
.po-head-center { text-align: center; margin-inline: auto; }
.po-head-center .po-eyebrow { justify-content: center; }
.po-head-center .po-lead { margin-inline: auto; }

.po-accent { color: var(--c-emerald-deep); }
.po-section--dark .po-accent { color: var(--c-emerald); }

/* ---------------------------------------------------------------
   SECTION SEAMS: feathered dividers DISABLED — sections now meet with
   a clean, crisp edge (no soft blur band between dark & light sections).
   The pseudo-elements are neutralised; text-colour & z-index rules below
   are preserved.
   --------------------------------------------------------------- */
.po-section--dark,
.po-portal { position: relative; }
.po-section--dark::before,
.po-section--dark::after,
.po-portal::before,
.po-portal::after,
.po-pain::before,
.po-pain::after {
  content: none !important;
  background: none !important;
  height: 0 !important;
  display: none !important;
}
/* keep section content stacking intact */
.po-section--dark > *,
.po-portal > * { position: relative; z-index: 8; }



/* ---------------------------------------------------------------
   GLOBAL FIX: any dark surface forces white headings & text.
   This covers every dark container so headings are never black-on-dark.
   --------------------------------------------------------------- */
.po-section--dark,
.po-hero,
.po-process,
.po-pagehero,
.po-cta__box,
.po-contact-card,
.po-ai-visual,
.po-trust {
  color: rgba(255,255,255,0.82);
}
.po-section--dark h1, .po-section--dark h2, .po-section--dark h3, .po-section--dark h4,
.po-hero h1, .po-hero h2, .po-hero h3,
.po-process h1, .po-process h2, .po-process h3, .po-process h4,
.po-pagehero h1, .po-pagehero h2, .po-pagehero h3,
.po-cta__box h1, .po-cta__box h2, .po-cta__box h3,
.po-contact-card h1, .po-contact-card h2, .po-contact-card h3, .po-contact-card h4,
.po-ai-visual h1, .po-ai-visual h2, .po-ai-visual h3 {
  color: #fff;
}

/* ---------- Buttons ---------- */
.po-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--ff-display); font-weight: 600; font-size: 1rem;
  padding: 0.9em 1.7em; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s, color .25s;
  will-change: transform;
}
.po-btn svg { width: 1.05em; height: 1.05em; }
.po-btn--primary { background: var(--grad-emerald); color: var(--c-navy-deep); box-shadow: var(--shadow-emerald); }
.po-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(22,185,129,.4); color: var(--c-navy-deep); }
.po-btn--ghost { background: transparent; border-color: rgba(255,255,255,.28); color: var(--c-white); }
.po-btn--ghost:hover { border-color: var(--c-emerald); color: var(--c-emerald); transform: translateY(-3px); }
.po-btn--outline { background: transparent; border-color: var(--c-border); color: var(--c-navy); }
.po-btn--outline:hover { border-color: var(--c-emerald); color: var(--c-emerald-deep); transform: translateY(-3px); }

/* =====================================================================
   HEADER
   ===================================================================== */
.po-header {
  position: fixed; inset: 18px 0 auto 0; z-index: 999;
  transition: inset .35s var(--ease-soft);
}
.po-header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: rgba(10, 20, 34, 0.55);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--r-pill);
  padding: 10px 12px 10px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}
.po-header.is-scrolled { inset: 8px 0 auto 0; }
.po-header.is-scrolled .po-header__bar { background: rgba(6, 11, 20, 0.82); }

.po-brand { display: inline-flex; align-items: center; }
.po-brand img { height: 54px; width: auto; transition: height .35s var(--ease-soft); display: block; }
.po-header.is-scrolled .po-brand img { height: 46px; }
.po-brand__site { font-family: var(--ff-display); font-weight: 700; color: #fff; font-size: 1.2rem; letter-spacing: -.02em; }

/* nav: flex row, never collapses, even spacing */
.po-nav { display: flex; align-items: center; }
.po-nav .po-nav-list,
.po-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.po-nav li { margin: 0; }
.po-nav a {
  display: block; font-family: var(--ff-display); font-weight: 500; font-size: .95rem; white-space: nowrap;
  color: rgba(255,255,255,.78); padding: 9px 16px; border-radius: var(--r-pill);
  position: relative; transition: color .2s, background .2s;
}
.po-nav a:hover { color: #fff; background: rgba(255,255,255,.06); }
.po-nav .current-menu-item > a,
.po-nav .current_page_item > a { color: #fff; background: rgba(46,230,160,.12); }
.po-nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--grad-emerald); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out);
}
.po-nav a:hover::after,
.po-nav .current-menu-item > a::after,
.po-nav .current_page_item > a::after { transform: scaleX(1); }

.po-header__cta { display: flex; align-items: center; gap: 10px; }
.po-header__cta .po-btn { padding: .62em 1.25em; font-size: .9rem; }

.po-burger { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 10px; }
.po-burger span { display: block; height: 2px; background: #fff; border-radius: 2px; margin: 5px 0; transition: transform .3s var(--ease-out), opacity .3s; }
.po-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.po-burger.is-open span:nth-child(2) { opacity: 0; }
.po-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* Mobile nav panel */
.po-mobile-nav {
  position: fixed; inset: 0; z-index: 998;
  background: var(--grad-navy);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 80px var(--gutter) 40px;
  transform: translateX(100%); transition: transform .4s var(--ease-out);
}
.po-mobile-nav.is-open { transform: translateX(0); }
.po-mobile-nav a { color: #fff; font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--c-navy-line); }
.po-mobile-nav .po-btn { margin-top: 24px; align-self: flex-start; }

/* =====================================================================
   HERO (Section 1) — AetherGuard-style: glowing orb, centered copy,
   glassmorphic stat cards, optional video background + overlay control.
   ===================================================================== */
.po-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--grad-ink);
  color: #fff; overflow: hidden;
  padding: 160px 0 60px; text-align: center;
}

/* video / image background layer */
.po-hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.po-hero__bg video, .po-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.po-hero__overlay { position: absolute; inset: 0; z-index: 1; background: var(--c-ink); opacity: var(--hero-overlay, .6); }

.po-hero__layers { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* The glowing orb — layered radial gradients + slow drift + conic sheen */
.po-orb {
  position: absolute; top: -18%; left: 50%; transform: translateX(-50%);
  width: min(900px, 120vw); aspect-ratio: 1 / 0.82; z-index: 1; pointer-events: none;
  filter: blur(2px);
}
.po-orb::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(closest-side at 50% 42%, rgba(46,230,160,.55), rgba(37,99,235,.28) 45%, transparent 72%),
    radial-gradient(closest-side at 60% 55%, rgba(37,99,235,.55), transparent 70%);
  filter: blur(30px);
  animation: po-orb-breathe 9s var(--ease-soft) infinite;
}
.po-orb::after {
  content: ""; position: absolute; inset: 8% 8% 14%; border-radius: 50%;
  background: conic-gradient(from 200deg, rgba(46,230,160,.0), rgba(46,230,160,.35), rgba(37,99,235,.45), rgba(46,230,160,.0));
  mask: radial-gradient(closest-side, transparent 58%, #000 60%, #000 78%, transparent 82%);
  -webkit-mask: radial-gradient(closest-side, transparent 58%, #000 60%, #000 78%, transparent 82%);
  filter: blur(6px); opacity: .8;
  animation: po-orb-spin 24s linear infinite;
}
.po-orb__ridges {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden; opacity: .5;
  background: repeating-radial-gradient(circle at 50% 42%, rgba(255,255,255,.05) 0 2px, transparent 2px 16px);
  mask: radial-gradient(closest-side, #000 30%, transparent 72%);
  -webkit-mask: radial-gradient(closest-side, #000 30%, transparent 72%);
}
@keyframes po-orb-breathe { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.06); opacity: 1; } }
@keyframes po-orb-spin { to { transform: rotate(360deg); } }

.po-hero__grid {
  position: absolute; inset: 0; opacity: .3; z-index: 1;
  background-image:
    linear-gradient(rgba(46,230,160,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,230,160,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000, transparent 78%);
}
.po-hero__vignette { position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse 80% 70% at 50% 0%, transparent 40%, rgba(6,11,20,.85) 100%); }

/* centered hero content */
.po-hero__inner { position: relative; z-index: 3; width: 100%; max-width: 880px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.po-hero__pill {
  display: inline-flex; align-items: center; gap: .6em;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  color: var(--c-emerald-soft); padding: .5em 1.1em; border-radius: var(--r-pill);
  font-family: var(--ff-display); font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  margin-bottom: 30px;
}
.po-hero__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-emerald); box-shadow: 0 0 0 0 rgba(46,230,160,.6); animation: po-pulse 2.4s infinite; }
@keyframes po-pulse { 0% { box-shadow: 0 0 0 0 rgba(46,230,160,.5); } 70% { box-shadow: 0 0 0 10px rgba(46,230,160,0); } 100% { box-shadow: 0 0 0 0 rgba(46,230,160,0);} }

.po-hero h1 { color: #fff; font-size: clamp(2.6rem, 6.2vw, 5rem); font-weight: 700; line-height: 1.04; margin-bottom: 24px; letter-spacing: -.03em; }
.po-hero h1 .grad { background: var(--grad-emerald-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.po-hero__lead { font-size: 1.22rem; color: rgba(255,255,255,.78); max-width: 56ch; margin: 0 auto 36px; }
.po-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 56px; }

/* glassmorphic stat cards row (like the reference) */
.po-hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; width: 100%; max-width: 940px;
  background: var(--glass-bg-2); border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--glass-shadow);
}
.po-hstat { padding: 26px 22px; position: relative; text-align: center; }
.po-hstat + .po-hstat::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: var(--glass-line); }
.po-hstat .num { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.po-hstat .num .grad { background: var(--grad-emerald-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.po-hstat .lbl { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 8px; }

.po-hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,.55); font-size: .72rem; font-family: var(--ff-display); letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.po-hero__scroll .mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.3); border-radius: 12px; position: relative; }
.po-hero__scroll .mouse::after { content: ""; position: absolute; left: 50%; top: 6px; width: 3px; height: 7px; background: var(--c-emerald); border-radius: 2px; transform: translateX(-50%); animation: po-scroll 1.8s infinite; }
@keyframes po-scroll { 0% { opacity: 0; transform: translate(-50%, 0);} 40% { opacity: 1;} 100% { opacity: 0; transform: translate(-50%, 12px);} }

/* =====================================================================
   PRELOADER (intro) — bar wipe + centered logo, then fade out
   ===================================================================== */
.po-preloader { position: fixed; inset: 0; z-index: 9999; pointer-events: none; background: var(--c-ink); display: grid; place-items: center; }
.po-preloader__bar { position: absolute; inset: 0; height: 100svh; width: 100%; z-index: 1; transform-origin: left; transform: scaleX(0); background: linear-gradient(90deg, rgba(46,230,160,.16), rgba(37,99,235,.16)); }
.po-preloader__logo { position: relative; z-index: 2; display: grid; place-items: center; padding: 0 24px; }
.po-preloader__logo-text {
  margin: 0; text-align: center; font-family: var(--ff-display);
  font-size: clamp(2.2rem, 8vw, 5rem); font-weight: 700; line-height: 1; letter-spacing: -.02em;
  background: var(--grad-emerald-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  white-space: nowrap; visibility: hidden;
}
.po-preloader__mask { display: none; } /* keyhole mask removed — full name now visible */

/* char / word reveal primitives (free SplitText replacement) */
.po-char-mask, .po-word-mask { display: inline-block; overflow: hidden; vertical-align: top; line-height: 1; }
.po-char, .po-word { display: inline-block; will-change: transform; }

/* SAFETY NET: if JS/GSAP fails, CSS still reveals content + hides preloader.
   The .js class is added by hero-intro.js the moment it runs; when present,
   JS takes over and these fallbacks are suppressed. */
[data-text-anim] { visibility: hidden; }
.po-no-js [data-text-anim],
html:not(.po-js) [data-text-anim] { visibility: visible; animation: po-fallback-in .8s ease both; }
html:not(.po-js) [data-fade-in] { animation: po-fallback-in .8s ease both; }
html:not(.po-js) #po-preloader { animation: po-fallback-hide .6s ease 2s forwards; }
@keyframes po-fallback-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes po-fallback-hide { to { opacity: 0; visibility: hidden; } }

/* =====================================================================
   HERO v2 — reference-style: full-bleed media, headline, marquee CTA card
   ===================================================================== */
.po-hero2 {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--grad-ink); color: #fff; overflow: hidden; padding: 150px 0 50px;
}
.po-hero2__img { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--c-ink); }
.po-hero2__img video, .po-hero2__img img { display: block; width: 100%; height: 100%; object-fit: cover; transform: scale(1.18); will-change: transform; }
.po-hero2__orb { position: absolute; top: -16%; left: 50%; transform: translateX(-50%); width: min(900px, 130vw); aspect-ratio: 1/.82; }
.po-hero2__orb::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(closest-side at 50% 42%, rgba(46,230,160,.5), rgba(37,99,235,.25) 45%, transparent 72%); filter: blur(34px); animation: po-orb-breathe 9s var(--ease-soft) infinite; }
.po-hero2__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(6,11,20,.55) 0%, rgba(6,11,20,.2) 40%, rgba(6,11,20,.9) 100%); opacity: calc(.5 + var(--hero-overlay, .6) * .5); }
.po-hero2__grid { position: absolute; inset: 0; z-index: 1; opacity: .25; background-image: linear-gradient(rgba(46,230,160,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(46,230,160,.06) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000, transparent 80%); -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000, transparent 80%); }

.po-hero2 .po-container { position: relative; z-index: 3; width: 100%; }
.po-hero2__content { display: flex; justify-content: space-between; align-items: flex-end; gap: 36px; margin-bottom: 40px; }
.po-hero2__sub { max-width: 340px; color: #fff; font-size: 1.15rem; font-weight: 600; line-height: 1.35; font-family: var(--ff-display); }
.po-hero2 h1 { color: #fff; font-size: clamp(2.6rem, 8vw, 6.2rem); font-weight: 700; line-height: .92; letter-spacing: -.03em; margin: 0; }
.po-hero2 h1.grad-line { background: var(--grad-emerald-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* CTA card with marquee (right side) */
.po-hero2__cta { position: relative; width: min(300px, 36vw); border-radius: var(--r-lg); overflow: hidden; background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); box-shadow: var(--glass-shadow); flex: none; }
.po-hero2__marquee { background: rgba(46,230,160,.1); display: flex; overflow: hidden; }
.po-marquee-group { display: flex; align-items: center; gap: 10px; white-space: nowrap; width: max-content; padding: 10px 5px; animation: po-mscroll 22s linear infinite; color: var(--c-emerald); font-family: var(--ff-display); font-weight: 600; font-size: .92rem; }
.po-marquee-group svg { width: 16px; height: 16px; }
@keyframes po-mscroll { to { transform: translateX(calc(-100% - 10px)); } }
.po-hero2__card { padding: 20px; }
.po-hero2__card p { color: rgba(255,255,255,.78); font-size: .92rem; margin-bottom: 14px; }
.po-hero2__card .po-btn { width: 100%; }

/* glass stat row */
.po-hero2__stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--glass-bg-2); border: 1px solid var(--glass-border); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--glass-shadow); }
.po-hero2__stats .po-hstat { padding: 22px 20px; position: relative; text-align: center; }
.po-hero2__stats .po-hstat + .po-hstat::before { content: ""; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px; background: var(--glass-line); }
.po-hero2__stats .num { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1; }
.po-hero2__stats .num .grad { background: var(--grad-emerald-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.po-hero2__stats .lbl { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 8px; }

@media (max-width: 900px) {
  .po-hero2__content { flex-direction: column; align-items: flex-start; }
  .po-hero2__cta { width: 100%; max-width: 360px; }
  .po-hero2__stats { grid-template-columns: repeat(2, 1fr); }
  .po-hero2__stats .po-hstat:nth-child(3)::before { display: none; }
  .po-hero2__stats .po-hstat:nth-child(3), .po-hero2__stats .po-hstat:nth-child(4) { border-top: 1px solid var(--glass-line); }
}


/* =====================================================================

   TRUST BAR (Section 2)
   ===================================================================== */
.po-trust { background: var(--c-ink); border-top: 1px solid var(--glass-line); padding-block: 30px; }
.po-trust__label { text-align: center; color: rgba(255,255,255,.5); font-family: var(--ff-display); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 22px; }
.po-trust__track { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 16px; }
.po-trust__chip { color: rgba(255,255,255,.78); border: 1px solid var(--c-navy-line); border-radius: var(--r-pill); padding: .55em 1.2em; font-size: .92rem; font-family: var(--ff-display); transition: border-color .3s, color .3s, transform .3s; }
.po-trust__chip:hover { border-color: var(--c-emerald); color: var(--c-emerald); transform: translateY(-2px); }

/* =====================================================================
   WHAT WE DO (Section 3) — service grid
   ===================================================================== */
.po-grid { display: grid; gap: 22px; }
.po-grid--3 { grid-template-columns: repeat(3, 1fr); }
.po-grid--4 { grid-template-columns: repeat(4, 1fr); }
.po-grid--2 { grid-template-columns: repeat(2, 1fr); }

.po-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: 30px; position: relative; overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
}
.po-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-emerald); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out); }
.po-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.po-card:hover::before { transform: scaleX(1); }
.po-card__ic { width: 56px; height: 56px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--c-mist); color: var(--c-emerald-deep); margin-bottom: 20px; transition: background .35s, color .35s, transform .35s; }
.po-card:hover .po-card__ic { background: var(--grad-emerald); color: var(--c-navy-deep); transform: rotate(-6deg) scale(1.05); }
.po-card__ic svg { width: 28px; height: 28px; }
.po-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.po-card p { color: var(--c-slate); font-size: .98rem; margin: 0; }

/* =====================================================================
   COVERAGE (Section 4) — marquee + tag cloud
   ===================================================================== */
.po-section--mist { background: var(--c-mist-2); }
.po-coverage__cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.po-tag {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-pill);
  padding: .6em 1.3em; font-family: var(--ff-display); font-weight: 500; font-size: .95rem; color: var(--c-navy);
  transition: transform .3s var(--ease-out), border-color .3s, color .3s, background .3s; cursor: default;
}
.po-tag:hover { transform: translateY(-3px); border-color: var(--c-emerald); color: var(--c-emerald-deep); background: #fff; box-shadow: var(--shadow-sm); }

/* =====================================================================
   PROCESS (Section 5) — animated vertical process
   ===================================================================== */
.po-vprocess { background: var(--grad-ink); position: relative; overflow: hidden; }
/* Two-column: image left, steps right */
.po-vprocess__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}
.po-vprocess__media { position: relative; }
.po-vprocess__media-inner {
  position: relative;
  height: 100%;
  min-height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--c-ink-2);
  border: 1px solid var(--c-navy-line);
}
.po-vprocess__media-inner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.po-vprocess__media-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  padding: 32px; text-align: center;
  color: var(--c-slate);
  background: linear-gradient(135deg, rgba(46,230,160,.08), var(--c-ink-2));
}
.po-vprocess__media-ph svg { width: 44px; height: 44px; color: var(--c-emerald); opacity: .8; }
.po-vprocess__media-ph span { font-size: .9rem; line-height: 1.5; max-width: 260px; }
.po-vprocess__content { min-width: 0; }
.po-vprocess__track {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding-left: 96px;
}
.po-vprocess__line {
  position: absolute;
  left: 29px; top: 18px; bottom: 18px;
  width: 2px;
  background: var(--c-navy-line);
  z-index: 0;
}
.po-vprocess__fill {
  position: absolute; left: 0; top: 0;
  width: 100%; height: 0%;
  background: var(--grad-emerald);
  box-shadow: 0 0 16px rgba(46,230,160,.5);
  transition: height .12s linear;
}
.po-vstep {
  position: relative;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.po-vstep:last-child { margin-bottom: 0; }
.po-vstep.is-inview { opacity: 1; transform: translateY(0); }
.po-vstep__ghost {
  position: absolute;
  left: 66px; top: -46px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 108px;
  line-height: 1;
  letter-spacing: 1px;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-navy-line);
  pointer-events: none;
  z-index: 0;
}
.po-vstep__node {
  position: absolute;
  left: -96px; top: 0;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-ink-2);
  border: 2px solid var(--c-navy-line);
  color: var(--c-slate);
  transition: all .5s var(--ease-out);
  z-index: 2;
}
.po-vstep__node svg { width: 26px; height: 26px; }
.po-vstep.is-inview .po-vstep__node {
  border-color: var(--c-emerald);
  color: var(--c-emerald);
  box-shadow: 0 0 0 6px rgba(46,230,160,.08);
}
.po-vstep__body { position: relative; z-index: 1; padding-top: 6px; }
.po-vstep__body h3 {
  font-family: var(--ff-display);
  letter-spacing: -.01em;
  font-weight: 700;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0 10px;
}
.po-vstep__body p { color: rgba(255,255,255,.7); font-weight: 400; font-size: 1.02rem; line-height: 1.7; margin: 0; max-width: 540px; }

/* =====================================================================
   AI CAPABILITIES (Section 6) — split feature
   ===================================================================== */
.po-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.po-feature-list { display: grid; gap: 14px; margin-top: 8px; }
.po-feature {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 18px 20px;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.po-feature:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); border-color: var(--c-emerald-soft); }
.po-feature .ic { width: 42px; height: 42px; flex: none; border-radius: 11px; background: var(--c-mist); color: var(--c-emerald-deep); display: grid; place-items: center; }
.po-feature .ic svg { width: 22px; height: 22px; }
.po-feature b { font-family: var(--ff-display); color: var(--c-navy); display: block; margin-bottom: 2px; }
.po-feature span { color: var(--c-slate); font-size: .92rem; }
.po-ai-visual { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--grad-navy); padding: 36px; color: #fff; box-shadow: var(--shadow-lg); }
.po-ai-visual h3 { color: #fff; }
.po-ai-bar { height: 10px; border-radius: var(--r-pill); background: rgba(255,255,255,.08); overflow: hidden; margin: 10px 0 18px; }
.po-ai-bar i { display: block; height: 100%; border-radius: inherit; background: var(--grad-emerald); width: 0; transition: width 1.2s var(--ease-out); }
.po-ai-row { display: flex; justify-content: space-between; font-size: .9rem; color: rgba(255,255,255,.7); }
.po-ai-row b { color: #fff; font-family: var(--ff-display); }

/* =====================================================================
   WHY CHOOSE (Section 7)
   ===================================================================== */
.po-why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 8px; }
.po-why__item {
  display: flex; gap: 12px; align-items: center; padding: 16px 18px;
  border-radius: var(--r-md); border: 1px solid var(--c-border);
  background: var(--c-mist-2);
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.po-why__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-emerald-soft); }
.po-why__item .tick { width: 28px; height: 28px; flex: none; border-radius: 50%; background: var(--grad-emerald); color: var(--c-navy-deep); display: grid; place-items: center; }
.po-why__item .tick svg { width: 15px; height: 15px; }
.po-why__item p { margin: 0; color: var(--c-slate-dark); font-weight: 500; line-height: 1.35; }

/* =====================================================================
   ROLES — animated tabs
   ===================================================================== */
.po-roles__tabs {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin: 44px auto 36px;
}
.po-roles__tab {
  border: 1px solid var(--c-border); background: var(--c-mist-2);
  padding: 11px 20px; border-radius: var(--r-pill);
  font-family: var(--ff-display); font-size: .95rem; font-weight: 500;
  letter-spacing: .01em; color: var(--c-slate-dark); cursor: pointer;
  transition: all .25s var(--ease-soft);
}
.po-roles__tab:hover { border-color: var(--c-emerald-soft); color: var(--c-navy-deep); }
.po-roles__tab.is-active {
  background: var(--c-navy-deep); border-color: var(--c-navy-deep); color: #fff;
  box-shadow: var(--shadow-md);
}
.po-roles__content {
  position: relative; display: grid; grid-template-columns: 1fr;
  max-width: 880px; margin: 0 auto; min-height: 4.5em;
}
.po-roles__panel {
  grid-column: 1; grid-row: 1; text-align: center;
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem); font-weight: 600;
  line-height: 1.3; letter-spacing: -.02em; color: var(--c-navy-deep);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease-soft);
}
.po-roles__panel.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.po-roles__line { overflow: hidden; display: block; }
@media (max-width: 560px) {
  .po-roles__tab { padding: 9px 15px; font-size: .85rem; }
  .po-roles__content { min-height: 7em; }
}

/* =====================================================================
   HYPE HEADLINE BAND (inline-image headline, scroll reveal)
   ===================================================================== */
.po-hype { background: var(--c-ink); position: relative; }
.po-hype__sticky {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px; box-sizing: border-box; overflow: hidden;
}
.po-hype__head {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 62px;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
  max-width: 1000px;
  text-wrap: balance;
}
.po-hype__head .t-w {
  display: inline-block; color: #fff;
  will-change: color;
}
/* image chips start collapsed; GSAP scrubs width + image in on scroll */
.po-hype__head .i-r {
  display: inline-flex; align-items: center; justify-content: center;
  width: 0px; height: 0.78em;
  vertical-align: middle; overflow: hidden;
  margin: 0; border-radius: 14px;
  background: linear-gradient(135deg, var(--c-navy-panel), var(--c-ink-2));
  will-change: width, margin;
}
.po-hype__head .i-r img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block;
  transform: scale(1.15); opacity: 0;
  will-change: transform, opacity;
}
.po-hype__head .i-r.is-empty {
  background: linear-gradient(135deg, rgba(46,230,160,.18), var(--c-ink-2));
  border: 1px solid rgba(46,230,160,.25);
}
/* no-GSAP / reduced-motion fallback: render statically, fully visible */
.po-hype.is-static .po-hype__head .i-r { width: clamp(60px, 8vw, 120px); margin: 0 .22em; }
.po-hype.is-static .po-hype__head .i-r img { transform: none; opacity: 1; }

@media (max-width: 1024px) {
  .po-hype__head { font-size: clamp(34px, 5.6vw, 56px); }
}
@media (max-width: 768px) {
  .po-hype__sticky { min-height: 0; height: auto; padding: 56px 18px; overflow: visible; }
  .po-hype__head { font-size: clamp(26px, 7vw, 40px); line-height: 1.35; }
  .po-hype__head .i-r { border-radius: 9px; }
  .po-hype__head .i-r img { border-radius: 9px; }
  .po-hype.is-static .po-hype__head .i-r { width: 64px; margin: 0 .2em; }
}

/* =====================================================================
   PAIN POINTS GRID
   ===================================================================== */
.po-pain { background: var(--grad-navy); }
.po-pain__grid { display: grid; grid-template-columns: 1fr; gap: 3rem 3.5rem; }
.po-pain__item { position: relative; padding-right: 1rem; }
.po-pain__ghost {
  position: absolute; right: 0; top: 30%;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 5.5rem; line-height: 1; letter-spacing: 1px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.10);
  pointer-events: none;
  transition: -webkit-text-stroke .5s ease, color .5s ease, transform .5s ease;
  z-index: 0;
}
.po-pain__item:hover .po-pain__ghost {
  -webkit-text-stroke: 1px rgba(46,230,160,0.55);
  color: rgba(46,230,160,0.07);
  transform: translateY(-4px) scale(1.04);
}
.po-pain__h {
  position: relative; z-index: 1;
  font-family: var(--ff-display); font-weight: 700;
  color: #fff; font-size: 1.4rem; letter-spacing: 0; line-height: 1.15;
  margin: 0 0 1rem; display: inline-block;
}
.po-pain__h::after {
  content: ""; display: block; width: 0; height: 2px;
  background: var(--c-emerald); margin-top: .6rem;
  transition: width .45s var(--ease-out);
}
.po-pain__item:hover .po-pain__h::after { width: 48px; }
.po-pain__p {
  position: relative; z-index: 1;
  color: rgba(255,255,255,.7); font-size: .98rem; line-height: 1.7;
  font-weight: 400; margin: 0; max-width: 34ch;
}
.po-pain__cta {
  margin-top: 4rem; padding: 2.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.po-pain__cta p {
  color: rgba(255,255,255,.88); font-size: 1.1rem; line-height: 1.6;
  font-weight: 400; margin: 0 auto; max-width: 780px;
}
.po-pain__cta strong {
  font-family: var(--ff-display); font-weight: 700;
  color: var(--c-emerald); letter-spacing: 0; font-size: 1.2rem;
}
@media (min-width: 720px) { .po-pain__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .po-pain__grid { grid-template-columns: repeat(3, 1fr); gap: 4rem 3.5rem; }
  .po-pain__h { font-size: 1.55rem; }
  .po-pain__ghost { font-size: 6.5rem; }
}

/* Vertical process — mobile */
@media (max-width: 768px) {
  .po-vprocess__layout { grid-template-columns: 1fr; gap: 36px; }
  .po-vprocess__media-inner { position: static; min-height: 0; height: 320px; }
  .po-vprocess__track { padding-left: 60px; max-width: 100%; }
  .po-vprocess__line { left: 20px; }
  .po-vstep__node { left: -60px; width: 46px; height: 46px; }
  .po-vstep__node svg { width: 20px; height: 20px; }
  .po-vstep__ghost { left: 2px; top: -34px; font-size: 64px; }
  .po-vstep__body { padding-top: 2px; }
  .po-vstep__body h3 { font-size: 1.3rem; }
  .po-vstep__body p { font-size: .96rem; max-width: 100%; }
  .po-vstep { margin-bottom: 48px; }
}

/* =====================================================================
   WHO WE SERVE (Section 8)
   ===================================================================== */
.po-serve { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
.po-serve__cell {
  border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 22px 18px; text-align: center; background: #fff;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s, color .35s;
}
.po-serve__cell:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--c-emerald-soft); }
.po-serve__cell .ic { width: 48px; height: 48px; margin: 0 auto 12px; border-radius: var(--r-md); background: var(--c-mist); color: var(--c-emerald-deep); display: grid; place-items: center; transition: background .3s, color .3s; }
.po-serve__cell:hover .ic { background: var(--grad-emerald); color: var(--c-navy-deep); }
.po-serve__cell .ic svg { width: 24px; height: 24px; }
.po-serve__cell b { font-family: var(--ff-display); color: var(--c-navy); font-size: .98rem; }

/* =====================================================================
   VALUES (Section 9)
   ===================================================================== */
.po-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.po-value {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 28px;
  position: relative; transition: transform .4s var(--ease-out), box-shadow .4s;
}
.po-value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.po-value__n { font-family: var(--ff-display); font-weight: 700; font-size: 1rem; color: var(--c-emerald-deep); opacity: .5; }
.po-value h3 { font-size: 1.2rem; margin: 6px 0 .4rem; }
.po-value p { color: var(--c-slate); font-size: .95rem; margin: 0; }

/* =====================================================================
   CTA (Section 10)
   ===================================================================== */
.po-cta { position: relative; overflow: hidden; }
.po-cta__box {
  background: var(--grad-navy); border-radius: var(--r-lg); padding: clamp(40px, 6vw, 76px);
  text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.po-cta__box::before { content: ""; position: absolute; top: -40%; right: -10%; width: 50%; height: 180%; background: radial-gradient(closest-side, rgba(46,230,160,.22), transparent 70%); }
.po-cta__box::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(46,230,160,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(46,230,160,.05) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 75%); }
.po-cta__inner { position: relative; z-index: 2; }
.po-cta h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 14px; }
.po-cta p { color: rgba(255,255,255,.8); font-size: 1.18rem; max-width: 56ch; margin: 0 auto 32px; }
.po-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================================================================
   FOOTER
   ===================================================================== */
/* ---- Footer as one floating WHITE card containing the CTA banner + footer body ---- */
.po-footer {
  background: var(--c-ink);
  color: var(--c-slate-dark);
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 48px) clamp(24px, 4vw, 48px);
}
.po-footer__shell {
  max-width: 1340px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
  border: 1px solid var(--c-border, rgba(11,31,51,.10));
}

/* CTA banner across the top of the card */
.po-fcta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
  padding: clamp(40px, 5vw, 72px) clamp(32px, 5vw, 80px);
  background:
    radial-gradient(120% 180% at 100% 0%, rgba(46,230,160,0.18) 0%, rgba(46,230,160,0) 55%),
    linear-gradient(135deg, #F6F9F8 0%, #EEF3F2 100%);
  border-bottom: 1px solid var(--c-border, rgba(11,31,51,.10));
  overflow: hidden;
}
.po-fcta__glow {
  position: absolute;
  width: 420px; height: 420px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(46,230,160,0.30), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.po-fcta__text { position: relative; z-index: 1; max-width: 620px; }
.po-fcta__badge {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--ff-display);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-emerald-deep);
  padding: 6px 15px; border-radius: 999px;
  background: rgba(46,230,160,0.12);
  border: 1px solid rgba(22,185,129,0.35);
  margin-bottom: 18px;
}
.po-fcta__title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-navy-deep);
  margin: 0 0 12px;
}
.po-fcta__text p {
  color: var(--c-slate, #5a6b7b);
  font-size: 1.04rem;
  line-height: 1.65;
  margin: 0;
}
.po-fcta__actions {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  gap: 12px; flex: none;
}
.po-fcta__actions .po-btn { justify-content: center; white-space: nowrap; }
.po-fcta__ghost {
  color: var(--c-navy-deep);
  border: 1px solid rgba(11,31,51,0.22);
  background: transparent;
}
.po-fcta__ghost:hover { border-color: var(--c-emerald-deep); color: var(--c-emerald-deep); }

/* Footer body inside the same card */
.po-footer__body { padding: clamp(48px, 5vw, 70px) clamp(32px, 5vw, 80px) clamp(28px, 3vw, 38px); }
.po-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--c-border, rgba(11,31,51,.10)); }
.po-footer img.brand { height: 52px; margin-bottom: 18px; }
.po-footer p { font-size: .95rem; color: var(--c-slate, #5a6b7b); }
.po-footer h4 { color: var(--c-navy-deep); font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.po-footer ul li { margin-bottom: 10px; }
.po-footer ul a { color: var(--c-slate, #5a6b7b); font-size: .95rem; }
.po-footer ul a:hover { color: var(--c-emerald-deep); }
.po-footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; margin-bottom: 12px; color: var(--c-slate, #5a6b7b); }
.po-footer__contact a { color: var(--c-slate, #5a6b7b); }
.po-footer__contact a:hover { color: var(--c-emerald-deep); }
.po-footer__contact svg { width: 18px; height: 18px; flex: none; color: var(--c-emerald-deep); margin-top: 3px; }
.po-footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 24px; font-size: .88rem; color: var(--c-slate, #7a8895); }
.po-social { display: flex; gap: 10px; }
.po-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(11,31,51,.16); display: grid; place-items: center; color: var(--c-slate, #5a6b7b); transition: all .3s; }
.po-social a:hover { border-color: var(--c-emerald-deep); color: var(--c-emerald-deep); transform: translateY(-3px); }
.po-social svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .po-fcta { flex-direction: column; align-items: flex-start; }
  .po-fcta__actions { flex-direction: row; flex-wrap: wrap; width: 100%; }
  .po-fcta__actions .po-btn { flex: 1 1 auto; }
}
@media (max-width: 600px) {
  .po-footer { padding-inline: 12px; }
  .po-footer__shell { border-radius: 24px; }
  .po-fcta__actions { flex-direction: column; }
  .po-fcta__actions .po-btn { width: 100%; }
}

/* =====================================================================
   PAGE HERO (interior pages) + content
   ===================================================================== */
.po-pagehero { background: var(--grad-navy); color: #fff; padding: 160px 0 80px; position: relative; overflow: hidden; }
.po-pagehero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(ellipse 50% 60% at 80% 20%, rgba(46,230,160,.14), transparent 70%); }
.po-pagehero__inner { position: relative; z-index: 2; }
.po-pagehero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.po-pagehero p { color: rgba(255,255,255,.8); font-size: 1.15rem; max-width: 60ch; }
.po-breadcrumb { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 18px; font-family: var(--ff-display); }
.po-breadcrumb a { color: var(--c-emerald-soft); }

.po-content { max-width: 760px; margin-inline: auto; }
.po-content h2 { font-size: 1.7rem; margin-top: 1.8em; }
.po-content h3 { font-size: 1.3rem; margin-top: 1.4em; }
.po-content img { border-radius: var(--r-md); margin: 1.5em 0; }
.po-content ul:not([class]) { list-style: none; margin: 1em 0; }
.po-content ul:not([class]) li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.po-content ul:not([class]) li::before { content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 12px; border-radius: 3px; background: var(--grad-emerald); transform: rotate(45deg); }
.po-content blockquote { border-left: 4px solid var(--c-emerald); background: var(--c-mist-2); padding: 18px 24px; border-radius: 0 var(--r-md) var(--r-md) 0; margin: 1.5em 0; font-style: italic; color: var(--c-navy); }

/* ---------- Blog ---------- */
.po-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.po-post { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; transition: transform .4s var(--ease-out), box-shadow .4s; display: flex; flex-direction: column; }
.po-post:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.po-post__thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--c-mist); }
.po-post__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.po-post:hover .po-post__thumb img { transform: scale(1.06); }
.po-post__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.po-post__meta { font-size: .8rem; color: var(--c-emerald-deep); font-family: var(--ff-display); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px; }
.po-post h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.po-post h3 a { color: var(--c-navy); }
.po-post h3 a:hover { color: var(--c-emerald-deep); }
.po-post p { color: var(--c-slate); font-size: .95rem; }
.po-post__more { margin-top: auto; font-family: var(--ff-display); font-weight: 600; color: var(--c-emerald-deep); font-size: .92rem; }

.po-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 50px; }
.po-pagination .page-numbers { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 10px; border-radius: var(--r-sm); border: 1px solid var(--c-border); font-family: var(--ff-display); color: var(--c-navy); }
.po-pagination .page-numbers.current, .po-pagination .page-numbers:hover { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }

/* ---------- Contact ---------- */
.po-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.po-contact-card { background: var(--grad-navy); color: #fff; border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow-lg); }
.po-contact-card h3 { color: #fff; }
.po-contact-card__row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--c-navy-line); }
.po-contact-card__row:last-child { border-bottom: 0; }
.po-contact-card__row .ic { width: 44px; height: 44px; flex: none; border-radius: var(--r-md); background: rgba(46,230,160,.12); color: var(--c-emerald); display: grid; place-items: center; }
.po-contact-card__row .ic svg { width: 22px; height: 22px; }
.po-contact-card__row b { color: #fff; font-family: var(--ff-display); display: block; }
.po-contact-card__row a, .po-contact-card__row span { color: rgba(255,255,255,.75); }

/* Generic form styling (used by plugin shortcodes too) */
.po-form { display: grid; gap: 16px; }
.po-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.po-field label { display: block; font-family: var(--ff-display); font-weight: 500; font-size: .9rem; color: var(--c-navy); margin-bottom: 6px; }
.po-field input, .po-field select, .po-field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--c-border); border-radius: var(--r-md);
  font-family: var(--ff-body); font-size: 1rem; color: var(--c-navy); background: #fff;
  transition: border-color .25s, box-shadow .25s;
}
.po-field input:focus, .po-field select:focus, .po-field textarea:focus {
  outline: none; border-color: var(--c-emerald); box-shadow: 0 0 0 4px rgba(46,230,160,.15);
}
.po-field textarea { min-height: 130px; resize: vertical; }

/* =====================================================================
   SCROLL REVEAL — base states (JS adds .is-revealed)
   ===================================================================== */
.po-reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.po-reveal.is-revealed { opacity: 1; transform: none; }
.po-reveal[data-reveal="left"] { transform: translateX(-40px); }
.po-reveal[data-reveal="right"] { transform: translateX(40px); }
.po-reveal[data-reveal="scale"] { transform: scale(.94); }
.po-reveal.is-revealed[data-reveal="left"],
.po-reveal.is-revealed[data-reveal="right"],
.po-reveal.is-revealed[data-reveal="scale"] { transform: none; }
.po-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.po-stagger.is-revealed > * { opacity: 1; transform: none; }

/* skip link + a11y */
.po-skip { position: absolute; left: -999px; top: 0; background: var(--c-emerald); color: var(--c-navy-deep); padding: 10px 16px; border-radius: 0 0 var(--r-sm) 0; z-index: 1000; font-family: var(--ff-display); }
.po-skip:focus { left: 0; }
:focus-visible { outline: 3px solid var(--c-emerald); outline-offset: 2px; border-radius: 4px; }

/* =====================================================================
   SIDE MEDIA — uploadable image slots in split sections (AI, Why)
   ===================================================================== */
.po-side-media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--c-mist); }
.po-side-media--tall { aspect-ratio: 3/4; max-height: 520px; }
.po-side-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.po-side-media__ph { width: 100%; height: 100%; display: grid; place-items: center; gap: 12px; text-align: center; padding: 30px; background: linear-gradient(150deg, var(--c-mist-2), var(--c-mist)); color: var(--c-slate); border: 2px dashed var(--c-border); }
.po-side-media__ph .po-ph-ic { width: 48px; height: 48px; color: var(--c-emerald-deep); }
.po-side-media__ph span { font-size: .9rem; max-width: 28ch; }
#why .po-why { grid-template-columns: 1fr 1fr; }
#why .po-split { align-items: stretch; }
#why .po-side-media--tall { height: 100%; max-height: none; aspect-ratio: auto; }
/* Services page "Why ProcuraOne" split: image stretches to content height */
#why-services .po-split { align-items: stretch; }
#why-services .po-split > .po-reveal[data-reveal="right"] { display: flex; }
#why-services .po-side-media--tall { height: 100%; max-height: none; aspect-ratio: auto; min-height: 420px; width: 100%; }
/* AI section: only the IMAGE column stretches to match the text column height */
#ai .po-split { align-items: stretch; }
#ai .po-split > .po-reveal[data-reveal="right"] { display: flex; }
#ai .po-side-media { height: 100%; aspect-ratio: auto; min-height: 360px; width: 100%; }
@media (max-width: 768px) { #why .po-why { grid-template-columns: 1fr; } }

/* =====================================================================
   ABOUT (homepage section 2) — copy + uploadable image
   ===================================================================== */
.po-about-home__points { display: grid; gap: 12px; margin: 22px 0; }
.po-about-home__pt { display: flex; gap: 12px; align-items: center; }
.po-about-home__pt .tick { width: 28px; height: 28px; flex: none; border-radius: 50%; background: var(--grad-emerald); color: var(--c-navy-deep); display: grid; place-items: center; }
.po-about-home__pt .tick svg { width: 15px; height: 15px; }
.po-about-home__pt p { margin: 0; font-weight: 500; color: var(--c-slate-dark); }
.po-about-home__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.po-about-home__media img { width: 100%; height: 100%; object-fit: cover; }
.po-about-home__placeholder { width: 100%; height: 100%; display: grid; place-items: center; gap: 12px; text-align: center; padding: 30px; background: linear-gradient(150deg, var(--c-mist-2), var(--c-mist)); color: var(--c-slate); border: 2px dashed var(--c-border); }
.po-about-home__placeholder .po-ph-ic { width: 48px; height: 48px; color: var(--c-emerald-deep); }
.po-about-home__placeholder span { font-size: .9rem; max-width: 30ch; }
.po-about-home__badge { position: absolute; right: 18px; bottom: 18px; background: var(--grad-emerald); color: var(--c-navy-deep); border-radius: var(--r-md); padding: 12px 18px; box-shadow: var(--shadow-emerald); font-family: var(--ff-display); }
.po-about-home__badge b { display: block; font-size: 1.5rem; line-height: 1; }
.po-about-home__badge span { font-size: .76rem; }


.po-services { background: var(--grad-ink); }
.po-services__bg { position: absolute; inset: 0; opacity: .8; background-image: radial-gradient(ellipse 80% 50% at 15% 0%, rgba(46,230,160,.12), transparent 50%), radial-gradient(ellipse 70% 50% at 90% 20%, rgba(37,99,235,.12), transparent 50%); pointer-events: none; }
.po-services .po-container { position: relative; z-index: 1; }

.po-shape-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: clamp(1.2rem, 2.8vw, 1.8rem); }
@media (min-width: 900px) { .po-shape-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.po-ux-parent { width: 100%; height: 340px; perspective: 1000px; perspective-origin: 50% 50%; filter: drop-shadow(0 28px 50px rgba(0, 30, 24, 0.5)); }
.po-ux-card {
  position: relative; height: 100%; border-radius: 28px;
  background: linear-gradient(150deg, var(--c-navy-panel) 0%, var(--c-navy) 55%, var(--c-ink-2) 100%);
  border: 1px solid var(--glass-border);
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .55s ease, border-color .55s;
  box-shadow: rgba(0,0,0,0) 40px 50px 25px -40px, rgba(0,0,0,.3) 0 25px 25px -5px;
}
.po-ux-parent:hover .po-ux-card {
  transform: rotate3d(1, 1, 0, 22deg);
  border-color: rgba(46,230,160,.4);
  box-shadow: rgba(0,0,0,.45) 28px 48px 28px -38px, rgba(46,230,160,.18) 0 0 60px -10px, rgba(0,0,0,.2) 0 25px 35px 0;
}

/* glass sheen plane */
.po-ux-glass {
  position: absolute; inset: 8px; border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 40%);
  transform: translate3d(0, 0, 24px); transition: transform .55s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.po-ux-parent:hover .po-ux-glass { transform: translate3d(0, 0, 40px); }

/* orbiting icon cluster (top-right) */
.po-ux-logo { position: absolute; right: 0; top: 0; transform-style: preserve-3d; }
.po-ux-circle { display: block; position: absolute; aspect-ratio: 1; border-radius: 50%; top: 0; right: 0; box-shadow: rgba(46,230,160,.18) -8px 8px 14px 0; backdrop-filter: blur(5px); background: rgba(46,230,160,.08); transition: transform .55s cubic-bezier(0.22,1,0.36,1); }
.po-ux-circle:nth-child(1) { width: 170px; transform: translate3d(0,0,20px); top: 8px; right: 8px; }
.po-ux-circle:nth-child(2) { width: 140px; transform: translate3d(0,0,40px); top: 10px; right: 10px; transition-delay: .4s; }
.po-ux-circle:nth-child(3) { width: 110px; transform: translate3d(0,0,60px); top: 17px; right: 17px; transition-delay: .8s; }
.po-ux-circle:nth-child(4) { width: 80px; transform: translate3d(0,0,80px); top: 23px; right: 23px; transition-delay: 1.2s; }
.po-ux-circle:nth-child(5) { width: 50px; transform: translate3d(0,0,100px); top: 30px; right: 30px; display: grid; place-items: center; transition-delay: 1.6s; background: var(--grad-emerald); }
.po-ux-circle:nth-child(5) svg { width: 24px; height: 24px; color: var(--c-navy-deep); }
.po-ux-parent:hover .po-ux-circle:nth-child(1) { transform: translate3d(0,0,40px); }
.po-ux-parent:hover .po-ux-circle:nth-child(2) { transform: translate3d(0,0,70px); }
.po-ux-parent:hover .po-ux-circle:nth-child(3) { transform: translate3d(0,0,100px); }
.po-ux-parent:hover .po-ux-circle:nth-child(4) { transform: translate3d(0,0,130px); }
.po-ux-parent:hover .po-ux-circle:nth-child(5) { transform: translate3d(0,0,160px); }

.po-ux-content { position: absolute; left: 26px; right: 26px; bottom: 74px; transform: translate3d(0,0,26px); transition: transform .55s cubic-bezier(0.22,1,0.36,1); }
.po-ux-parent:hover .po-ux-content { transform: translate3d(0,0,50px); }
.po-ux-title { display: block; font-family: var(--ff-display); font-weight: 600; font-size: 1.15rem; color: #fff; margin-bottom: 8px; line-height: 1.2; overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
.po-ux-text { display: block; color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.po-ux-bottom { position: absolute; left: 26px; right: 26px; bottom: 24px; display: flex; align-items: center; justify-content: space-between; transform: translate3d(0,0,26px); transition: transform .55s cubic-bezier(0.22,1,0.36,1); }
.po-ux-parent:hover .po-ux-bottom { transform: translate3d(0,0,50px); }
.po-ux-step { font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; color: var(--c-emerald); opacity: .6; }
.po-ux-more-btn { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-display); font-weight: 600; font-size: .9rem; color: var(--c-emerald); }
.po-ux-more-btn svg { width: 16px; height: 16px; transition: transform .3s; }
.po-ux-more-btn:hover svg { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .po-ux-parent:hover .po-ux-card { transform: none; }
  .po-ux-circle, .po-ux-glass, .po-ux-content, .po-ux-bottom { transition: none !important; }
}


.po-glass {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
/* AI visual + contact card pick up the glass tokens */
.po-ai-visual { background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); }
.po-contact-card { background: linear-gradient(160deg, rgba(20,48,75,.6), rgba(10,20,34,.6)); border: 1px solid var(--glass-border); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); }
/* CTA box frosted over ink */
.po-cta { background: var(--grad-ink); }
.po-cta__box { background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); }

/* generic admin notice (plugin-inactive shortcode fallback) */
.po-notice { background: rgba(46,230,160,.08); border: 1px dashed var(--c-emerald-deep); color: var(--c-navy); padding: 16px 18px; border-radius: var(--r-md); font-size: .92rem; }


@media (max-width: 1024px) {
  .po-split { grid-template-columns: 1fr; gap: 36px; }
  .po-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .po-serve { grid-template-columns: repeat(2, 1fr); }
  .po-values { grid-template-columns: repeat(2, 1fr); }
  .po-footer__top { grid-template-columns: 1fr 1fr; }
  .po-contact-grid { grid-template-columns: 1fr; }
  .po-posts { grid-template-columns: repeat(2, 1fr); }
  .po-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .po-hstat:nth-child(3)::before { display: none; }
  .po-hstat:nth-child(3), .po-hstat:nth-child(4) { border-top: 1px solid var(--glass-line); }
}
@media (max-width: 768px) {
  .po-nav, .po-header__cta .po-btn { display: none; }
  .po-burger { display: block; }
  .po-header__bar { padding: 8px 8px 8px 18px; }
  .po-grid--3, .po-grid--4, .po-grid--2 { grid-template-columns: 1fr; }
  .po-why { grid-template-columns: 1fr; }
  .po-serve { grid-template-columns: repeat(2, 1fr); }
  .po-values { grid-template-columns: 1fr; }
  .po-posts { grid-template-columns: 1fr; }
  .po-form .row2 { grid-template-columns: 1fr; }
  .po-hero { padding-top: 130px; }
  .po-orb { width: 150vw; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .po-reveal, .po-stagger > * { opacity: 1 !important; transform: none !important; }
  .po-orb::before, .po-orb::after { animation: none !important; }
}

/* =====================================================================
   PORTAL — morphing rings + motion-path orb (scoped to .po-portal)
   ===================================================================== */
.po-portal {
  position: relative;
  background: var(--c-ink);
  background: var(--grad-ink);
  overflow: visible;
}
.po-portal__intro,
.po-portal__outro {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56vh;
  padding: clamp(60px, 9vw, 120px) 24px;
  box-sizing: border-box;
}
.po-portal__intro { padding-bottom: clamp(30px, 4vw, 56px); }
.po-portal__outro { padding-top: clamp(30px, 4vw, 56px); }
.po-portal__title {
  font-family: var(--ff-display);
  text-align: center;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(30px, 5.4vw, 72px);
  font-weight: 700;
}
.po-portal__sub {
  display: block;
  font-size: 0.34em;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  margin-top: 0.5em;
  letter-spacing: 0;
}
.po-portal .radial {
  -webkit-text-fill-color: transparent;
  background-image: radial-gradient(circle at -20% 0, #16B981, #2EE6A0 38%, #7CF4CB 62%, #FFFFFF);
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
}
/* SVG sits between the text panels; small negative margins tuck it close. */
.po-portal__svg {
  position: relative;
  display: block;
  width: 100%;
  margin-top: -5vw;
  margin-bottom: -5vw;
  z-index: 9;
}

@media (max-width: 768px) {
  .po-portal__intro,
  .po-portal__outro { min-height: 42vh; padding: 60px 18px; }
  .po-portal__svg { margin-top: -3vw; margin-bottom: -3vw; }
}

/* =====================================================================
   SERVICES PAGE — hero actions, why split, timeline, stats
   ===================================================================== */
.po-pagehero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.po-pagehero__actions .po-btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.po-pagehero__actions .po-btn--ghost:hover { border-color: var(--c-emerald); color: var(--c-emerald); }

/* placeholder for the why-services image when none uploaded */
.po-side-media__ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  padding: 32px; text-align: center; min-height: 360px;
  color: rgba(255,255,255,.55);
  background: linear-gradient(135deg, rgba(46,230,160,.08), var(--c-ink-2));
}
.po-side-media__ph svg { width: 44px; height: 44px; color: var(--c-emerald); opacity: .85; }
.po-side-media__ph span { font-size: .9rem; line-height: 1.5; max-width: 260px; }

/* Process timeline — numbered cards on a 3-col grid (no more empty section) */
.po-svc-process { position: relative; }
.po-svc-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.po-svc-step {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--c-navy-line);
  overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out), background .35s var(--ease-out);
}
.po-svc-step::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--grad-emerald);
  transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease-out);
}
.po-svc-step:hover {
  transform: translateY(-6px);
  border-color: rgba(46,230,160,.4);
  background: linear-gradient(180deg, rgba(46,230,160,.08), rgba(255,255,255,.02));
}
.po-svc-step:hover::before { transform: scaleY(1); }
.po-svc-step__num {
  font-family: var(--ff-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--c-emerald);
  display: inline-block; margin-bottom: 14px;
  letter-spacing: .02em;
}
.po-svc-step h3 { color: #fff; font-size: 1.08rem; margin: 0 0 8px; line-height: 1.3; }
.po-svc-step p { color: rgba(255,255,255,.66); font-size: .94rem; line-height: 1.6; margin: 0; }

/* Stats band */
.po-svc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.po-svc-stat {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--c-border, rgba(11,31,51,.08));
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.po-svc-stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.po-svc-stat__num {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad-emerald);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.po-svc-stat__lbl { color: var(--c-navy-deep); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.po-svc-stat__sub { color: var(--c-slate, #5a6b7b); font-size: .86rem; line-height: 1.45; }

@media (max-width: 900px) {
  .po-svc-timeline { grid-template-columns: repeat(2, 1fr); }
  .po-svc-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .po-svc-timeline { grid-template-columns: 1fr; }
  .po-svc-stats { grid-template-columns: 1fr; }
  .po-pagehero__actions .po-btn { width: 100%; justify-content: center; }
}

/* =====================================================================
   SERVICES PAGE — split hero with floating media cluster
   ===================================================================== */
.po-pagehero--split { padding: 150px 0 90px; }
.po-pagehero--split .po-pagehero__blob {
  position: absolute; z-index: 0; pointer-events: none;
  width: 620px; height: 620px; top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(46,230,160,.20), transparent 65%);
  filter: blur(20px);
}
.po-pagehero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.po-pagehero__copy h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.08; margin: 14px 0 16px; }
.po-pagehero__copy p { color: rgba(255,255,255,.8); font-size: 1.12rem; max-width: 54ch; margin: 0 0 28px; }
.po-pagehero__pill {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--ff-display); font-size: .74rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--c-emerald);
  padding: 6px 15px; border-radius: 999px;
  background: rgba(46,230,160,.10); border: 1px solid rgba(46,230,160,.30);
}
.po-pagehero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.po-pagehero__actions .po-btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.po-pagehero__actions .po-btn--ghost:hover { border-color: var(--c-emerald); color: var(--c-emerald); }
.po-pagehero__mini { display: flex; gap: 30px; margin-top: 34px; flex-wrap: wrap; }
.po-pagehero__mini > div { display: flex; flex-direction: column; }
.po-pagehero__mini b {
  font-family: var(--ff-display); font-size: 1.9rem; font-weight: 800; line-height: 1;
  background: var(--grad-emerald); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.po-pagehero__mini span { color: rgba(255,255,255,.65); font-size: .82rem; margin-top: 4px; }

/* floating media cluster */
.po-pagehero__media { position: relative; height: 460px; }
.po-hmedia {
  position: absolute; border-radius: 18px; overflow: hidden;
  background: linear-gradient(135deg, var(--c-navy-panel), var(--c-ink-2));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.po-hmedia img { width: 100%; height: 100%; object-fit: cover; display: block; }
.po-hmedia--a { width: 46%; height: 58%; top: 0; left: 4%; z-index: 2; animation: po-float 7s ease-in-out infinite; }
.po-hmedia--b { width: 40%; height: 46%; top: 8%; right: 0; z-index: 1; animation: po-float 8s ease-in-out infinite .6s; }
.po-hmedia--c { width: 38%; height: 44%; bottom: 2%; left: 0; z-index: 3; animation: po-float 7.5s ease-in-out infinite 1.1s; }
.po-hmedia--d { width: 50%; height: 50%; bottom: 0; right: 4%; z-index: 2; animation: po-float 8.5s ease-in-out infinite .3s; }
.po-hmedia__badge {
  position: absolute; z-index: 5; left: 50%; bottom: 14%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--c-navy-deep);
  padding: 9px 16px; border-radius: 999px; font-size: .82rem; font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,.3); white-space: nowrap;
}
.po-hmedia__badge svg { width: 16px; height: 16px; color: var(--c-emerald-deep); }
@keyframes po-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 900px) {
  .po-pagehero--split { padding: 120px 0 70px; }
  .po-pagehero__grid { grid-template-columns: 1fr; gap: 48px; }
  .po-pagehero__media { height: 380px; max-width: 460px; margin-inline: auto; width: 100%; }
}
@media (max-width: 560px) {
  .po-pagehero__media { height: 320px; }
  .po-pagehero__mini { gap: 22px; }
  .po-pagehero__actions .po-btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .po-hmedia { animation: none !important; }
}

/* ============================================================================
   TEAM SECTION (CPT-driven, homepage + About)
   ========================================================================== */
.po-team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(18px,2.4vw,26px);
}
.po-team-card{
  background:#fff;
  border:1px solid var(--c-line,#e6edf0);
  border-radius:var(--r-lg);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .45s var(--ease-out,cubic-bezier(.22,1,.36,1)),box-shadow .45s,border-color .45s;
}
.po-team-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
  border-color:var(--c-emerald-soft,rgba(46,230,160,.5));
}
.po-team-card__photo{
  position:relative;
  aspect-ratio:4/5;
  background:linear-gradient(160deg,#eef3f2,#dfeae6);
  overflow:hidden;
}
.po-team-card__photo img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .6s var(--ease-out,cubic-bezier(.22,1,.36,1));
}
.po-team-card:hover .po-team-card__photo img{transform:scale(1.05);}
.po-team-card__ph{
  position:absolute;inset:0;
  display:grid;place-items:center;
  color:var(--c-emerald-deep,#16B981);opacity:.5;
}
.po-team-card__ph .po-ph-ic{width:54px;height:54px;}
.po-team-card__body{padding:20px 20px 22px;display:flex;flex-direction:column;gap:6px;flex:1;}
.po-team-card__name{
  font-family:var(--ff-display);
  color:var(--c-navy);
  font-size:1.15rem;font-weight:700;line-height:1.2;margin:0;
}
.po-team-card__role{
  margin:0;font-weight:600;font-size:.9rem;
  color:var(--c-emerald-deep,#16B981);
}
.po-team-card__bio{
  margin:4px 0 0;font-size:.92rem;line-height:1.55;
  color:var(--c-slate-dark,#5b6b78);
}
.po-team-card__socials{
  display:flex;gap:8px;margin-top:auto;padding-top:14px;
}
.po-team-card__socials a{
  width:36px;height:36px;border-radius:10px;
  display:grid;place-items:center;
  background:var(--c-mist,#eef3f2);
  color:var(--c-navy);
  transition:background .3s,color .3s,transform .3s;
}
.po-team-card__socials a:hover{
  background:var(--grad-emerald);
  color:var(--c-navy-deep,#0a1726);
  transform:translateY(-2px);
}
.po-team-card__socials svg{width:18px;height:18px;}

/* Dark variant (About page) */
.po-section--dark .po-team-card{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.10);
}
.po-section--dark .po-team-card__name{color:#fff;}
.po-section--dark .po-team-card__bio{color:rgba(255,255,255,.72);}
.po-section--dark .po-team-card__socials a{
  background:rgba(255,255,255,.08);color:#fff;
}
.po-section--dark .po-team-card__socials a:hover{
  background:var(--grad-emerald);color:var(--c-navy-deep,#0a1726);
}

@media (max-width:980px){ .po-team-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:520px){ .po-team-grid{grid-template-columns:1fr;} }

/* ============================================================================
   CONTACT PAGE — Buyer / Supplier tabs
   ========================================================================== */
.po-contact-tabs__nav{
  display:flex;gap:8px;
  background:var(--c-mist,#eef3f2);
  border:1px solid var(--c-line,#e6edf0);
  border-radius:999px;padding:6px;margin-bottom:22px;
}
.po-ctab{
  flex:1 1 0;appearance:none;border:0;cursor:pointer;
  padding:11px 18px;border-radius:999px;
  font-family:var(--ff-display);font-weight:600;font-size:.95rem;
  color:var(--c-navy,#10243A);background:transparent;
  white-space:nowrap;
  transition:background .25s,color .25s;
}
.po-ctab:hover{ color:var(--c-emerald-deep,#16B981); }
.po-ctab.is-active{
  background:var(--grad-emerald);
  color:var(--c-navy-deep,#0a1726);
  box-shadow:0 6px 16px rgba(22,185,129,.25);
}
.po-ctab-panel{display:none;}
.po-ctab-panel.is-active{display:block;animation:po-fade-in .4s var(--ease-out,ease);}
@keyframes po-fade-in{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.po-ctab-intro{
  color:var(--c-slate-dark,#5b6b78);line-height:1.6;margin:0 0 18px;font-size:.98rem;
}
.po-ctab-panel .posup-wrap{max-width:none;}

/* Contact panel fallback (no plugin / no content) — light background */
.po-contact-fallback{
  background:var(--c-mist-2,#f6f9f8);
  border:1px solid var(--c-line,#e6edf0);
  border-radius:var(--r-lg);
  padding:22px 22px 24px;
  color:var(--c-slate-dark,#5b6b78);
}
.po-contact-fallback p{margin:0 0 14px;line-height:1.6;}
.po-contact-fallback__actions{display:flex;gap:12px;flex-wrap:wrap;}

/* If the contact section is ever placed on a dark section, restore light text */
.po-section--dark .po-ctab{color:rgba(255,255,255,.8);}
.po-section--dark .po-contact-tabs__nav{background:rgba(255,255,255,.05);border-color:var(--glass-border);}
.po-section--dark .po-ctab-intro{color:rgba(255,255,255,.72);}
.po-section--dark .po-contact-fallback{background:rgba(255,255,255,.04);border-color:var(--glass-border);color:rgba(255,255,255,.82);}

/* ============================================================================
   PROCUREMENT DOCUMENTATION & RECORDS
   ========================================================================== */
.po-docs__grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:clamp(16px,2vw,22px);
}
.po-doc-card{
  display:flex;gap:14px;align-items:flex-start;
  background:rgba(255,255,255,.04);
  border:1px solid var(--glass-border);
  border-radius:var(--r-lg);
  padding:20px;
  transition:transform .4s var(--ease-out,cubic-bezier(.22,1,.36,1)),border-color .4s,background .4s;
}
.po-doc-card:hover{
  transform:translateY(-6px);
  border-color:var(--c-emerald-soft,rgba(46,230,160,.5));
  background:rgba(255,255,255,.06);
}
.po-doc-card__ic{
  flex:none;width:44px;height:44px;border-radius:12px;
  display:grid;place-items:center;
  background:var(--grad-emerald);
  color:var(--c-navy-deep,#0a1726);
}
.po-doc-card__ic svg{width:22px;height:22px;}
.po-doc-card__body h3{
  margin:0 0 5px;font-size:1.02rem;font-weight:700;color:#fff;
  font-family:var(--ff-display);line-height:1.25;
}
.po-doc-card__body p{margin:0;font-size:.9rem;line-height:1.55;color:rgba(255,255,255,.72);}
@media (max-width:900px){ .po-docs__grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .po-docs__grid{grid-template-columns:1fr;} }

/* ============================================================================
   HOW WE VERIFY SUPPLIERS
   ========================================================================== */
.po-verify__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:12px;}
.po-verify__item{
  display:flex;align-items:center;gap:14px;
  background:#fff;
  border:1px solid var(--c-line,#e6edf0);
  border-radius:14px;padding:16px 18px;
  font-weight:600;color:var(--c-navy,#10243A);
  transition:transform .35s var(--ease-out,cubic-bezier(.22,1,.36,1)),box-shadow .35s;
}
.po-verify__item:hover{transform:translateX(6px);box-shadow:var(--shadow-md);}
.po-verify__ic{
  flex:none;width:30px;height:30px;border-radius:50%;padding:6px;
  background:var(--grad-emerald);color:var(--c-navy-deep,#0a1726);
}

/* ============================================================================
   STICKY WHATSAPP BUTTON (brand-matched)
   ========================================================================== */
.po-wa{
  position:fixed;right:22px;bottom:22px;z-index:990;
  display:inline-flex;align-items:center;gap:10px;
  padding:13px 20px 13px 16px;border-radius:999px;
  background:linear-gradient(135deg,#2EE6A0,#16B981);
  color:#06231a;font-family:var(--ff-display);font-weight:700;font-size:.95rem;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(22,185,129,.4);
  transition:transform .25s var(--ease-out,cubic-bezier(.22,1,.36,1)),box-shadow .25s;
}
.po-wa:hover{transform:translateY(-3px) scale(1.02);box-shadow:0 16px 38px rgba(22,185,129,.5);}
.po-wa__ic{flex:none;width:24px;height:24px;display:block;}
.po-wa__label{white-space:nowrap;}
.po-wa::after{
  content:"";position:absolute;inset:0;border-radius:999px;
  box-shadow:0 0 0 0 rgba(46,230,160,.55);
  animation:po-wa-pulse 2.4s ease-out infinite;pointer-events:none;
}
@keyframes po-wa-pulse{
  0%{box-shadow:0 0 0 0 rgba(46,230,160,.5);}
  70%{box-shadow:0 0 0 16px rgba(46,230,160,0);}
  100%{box-shadow:0 0 0 0 rgba(46,230,160,0);}
}
@media (max-width:560px){
  .po-wa__label{display:none;}
  .po-wa{padding:14px;right:16px;bottom:16px;}
}
@media (prefers-reduced-motion:reduce){
  .po-wa::after{animation:none;}
}

/* hero card secondary (supplier) ghost CTA */
.po-hero2__card-ghost{
  margin-top:10px;width:100%;justify-content:center;
  background:transparent;border:1px solid var(--glass-border);
  color:#fff;font-weight:600;
  transition:background .25s,border-color .25s;
}
.po-hero2__card-ghost:hover{
  background:rgba(255,255,255,.08);
  border-color:var(--c-emerald-soft,rgba(46,230,160,.5));
}
