/* =====================================================================
   VALBIO — PREMIUM SECTION REDESIGN
   Every colour below is a tint or shade of the two brand hex values that
   already exist in the source page: #004D88 (primary) and #1B3D6E (navy).
   No new hue is introduced — only lightness/opacity variation of the same
   blue family, plus standard white/black/gray neutrals for legibility.
   ===================================================================== */

:root{
  --pv-primary:      #004D88;
  --pv-primary-dark: #002F55;
  --pv-primary-deep: #04232F;
  --pv-primary-mid:  #009C8D;
  --pv-secondary:    #009C8D;
  --pv-primary-soft: #12C7A9;
  --pv-primary-pale: #FFFFFF;
  --pv-primary-pale-2: #FFFFFF;
  --pv-line:  rgba(0,156,141,.14);
  --pv-line-soft: rgba(0,77,136,.08);
  --pv-glow:  rgba(0,156,141,.28);
  --pv-glow-strong: rgba(0,156,141,.38);
  --pv-white: #FFFFFF;
  --pv-ink:   #04222B;
  --pv-ink-soft: #3E6169;
  --pv-gray:  #6C8A8F;

  --grad-brand: linear-gradient(135deg, #004D88 0%, #009C8D 100%);
  --grad-brand-2: linear-gradient(135deg, #004D88 0%, #009C8D 100%);

  --pv-font-display: 'Plus Jakarta Sans', sans-serif;
  --pv-font-body: 'Plus Jakarta Sans', sans-serif;
  --pv-radius: 20px;
  --pv-radius-sm: 14px;
  --pv-ease: cubic-bezier(.19,1,.22,1);
}

.pv-section{
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  font-family: var(--pv-font-body);
  color: var(--pv-ink);
}
.pv-section .container-xl{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ---------- Section heads ---------- */
.pv-head{ max-width: 760px; margin-bottom: 56px; }
.pv-head--center{ margin-left: auto; margin-right: auto; text-align: center; }

.pv-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pv-primary);
  background: var(--pv-primary-pale);
  border: 1px solid var(--pv-line);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.pv-eyebrow-dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pv-primary-mid);
  box-shadow: 0 0 0 4px rgba(11,111,184,.18);
}.pv-h2 {
  font-family: var(--pv-font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.18;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 16px;
  letter-spacing: -.01em;
}
.pv-h2 em{ font-style: italic; color: #009C8D; }

/* Apply Brand Gradient to Headings Globally in ValBio */
.tkx-hero-title,
.pv-advantage-card h3,
.pv-feature-card h3,
.pv-orbit-card h3,
.flip-card-front h3,
.radial-node h3,
.bento-item h3,
.visual-feature-block h3,
.dash-text h3,
.step-card h3,
.domain-card h3,
.closing-split-content h3,
.split-cta-left h2,
.closing-card h2,
.pv-tree-center h2,
.closing-split-content h2,
.cta-left h2 {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pv-lead{
  font-size: 14px;
  line-height: 1.6;
  max-width: 600px;
  color: var(--pv-ink-soft);
  margin: 0 auto;
}

/* ---------- Reveal-on-scroll ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--pv-ease), transform .7s var(--pv-ease);
}
[data-reveal].pv-visible{ opacity: 1; transform: translateY(0); }

/* =====================================================================
   01 · ADVANTAGE
   ===================================================================== */
.pv-advantage{ background: var(--pv-primary-pale-2); }
.pv-orbit-field{
  position: absolute; inset: 0;
  background:
    radial-gradient(560px 320px at 12% 0%, rgba(0,77,136,.08), transparent 60%),
    radial-gradient(520px 320px at 92% 100%, rgba(27,61,110,.08), transparent 60%);
  pointer-events: none;
}

.pv-advantage-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.pv-advantage-card{
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--pv-line);
  border-radius: var(--pv-radius-sm);
  padding: 26px 22px 22px;
  transition: transform .35s var(--pv-ease), box-shadow .35s var(--pv-ease), border-color .35s var(--pv-ease);
}
.pv-advantage-card::before{
  content:"";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(160px 120px at var(--mx,50%) var(--my,0%), var(--pv-glow-strong), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.pv-advantage-card:hover{
  transform: translateY(-6px);
  border-color: rgba(0,77,136,.3);
  box-shadow: 0 24px 48px -24px rgba(0,77,136,.35);
}
.pv-advantage-card:hover::before{ opacity: 1; }
.pv-advantage-num{
  display: block;
  font-family: var(--pv-font-display);
  font-size: 26px;
  color: #009C8D;
  opacity: .55;
  margin-bottom: 10px;
}
.pv-advantage-card h3{
  font-size: 15.5px;
  font-weight: 700;
  color: var(--pv-primary-dark);
  margin: 0 0 8px;
}
.pv-advantage-card p{
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--pv-ink-soft);
  margin: 0;
}

/* =====================================================================
   02 · COMPARE
   ===================================================================== */
.pv-compare{ background: #FFFFFF; }

.pv-compare-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  border-radius: var(--pv-radius);
  overflow: hidden;
  border: 1px solid var(--pv-line);
}
.pv-compare-panel{ padding: 40px 36px; }
.pv-compare-panel--problem{ background: var(--pv-primary-pale-2); }
.pv-compare-panel--solution{
  background: linear-gradient(160deg, var(--pv-primary-dark), var(--pv-primary-deep));
  color: var(--pv-white);
}
.pv-compare-panel-head{ margin-bottom: 22px; }
.pv-compare-tag{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.pv-compare-tag--problem{ background: rgba(0,77,136,.1); color: var(--pv-primary); }
.pv-compare-tag--solution{ background: rgba(255,255,255,.12); color: #DCEBF7; }

.pv-compare-list{ list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.pv-compare-list li{
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; line-height: 1.5;
  color: var(--pv-ink-soft);
}
.pv-compare-list--solution li{ color: #E4EEF6; }
.pv-compare-icon{
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; line-height: 1;
  margin-top: 1px;
}
.pv-compare-icon--problem{ background: rgba(0,77,136,.1); color: var(--pv-primary); }
.pv-compare-icon--solution{ background: rgba(255,255,255,.14); color: #BFE0F6; }

.pv-compare-divider{
  display: flex; align-items: center; justify-content: center;
  width: 64px;
  background: #FFFFFF;
  color: #009C8D;
  border-left: 1px solid var(--pv-line);
  border-right: 1px solid var(--pv-line);
}
.pv-compare-divider svg{ width: 26px; height: 26px; }

.pv-reach{
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pv-reach-label{
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--pv-gray);
  margin-bottom: 12px;
}
.pv-reach-pills{ display: flex; flex-wrap: wrap; gap: 10px; }
.pv-pill{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600;
  color: var(--pv-primary-dark);
  background: var(--pv-primary-pale);
  border: 1px solid var(--pv-line);
  padding: 9px 16px;
  border-radius: 999px;
}
.pv-pill--location svg{ width: 14px; height: 14px; fill: var(--pv-primary-mid); }

/* =====================================================================
   03 · WHY CHOOSE US
   ===================================================================== */
.pv-why{ background: var(--pv-primary-pale-2); }

.pv-badge-row{
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 56px;
}
.pv-badge{
  font-size: 13px; font-weight: 600;
  color: var(--pv-primary-dark);
  background: #FFFFFF;
  border: 1px solid var(--pv-line);
  padding: 9px 16px;
  border-radius: 999px;
}
.pv-badge--outline{
  background: transparent;
  border: 1px solid rgba(0,77,136,.22);
  color: var(--pv-primary-dark);
}

.pv-feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pv-feature-card{
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--pv-line);
  border-radius: var(--pv-radius-sm);
  padding: 28px 24px;
  transition: transform .35s var(--pv-ease), box-shadow .35s var(--pv-ease);
}
.pv-feature-card::before{
  content:"";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(160px 120px at var(--mx,50%) var(--my,0%), var(--pv-glow-strong), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.pv-feature-card:hover{ transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(0,77,136,.35); }
.pv-feature-card:hover::before{ opacity: 1; }
.pv-feature-icon{
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--pv-primary-pale);
  color: var(--pv-primary);
  margin-bottom: 16px;
}
.pv-feature-icon svg{ width: 22px; height: 22px; }
.pv-feature-card h3{ font-size: 16px; font-weight: 700; color: var(--pv-primary-dark); margin: 0 0 8px; }
.pv-feature-card p{ font-size: 13.5px; line-height: 1.6; color: var(--pv-ink-soft); margin: 0; }

/* =====================================================================
   04 · PROCESS
   ===================================================================== */
.pv-process{
  background: linear-gradient(180deg, var(--pv-primary-deep), var(--pv-primary-dark));
  color: var(--pv-white);
}
.pv-process .pv-h2{ 
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--pv-white); 
}
.pv-process .pv-lead{ color: rgba(255,255,255,.72); }
.pv-process .pv-eyebrow{ background: rgba(255,255,255,.1); color: #CFE4F5; border-color: rgba(255,255,255,.18); }
.pv-process .pv-eyebrow-dot{ background: #7EC1F0; box-shadow: 0 0 0 4px rgba(126,193,240,.22); }

.pv-process-glow{
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 50% -10%, rgba(11,111,184,.35), transparent 60%),
    radial-gradient(500px 400px at 100% 100%, rgba(74,143,194,.18), transparent 60%);
  pointer-events: none;
}

.pv-capability-row{
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 56px;
}
.pv-process .pv-badge--outline{ color: #E4F0FA; border-color: rgba(255,255,255,.28); }

.pv-process-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pv-process-card{
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border-radius: var(--pv-radius);
  padding: 30px 26px;
  transition: transform .35s var(--pv-ease), border-color .35s var(--pv-ease), background .35s var(--pv-ease);
}
.pv-process-card::before{
  content:"";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(180px 140px at var(--mx,50%) var(--my,0%), rgba(126,193,240,.35), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.pv-process-card:hover{ transform: translateY(-6px); border-color: rgba(126,193,240,.4); background: rgba(255,255,255,.08); }
.pv-process-card:hover::before{ opacity: 1; }
.pv-process-step{
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #7EC1F0;
  margin-bottom: 14px;
}
.pv-process-icon{
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pv-process-icon img{ width: 26px; height: 26px; object-fit: contain; filter: brightness(0) invert(1); opacity: .92; }
.pv-process-card h3{ font-size: 16.5px; font-weight: 700; margin: 0 0 10px; color: var(--pv-white); }
.pv-process-card p{ font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.72); margin: 0; }

/* =====================================================================
   05 · CTA STRIP
   ===================================================================== */
.pv-cta{
  background: var(--pv-primary);
  padding: 56px 0;
}
.pv-cta-inner{
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.pv-cta-title{
  font-family: var(--pv-font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--pv-white);
  margin: 0;
}
.pv-cta-btn{
  display: inline-flex; align-items: center; gap: 10px;
  background: #FFFFFF;
  color: var(--pv-primary-dark);
  font-weight: 700; font-size: 14.5px;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .3s var(--pv-ease), box-shadow .3s var(--pv-ease);
}
.pv-cta-btn svg{ width: 16px; height: 16px; }
.pv-cta-btn:hover{ transform: translateY(-3px); box-shadow: 0 18px 34px -14px rgba(0,0,0,.35); color: var(--pv-primary-dark); }

/* =====================================================================
   06 · ORBIT (signature)
   ===================================================================== */
.pv-orbit-section{ background: #FFFFFF; }

.pv-orbit{
  position: relative;
  width: min(640px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.pv-orbit-rings{ position: absolute; inset: 0; width: 100%; height: 100%; }
.pv-orbit-ring{ fill: none; stroke: var(--pv-line); stroke-width: 1; }
.pv-orbit-ring--a{ stroke-dasharray: 4 8; animation: pv-spin 60s linear infinite; transform-origin: 320px 320px; }
.pv-orbit-ring--b{ stroke-dasharray: 2 10; animation: pv-spin-rev 90s linear infinite; transform-origin: 320px 320px; }
.pv-orbit-line{ stroke: var(--pv-line); stroke-width: 1.4; }
@keyframes pv-spin{ to{ transform: rotate(360deg); } }
@keyframes pv-spin-rev{ to{ transform: rotate(-360deg); } }

.pv-orbit-hub{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 128px; height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--pv-primary-mid), var(--pv-primary-dark) 70%);
  box-shadow: 0 0 0 10px rgba(0,77,136,.08), 0 24px 50px -18px rgba(0,77,136,.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.pv-orbit-hub span{
  font-family: var(--pv-font-display);
  font-size: 20px; font-weight: 600; color: var(--pv-white);
}

.pv-orbit-card{
  position: absolute;
  width: 232px;
  background: #FFFFFF;
  border: 1px solid var(--pv-line);
  border-radius: var(--pv-radius-sm);
  padding: 20px 22px;
  box-shadow: 0 20px 44px -26px rgba(0,77,136,.4);
  z-index: 2;
}
.pv-orbit-card h3{ font-size: 14.5px; font-weight: 700; color: var(--pv-primary-dark); margin: 0 0 10px; }
.pv-orbit-card ul{ list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.pv-orbit-card li{
  font-size: 12.5px; color: var(--pv-ink-soft);
  padding-left: 14px; position: relative;
}
.pv-orbit-card li::before{
  content:""; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--pv-primary-mid);
}
.pv-orbit-card--top{ top: 2%; left: 50%; transform: translateX(-50%); }
.pv-orbit-card--left{ bottom: 6%; left: 0%; }
.pv-orbit-card--right{ bottom: 6%; right: 0%; }

/* =====================================================================
   07 · CLOSING STACK
   ===================================================================== */
.pv-stack{ background: var(--pv-primary-pale-2); }
.pv-stack-card{
  position: relative;
  border-radius: var(--pv-radius);
  padding: 48px 46px;
  margin-bottom: 20px;
  overflow: hidden;
}
.pv-stack-card::before{
  content:"";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(360px 220px at var(--mx,20%) var(--my,0%), var(--pv-glow-strong), transparent 65%);
  opacity: .5;
  pointer-events: none;
}
.pv-stack-card--dark{
  background: linear-gradient(150deg, var(--pv-primary-dark), var(--pv-primary-deep));
  color: var(--pv-white);
}
.pv-stack-card--dark h2{
  font-family: var(--pv-font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.3;
  margin: 0 0 14px;
  max-width: 720px;
  position: relative; z-index: 1;
}
.pv-stack-card--dark p{ color: rgba(255,255,255,.75); max-width: 640px; margin: 0; font-size: 15px; line-height: 1.6; position: relative; z-index: 1; }

.pv-stack-card--light{
  background: #FFFFFF;
  border: 1px solid var(--pv-line);
}
.pv-stack-tag{
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--pv-primary);
  background: var(--pv-primary-pale);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.pv-stack-card--light p{ color: var(--pv-ink-soft); font-size: 15px; line-height: 1.65; margin: 0; max-width: 760px; position: relative; z-index: 1; }

.pv-stack-actions{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.pv-cta-btn--solid{ background: var(--pv-primary); color: var(--pv-white); }
.pv-cta-btn--solid:hover{ color: var(--pv-white); }
.pv-cta-btn--ghost{ background: transparent; color: var(--pv-primary-dark); border: 1.5px solid var(--pv-line); }
.pv-cta-btn--ghost:hover{ color: var(--pv-primary-dark); border-color: var(--pv-primary); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px){
  .pv-advantage-grid{ grid-template-columns: repeat(3, 1fr); }
  .pv-feature-grid{ grid-template-columns: repeat(2, 1fr); }
  .pv-process-grid{ grid-template-columns: repeat(2, 1fr); }
  .pv-orbit{ width: 100%; max-width: 460px; }
  .pv-orbit-card{ width: 190px; padding: 16px 18px; }
}

@media (max-width: 760px){
  .pv-section{ padding: 64px 0; }
  .pv-advantage-grid{ grid-template-columns: repeat(2, 1fr); }
  .pv-feature-grid{ grid-template-columns: 1fr; }
  .pv-process-grid{ grid-template-columns: 1fr; }
  .pv-compare-grid{ grid-template-columns: 1fr; }
  .pv-compare-divider{ width: 100%; padding: 14px 0; border-left: none; border-right: none; border-top: 1px solid var(--pv-line); border-bottom: 1px solid var(--pv-line); }
  .pv-compare-divider svg{ transform: rotate(90deg); }
  .pv-reach{ grid-template-columns: 1fr; }
  .pv-cta-inner{ flex-direction: column; align-items: flex-start; text-align: left; }
  .pv-orbit{ height: auto; aspect-ratio: auto; padding-top: 240px; }
  .pv-orbit-hub{ top: 90px; }
  .pv-orbit-rings{ display: none; }
  .pv-orbit-card{ position: static; width: 100%; margin-bottom: 14px; }
  .pv-stack-card{ padding: 32px 26px; }
}

@media (max-width: 480px){
  .pv-advantage-grid{ grid-template-columns: 1fr; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ transition: none; opacity: 1; transform: none; }
  .pv-orbit-ring--a, .pv-orbit-ring--b{ animation: none; }
}
.bento-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); position: relative; z-index: 1; }
.bento-grid::before {
  content: "";
  position: absolute;
  top: -20%; left: -20%; right: -20%; bottom: -20%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(0, 77, 136, 0.25), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0, 156, 141, 0.3), transparent 40%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}
.bento-item { 
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%); 
  backdrop-filter: blur(40px); 
  -webkit-backdrop-filter: blur(40px); 
  border: 1px solid rgba(255, 255, 255, 0.3); 
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px; 
  padding: 40px 32px; 
  box-shadow: 
    0 20px 40px rgba(0, 77, 136, 0.1), 
    inset 0 4px 18px rgba(255, 255, 255, 0.5); 
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease, border-color 0.5s ease; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.bento-item::after {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-25deg);
  transition: 0.7s;
  z-index: 0;
  pointer-events: none;
}
.bento-item:hover::after {
  left: 200%;
}
.bento-item:hover { 
  transform: translateY(-10px) scale(1.02); 
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 
    0 30px 60px rgba(0, 156, 141, 0.2), 
    inset 0 6px 24px rgba(255, 255, 255, 0.8); 
}
.flip-card { background-color: transparent; width: 100%; height: 280px; perspective: 1000px; border-radius: 24px; }
.flip-card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform-style: preserve-3d; }
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 24px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 24px; box-sizing: border-box; }
.flip-card-front { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.5); color: var(--pv-primary-dark); box-shadow: 0 4px 20px rgba(0, 77, 136, 0.08); }
.flip-card-front h3 { font-size: 18px; margin-bottom: 10px; color: var(--pv-primary-dark); font-weight: 700; }
.flip-card-front p { font-size: 14px; color: var(--pv-ink-soft); line-height: 1.5; }
.flip-card-back { background: var(--grad-brand-2); color: white; transform: rotateY(180deg); box-shadow: 0 8px 32px rgba(0, 77, 136, 0.2); }
.flip-card-back h3 { font-size: 18px; margin-bottom: 10px; color: #fff; font-weight: 700; }
.flip-card-back p { font-size: 14px; color: rgba(255,255,255,0.9); line-height: 1.5; }
.flip-card-back-icon { font-size: 32px; margin-bottom: 12px; color: #fff; }

.radial-process { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; position: relative; padding: 40px 0; }
.radial-process::before { content: ""; position: absolute; top: 50%; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, var(--pv-primary-mid), transparent); z-index: 0; }
.radial-node { position: relative; z-index: 1; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,0.8); backdrop-filter: blur(8px); border: 2px solid var(--pv-primary-mid); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 0 20px rgba(11, 111, 184, 0.2); transition: all 0.4s ease; }
.radial-node:hover { transform: scale(1.1); box-shadow: 0 0 30px rgba(11, 111, 184, 0.4); background: #FFFFFF; }
.radial-node span.step { font-weight: 800; font-size: 36px; color: #009C8D; opacity: 0.15; position: absolute; top: 10%; left: 50%; transform: translateX(-50%); }
.radial-node h3 { font-size: 14px; margin-top: 20px; color: var(--pv-primary-dark); padding: 0 10px; position: relative; z-index: 2; font-weight: 700; }
.radial-node p { font-size: 12px; color: var(--pv-ink-soft); display: none; }
.radial-icon { width: 40px; height: 40px; margin-top: 10px; position: relative; z-index: 2; }
.radial-node:hover p { display: block; position: absolute; background: rgba(255,255,255,0.95); padding: 10px; border-radius: 8px; width: 200px; top: -100px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border: 1px solid var(--pv-line); }

.orbit-glass { background: rgba(255, 255, 255, 0.6) !important; backdrop-filter: blur(24px) !important; border: 1px solid rgba(255, 255, 255, 0.9) !important; border-radius: 24px !important; }
.pv-compare-bento { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 24px; }

.bento-item h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; color: var(--pv-primary-dark); position: relative; z-index: 1; }
.bento-item p { font-size: 16px; color: #444; line-height: 1.6; margin:0; position: relative; z-index: 1; }
.pv-advantage-num { font-size: 26px !important; margin-bottom: 10px !important; opacity: 0.9 !important; color: #009C8D; font-weight: 800; position: relative; z-index: 1; }

/* ==========================================================================
   PREMIUM 2026 SAAS COMPONENTS (Added dynamically)
   ========================================================================== */


/* Refined Bento */
/* Refined Bento */
.pv-why {
  background: #F4F7F9 !important; /* Soft gray background to make white cards pop */
}
.pv-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .pv-split { grid-template-columns: 1fr; }
}

.visual-feature-block {
  background: #FFFFFF;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,77,136,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.visual-feature-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,77,136,0.12);
}
.bento-hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply; /* Helps blend the white background generated by AI */
}
.bento-content-bottom {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-grow: 1;
}
.visual-feature-block h3 { font-size: 36px; font-weight: 800; margin-bottom: 16px; color:#004D88; line-height:1.2; }
.visual-feature-block p { font-size: 16px; color: #3E6169; margin-bottom: 0; line-height: 1.6; }

@media (max-width: 768px) {
  .visual-feature-block h3 { font-size: 28px; }
  .bento-hero-img { height: 200px; }
}

.bento-asymmetrical {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .bento-asymmetrical { grid-template-columns: 1fr; grid-template-rows: auto; }
}

.bento-asym-item {
  background: #FFFFFF;
  border: none;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,77,136,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bento-asym-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,77,136,0.1);
}
.bento-asym-item.wide { 
  grid-column: span 2; 
  flex-direction: row;
}
@media (max-width: 768px) {
  .bento-asym-item.wide { grid-column: 1 / -1; flex-direction: column; }
}

.bento-content-left {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-img-right {
  width: 50%;
  max-width: 220px;
  object-fit: contain;
  align-self: flex-end;
  margin-top: auto;
  margin-right: -20px; /* playful overflow */
  margin-bottom: -10px;
  mix-blend-mode: multiply;
}
.bento-img-top {
  width: 100%;
  height: 150px;
  object-fit: contain;
  object-position: center bottom;
  margin-top: 20px;
  mix-blend-mode: multiply;
}

@media (max-width: 768px) {
  .bento-img-right { width: 100%; margin-right: 0; align-self: center; }
}

.bento-asym-item h4 { font-size: 22px; font-weight: 800; color: #004D88; margin:0 0 8px 0; }
.bento-asym-item p { font-size: 15px; color: #3E6169; margin:0; line-height:1.5; }

/* Split CTA */
.split-cta {
  background: #FFFFFF;
  border: 1px solid var(--pv-line);
  border-radius: var(--pv-radius);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,77,136,0.05);
}
.split-cta::before {
  content: '';
  position: absolute; top:0; left:0; width:100%; height:4px;
  background: var(--grad-brand);
}
.split-cta-left { max-width: 500px; }
.split-cta-left h2 { font-size: 32px; font-weight: 700; color: var(--pv-primary-dark); margin-bottom: 16px; }
.split-cta-left p { font-size: 15px; color: var(--pv-ink-soft); line-height: 1.6; margin:0; }
.split-cta-right { display: flex; gap: 16px; }
.btn-glass {
  background: rgba(0,156,141,0.1);
  color: var(--pv-primary-dark);
  border: 1px solid rgba(0,156,141,0.2);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-glass:hover { background: var(--pv-primary-mid); color: white; border-color: #009C8D; transform: translateY(-2px); }
@media (max-width: 768px) {
  .split-cta { flex-direction: column; text-align: center; padding: 40px 20px; gap: 30px; }
  .split-cta-right { flex-direction: column; width: 100%; }
}

/* =====================================================================
   03 · NO HIRING SECTION
   ===================================================================== */
.pv-compare {
  padding: 100px 0;
}
.glass-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.glass-feature-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 77, 136, 0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 77, 136, 0.05);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: slideUpFade 0.6s ease backwards;
}
.glass-feature-card:nth-child(1) { animation-delay: 0.1s; }
.glass-feature-card:nth-child(2) { animation-delay: 0.2s; margin-left: 40px; }
.glass-feature-card:nth-child(3) { animation-delay: 0.3s; }
.glass-feature-card:nth-child(4) { animation-delay: 0.4s; margin-left: 40px; }

.glass-feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 156, 141, 0.15);
  border-color: rgba(0, 156, 141, 0.3);
  z-index: 2;
}
.glass-feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--pv-primary-mid);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: bottom;
}
.glass-feature-card:hover::before {
  transform: scaleY(1);
}
.glass-feature-card-icon {
  background: rgba(0, 156, 141, 0.08);
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--pv-primary-mid);
  flex-shrink: 0;
  transition: transform 0.4s ease, background 0.4s ease;
}
.glass-feature-card:hover .glass-feature-card-icon {
  background: var(--pv-primary-mid);
  color: #fff;
  transform: rotate(10deg);
}
.glass-feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pv-primary);
  margin: 0 0 8px;
}
.glass-feature-card p {
  font-size: 14.5px;
  color: var(--pv-ink-soft);
  margin: 0;
  line-height: 1.5;
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .glass-feature-card:nth-child(even) { margin-left: 0; }
}

@media (max-width: 480px) {
  .glass-feature-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
  }
}


/* =====================================================================
   07 · PREMIUM CLOSING CTA
   ===================================================================== */
.premium-closing-cta {
  padding: 100px 0;
  background: #FFFFFF;
}
.closing-card {
  background: linear-gradient(135deg, var(--pv-primary) 0%, #032b4d 100%);
  border-radius: 30px;
  padding: 70px 80px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 77, 136, 0.25);
}
.closing-card::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0, 156, 141, 0.2) 0%, transparent 50%);
  animation: rotateGlow 15s linear infinite;
  pointer-events: none;
}
.closing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.closing-card-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}
.closing-card h2 {
  font-family: var(--pv-font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}
.closing-card p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.closing-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-closing-primary {
  background: var(--pv-primary-mid);
  color: #fff;
  padding: 18px 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 156, 141, 0.3);
}
.btn-closing-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 156, 141, 0.4);
  color: #fff;
}
.btn-closing-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 18px 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-closing-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .closing-card { padding: 50px 24px; border-radius: 20px; }
  .closing-actions { flex-direction: column; width: 100%; max-width: 400px; margin: 0 auto; }
  .closing-actions a { width: 100%; text-align: center; }
}

/* =====================================================================
   02 · PROCESS (TIMELINE JOURNEY HORIZONTAL)
   ===================================================================== */
.pv-process {
  padding: 120px 0;
  background: #fdfdfd; /* Very clean, light background */
  overflow: hidden;
}
.pv-process .pv-h2 {
  color: var(--pv-primary); 
  font-weight: 800;
}
.timeline-journey {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.timeline-line {
  position: absolute;
  top: 40px; /* Center of the icon */
  left: 5%;
  width: 90%;
  height: 4px;
  background: rgba(0, 77, 136, 0.1);
  border-radius: 4px;
  z-index: 1;
}
.timeline-line-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--pv-primary) 0%, var(--pv-primary-mid) 100%);
  transform-origin: left;
  transform: scaleX(0);
  animation: fillTimelineH 2s ease 0.5s forwards;
}
.timeline-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpNodeH 0.6s ease forwards;
}

.timeline-node:nth-child(2) { animation-delay: 0.2s; }
.timeline-node:nth-child(3) { animation-delay: 0.4s; }
.timeline-node:nth-child(4) { animation-delay: 0.6s; }
.timeline-node:nth-child(5) { animation-delay: 0.8s; }
.timeline-node:nth-child(6) { animation-delay: 1.0s; }

.timeline-node-icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--pv-primary-mid);
  border: 4px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 77, 136, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 24px;
  position: relative;
}
.timeline-node-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 156, 141, 0.4);
  opacity: 0;
  transform: rotate(0deg) scale(0.8);
  transition: all 0.5s ease;
}

.timeline-node:hover .timeline-node-icon {
  background: var(--pv-primary-mid);
  color: #fff;
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 156, 141, 0.3);
}
.timeline-node:hover .timeline-node-icon::after {
  opacity: 1;
  transform: rotate(180deg) scale(1);
}

.timeline-node span:last-child {
  font-size: 20px;
  font-weight: 700;
  color: var(--pv-primary); 
  transition: color 0.3s ease;
}
.timeline-node:hover span:last-child {
  color: var(--pv-primary-mid);
}

@keyframes fillTimelineH {
  to { transform: scaleX(1); }
}
@keyframes slideUpNodeH {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .timeline-journey {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .timeline-line {
    top: 0; left: 50%; width: 4px; height: 100%; transform: translateX(-50%);
  }
  .timeline-line-fill {
    background: linear-gradient(to bottom, var(--pv-primary) 0%, var(--pv-primary-mid) 100%);
    transform-origin: top;
    transform: scaleX(1);
    transform: scaleY(0);
    animation: fillTimelineV 2s ease 0.5s forwards;
  }
  .timeline-node {
    width: 100%;
  }
}
@keyframes fillTimelineV {
  to { transform: scaleY(1); }
}

/* =====================================================================
   PREMIUM ENTERPRISE CTA
   ===================================================================== */
.premium-enterprise-cta {
  position: relative;
  background: #FFFFFF;
  border-top: 1px solid rgba(0,77,136,0.1);
  border-bottom: 1px solid rgba(0,77,136,0.1);
  padding: 100px 0;
  overflow: hidden;
}

.premium-enterprise-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,77,136,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,77,136,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-left h2 {
  font-family: var(--pv-font-display);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: var(--pv-primary);
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-left p {
  font-size: 16px;
  color: var(--pv-ink-soft);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.feature-chips .chip {
  background: #FFFFFF;
  border: 1px solid rgba(0,156,141,0.25);
  color: var(--pv-primary);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0,77,136,0.04);
}

.feature-chips .chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pv-primary-mid);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-liquid {
  position: relative;
  overflow: hidden;
  background: var(--pv-primary);
  color: #fff;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 10px 25px rgba(0,77,136,0.25);
}

.btn-liquid::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: shine 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-liquid:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,77,136,0.35);
  color: #fff;
}

.btn-liquid-outline {
  background: rgba(255,255,255,0.9);
  color: var(--pv-primary);
  border: 1.5px solid rgba(0,77,136,0.3);
  box-shadow: 0 5px 15px rgba(0,77,136,0.05);
}
.btn-liquid-outline::after { display: none; }
.btn-liquid-outline:hover {
  background: #FFFFFF;
  border-color: var(--pv-primary);
  color: var(--pv-primary);
  box-shadow: 0 10px 25px rgba(0,77,136,0.15);
}

@keyframes shine {
  0% { left: -100%; }
  15% { left: 200%; }
  100% { left: 200%; }
}

/* Infographic */
.cta-infographic {
  position: relative;
  width: 100%;
  height: 450px;
}

.valbio-node {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: #FFFFFF;
  border: 2px solid var(--pv-primary-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: var(--pv-primary);
  z-index: 10;
  box-shadow: 0 0 40px rgba(0,156,141,0.2), inset 0 0 15px rgba(0,77,136,0.05);
  animation: floatNode 6s ease-in-out infinite;
}

.info-glass-card {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,77,136,0.15);
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--pv-primary);
  box-shadow: 0 12px 30px rgba(0,77,136,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatCard 5s ease-in-out infinite alternate;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}

.info-glass-card:hover {
  background: #FFFFFF;
  border-color: var(--pv-primary-mid);
  cursor: default;
}

.info-glass-card::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pv-primary-mid);
}

/* Positions around the center */
.card-1 { left: 25%; top: 15%; animation-delay: 0s; }
.card-2 { left: 75%; top: 20%; animation-delay: -1s; }
.card-3 { left: 85%; top: 55%; animation-delay: -2s; }
.card-4 { left: 70%; top: 85%; animation-delay: -3s; }
.card-5 { left: 20%; top: 75%; animation-delay: -4s; }

.cta-svg-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-svg-lines line {
  stroke: rgba(0,156,141,0.5);
  stroke-width: 2px;
  stroke-dasharray: 6 8;
  animation: marchLines 15s linear infinite;
}

@keyframes floatNode {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); box-shadow: 0 15px 45px rgba(0,156,141,0.3), inset 0 0 15px rgba(0,77,136,0.05); }
}

@keyframes floatCard {
  0% { transform: translate(-50%, -50%) translateY(0px); }
  100% { transform: translate(-50%, -50%) translateY(-8px); }
}

@keyframes marchLines {
  to { stroke-dashoffset: -200; }
}

@media (max-width: 992px) {
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-left { text-align: center; }
  .cta-left p { margin-left: auto; margin-right: auto; }
  .feature-chips { justify-content: center; }
  .cta-actions { justify-content: center; }
  .cta-infographic { height: 350px; }
}

@media (max-width: 576px) {
  .cta-infographic { display: none; }
}


/* =====================================================================
   08 · INFOGRAPHIC TREE
   ===================================================================== */
.pv-infographic-tree {
  background: #FFFFFF; /* White background as requested */
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  color: #004D88; /* Navy text */
}

/* Subtle background texture */
.pv-infographic-tree::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 156, 141, 0.03) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.pv-tree-container {
  position: relative;
  width: 1000px;
  height: 600px;
  margin: 0 auto;
  z-index: 1;
}

/* ================= CENTER CIRCLE ================= */
.pv-tree-center {
  position: absolute;
  top: 60px;
  left: 0;
  width: 480px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  animation: floatCircle 6s ease-in-out infinite;
}

@keyframes floatCircle {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.pv-tree-center-content {
  position: relative;
  width: 380px;
  height: 380px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  z-index: 3;
  box-shadow: 0 15px 50px rgba(0, 77, 136, 0.1);
}

.pv-tree-center-border {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #009C8D, #004D88);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  opacity: 0.5;
}

.pv-tree-center .pv-tree-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: #009C8D;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.pv-tree-center h2 {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #009C8D, #004D88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 16px;
  line-height: 1.2;
}

.pv-tree-center hr {
  width: 40px;
  border: none;
  border-top: 2px solid #009C8D;
  margin: 0 0 16px;
}

.pv-tree-center p {
  font-size: 13px;
  line-height: 1.6;
  color: #004D88;
  margin: 0;
}

/* ================= CONNECTOR LINES ================= */
.pv-tree-connectors {
  position: absolute;
  top: 0; left: 0;
  width: 1000px; height: 600px;
  z-index: 1;
  pointer-events: none;
}

.pv-conn-curve {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pv-visible .pv-conn-curve { stroke-dashoffset: 0; }

.pv-conn-dot {
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pv-visible .pv-conn-dot { opacity: 1; transform: scale(1); }

/* Hover Animations for Connectors */
.pv-tree-container:has(.pv-pill-card:hover) .pv-conn-curve {
  opacity: 0.15;
}
.pv-tree-container:has(.pv-pill-card:hover) .pv-conn-dot {
  opacity: 0.15;
}

.pv-tree-container:has(.pv-pill-card:nth-child(1):hover) #conn-1,
.pv-tree-container:has(.pv-pill-card:nth-child(2):hover) #conn-2,
.pv-tree-container:has(.pv-pill-card:nth-child(3):hover) #conn-3,
.pv-tree-container:has(.pv-pill-card:nth-child(4):hover) #conn-4,
.pv-tree-container:has(.pv-pill-card:nth-child(5):hover) #conn-5 {
  opacity: 1;
  stroke-width: 4px;
}

.pv-tree-container:has(.pv-pill-card:nth-child(1):hover) #dot-1,
.pv-tree-container:has(.pv-pill-card:nth-child(2):hover) #dot-2,
.pv-tree-container:has(.pv-pill-card:nth-child(3):hover) #dot-3,
.pv-tree-container:has(.pv-pill-card:nth-child(4):hover) #dot-4,
.pv-tree-container:has(.pv-pill-card:nth-child(5):hover) #dot-5 {
  opacity: 1;
  transform: scale(1.6);
  fill: #004D88;
}

/* Delay connections */
.pv-conn-curve:nth-of-type(2) { transition-delay: 0.2s; }
.pv-conn-curve:nth-of-type(3) { transition-delay: 0.4s; }
.pv-conn-curve:nth-of-type(4) { transition-delay: 0.6s; }
.pv-conn-curve:nth-of-type(5) { transition-delay: 0.8s; }

.pv-conn-dot:nth-of-type(6) { transition-delay: 0.1s; }
.pv-conn-dot:nth-of-type(7) { transition-delay: 0.3s; }
.pv-conn-dot:nth-of-type(8) { transition-delay: 0.5s; }
.pv-conn-dot:nth-of-type(9) { transition-delay: 0.7s; }
.pv-conn-dot:nth-of-type(10) { transition-delay: 0.9s; }

/* ================= RIGHT SIDE CARDS ================= */
.pv-tree-cards {
  position: absolute;
  top: 50px;
  right: 0;
  width: 450px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  gap: 28px;
}

.pv-pill-card {
  background: #FFFFFF;
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 12px 24px 12px 12px;
  gap: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateX(40px);
  box-shadow: 0 5px 20px rgba(0, 77, 136, 0.08);
  cursor: pointer;
}

/* Gradient Borders */
.pv-pill-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(0,156,141,0.3), rgba(0,77,136,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.4s ease;
}

.pv-visible .pv-pill-card {
  opacity: 1;
  transform: translateX(0);
}

.pv-visible .pv-pill-card:nth-child(1) { transition-delay: 0.8s; }
.pv-visible .pv-pill-card:nth-child(2) { transition-delay: 1.0s; }
.pv-visible .pv-pill-card:nth-child(3) { transition-delay: 1.2s; }
.pv-visible .pv-pill-card:nth-child(4) { transition-delay: 1.4s; }
.pv-visible .pv-pill-card:nth-child(5) { transition-delay: 1.6s; }

/* Interactive Hover */
.pv-pill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 77, 136, 0.15);
}

.pv-pill-card:hover::before {
  background: linear-gradient(135deg, #009C8D, #004D88);
}

.pv-pill-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 156, 141, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pv-font-display, "Plus Jakarta Sans", sans-serif);
  font-size: 20px;
  font-weight: 800;
  color: #009C8D;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.pv-pill-card:hover .pv-pill-number {
  background: linear-gradient(135deg, #009C8D, #004D88);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,156,141,0.3);
}

.pv-pill-content {
  flex: 1;
}

.pv-pill-content h4 {
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #009C8D, #004D88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pv-pill-content p {
  font-size: 12px;
  line-height: 1.4;
  color: #004D88;
  margin: 0;
}

/* =====================================================================
   RESPONSIVE LAYOUT FOR INFOGRAPHIC
   ===================================================================== */
@media (max-width: 1050px) {
  .pv-infographic-tree {
    padding: 60px 0;
  }
  .pv-tree-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .pv-tree-connectors {
    display: none; /* Hide SVG connectors on mobile/tablet */
  }

  .pv-tree-center {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 440px;
    top: auto; left: auto;
  }
  .pv-tree-center-content {
    width: 320px; height: 320px;
    padding: 30px;
  }

  .pv-tree-cards {
    position: relative;
    top: auto; right: auto;
    width: 100%;
    max-width: 500px;
    height: auto;
    gap: 16px;
  }
  
  /* Vertical Timeline Connectors for Mobile/Tablet */
  .pv-tree-cards::before {
    content: '';
    position: absolute;
    top: -40px;
    bottom: 20px;
    left: 37px;
    width: 2.5px;
    background: linear-gradient(180deg, #009C8D, #004D88);
    z-index: 0;
  }
}

@media (max-width: 576px) {
  .pv-tree-center {
    height: 320px;
  }
  .pv-tree-center-content {
    width: 280px; height: 280px;
    padding: 20px;
  }
  .pv-tree-center h2 { font-size: 22px; }
  
  .pv-tree-cards::before {
    left: 27px;
  }
  .pv-pill-card {
    padding: 10px 15px 10px 10px;
    border-radius: 30px;
  }
  .pv-pill-card::before {
    border-radius: 30px;
  }
  .pv-pill-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* =====================================================================
   GLOBAL MOBILE RESPONSIVENESS FIXES
   ===================================================================== */
@media (max-width: 768px) {
  body, html { overflow-x: hidden; width: 100%; }
  
  .pv-section, .pv-compare, .pv-infographic-tree, .pv-why {
    padding: 50px 15px !important;
    overflow: hidden;
  }
  
  .pv-tree-svg-container, .pv-tree-connectors {
    display: none !important;
  }

  .pv-tree-container {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;
  }
  
  .pv-tree-center {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    animation: none !important;
  }
  
  .pv-tree-center-content {
    width: 100% !important;
    height: auto !important;
    padding: 40px 20px !important;
    border-radius: 24px !important;
  }
  .pv-tree-center-border {
    border-radius: 24px !important;
  }

  .pv-tree-cards {
    position: relative !important;
    width: 100% !important;
    top: auto !important;
    right: auto !important;
    height: auto !important;
    gap: 20px !important;
  }
  
  .pv-tree-cards::before {
    left: 20px !important;
    top: 0 !important;
    bottom: 0 !important;
  }
  
  .pv-pill-card {
    padding: 15px !important;
    border-radius: 24px !important;
    transform: none !important;
    opacity: 1 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .pv-pill-card::before {
    border-radius: 24px !important;
  }
  .pv-pill-number {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
    position: relative !important;
    z-index: 2;
  }
  
  /* Fix Bento */
  .visual-feature-block { padding: 0 !important; }
  .bento-content-bottom, .bento-content-left { padding: 24px !important; }
  .bento-hero-img { height: 220px !important; }
  .bento-asym-item { padding: 0 !important; }
  .bento-img-right, .bento-img-top { margin: 15px auto !important; display: block; max-width: 80%; }
}


/* =====================================================================
   REDESIGNED PREMIUM SECTIONS (4 SECTIONS)
   ===================================================================== */
/* Global / Helpers */
.bg-light-gradient { background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%); }
.bg-light { background: #fdfdfd; }

/* 1. Feature Dashboard (Replaces Split Layout) */
.pv-feature-dashboard {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.feature-dash-header {
  text-align: center;
  max-width: 600px;
}
.feature-dash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}
.dash-card {
  background: #ffffff;
  border: 1px solid rgba(0, 77, 136, 0.08);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.dash-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,77,136,0.1);
  border-color: rgba(0,156,141,0.3);
}
.dash-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,156,141,0.1), rgba(0,77,136,0.05));
  color: #009C8D;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.dash-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #004D88;
  margin-bottom: 5px;
}
.dash-text p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* 2. Extended Compliance Team (Replaces Bento) */
.pv-extended-team { padding: 80px 0; }
.extended-header { text-align: center; max-width: 600px; margin: 0 auto 40px auto; }
.extended-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ext-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,156,141,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ext-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,77,136,0.1); }
.ext-card-main {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 380px;
  background: linear-gradient(135deg, #004D88, #009C8D);
  color: white;
  justify-content: flex-end;
}
.ext-bg {
  position: absolute;
  right: -20%;
  top: -10%;
  height: 120%;
  opacity: 0.8;
  object-fit: contain;
  pointer-events: none;
}
.ext-card-main .ext-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}
.ext-card-main h3 { font-size: 32px; color: white; margin-bottom: 10px; font-weight: 800; }
.ext-card-main p { color: rgba(255,255,255,0.9); font-size: 16px; }
.ext-card h4 { font-size: 18px; color: #004D88; margin-bottom: 5px; font-weight: 700; }
.ext-card p { font-size: 13px; color: #666; margin: 0; }
.ext-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  align-self: flex-end;
  margin-top: 20px;
}

/* 3. Journey Stepper (Replaces Timeline) */
.journey-stepper {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 40px;
  position: relative;
}
.journey-stepper::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,156,141,0.2), rgba(0,77,136,0.2));
  z-index: 1;
}
.step-card {
  background: #fff;
  border: 1px solid rgba(0,156,141,0.15);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.step-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,77,136,0.1); border-color: #009C8D; }
.step-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #009C8D, #004D88);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 15px auto;
  font-weight: 800; font-size: 14px;
}
.step-card h3 { font-size: 16px; color: #004D88; font-weight: 700; margin-bottom: 5px; }
.step-card p { font-size: 12px; color: #666; margin: 0; }

/* 4. Hub Spoke Grid (Replaces Orbit) */
.hub-spoke-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
}
.hub-center-logo {
  grid-column: 1 / -1;
  margin: 0 auto;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, #004D88, #009C8D);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 24px;
  box-shadow: 0 10px 30px rgba(0,156,141,0.4);
  position: relative;
  z-index: 2;
}
/* 4. Capability Cards Grid */
.pv-capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}
.pv-capability-card {
    background: #fff;
    border: 1px solid rgba(0, 77, 136, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 77, 136, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.pv-capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 77, 136, 0.12);
    border-color: var(--pv-secondary);
}
.pv-capability-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--pv-bg-light);
    color: var(--pv-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.pv-capability-card:hover .icon-wrapper {
    background: var(--grad-brand);
    color: #fff;
    transform: scale(1.1);
}
.pv-capability-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pv-primary-dark);
    margin-bottom: 12px;
}
.pv-capability-card p {
    font-size: 15px;
    color: var(--pv-ink-soft);
    line-height: 1.6;
    margin: 0;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

/* Responsive adjustments */
@media (max-width: 992px) {
  .feature-dash-grid { grid-template-columns: 1fr; }
  .extended-grid { grid-template-columns: 1fr 1fr; }
  .ext-card-main { grid-column: 1 / -1; grid-row: auto; min-height: 250px; }
  .journey-stepper { flex-direction: column; }
  .journey-stepper::before { top: 0; bottom: 0; left: 40px; width: 2px; height: 100%; }
  .step-card { display: flex; text-align: left; align-items: center; padding: 15px 20px; gap: 20px; }
  .step-num { margin: 0; }
  .hub-spoke-grid { grid-template-columns: 1fr; gap: 15px; }
}
@media (max-width: 768px) {
  .extended-grid { grid-template-columns: 1fr; }
  .ext-bg { opacity: 0.2; right: 0; }
  .ext-card-main .ext-content { max-width: 100%; }
}


/* =====================================================================
   USER FEEDBACK TWEAKS
   ===================================================================== */
/* 1. Center the video caption */
.tkx-hero-frame-caption {
    width: 100%;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 30px;
    position: absolute;
    z-index: 10;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* 2. Bento Grid Hero Card - Use Facility Image and improve text visibility */
.ext-card-main {
    background: linear-gradient(135deg, rgba(0, 77, 136, 0.85), rgba(0, 156, 141, 0.9)), url('../img/incep/facility-qulification-havco.jpg') center/cover !important;
}
.ext-card-main h3 {
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}
.ext-card-main p {
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    color: #ffffff !important;
    font-weight: 500;
}

/* 3. Closing CTA Redesign - Brand Colors & Better Design */
.closing-card {
    background: linear-gradient(135deg, #004D88, #002340) !important;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 77, 136, 0.2);
    border: 1px solid rgba(0, 156, 141, 0.2);
}
.closing-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; right: -50%; bottom: -50%;
    background: radial-gradient(circle at center, rgba(0, 156, 141, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 6s infinite;
}
.btn-closing-primary {
    background: #009C8D !important;
    color: #fff !important;
    border: 1px solid #009C8D !important;
}
.btn-closing-primary:hover {
    background: #007A6D !important;
    box-shadow: 0 10px 25px rgba(0, 156, 141, 0.4) !important;
}
.btn-closing-secondary {
    background: transparent !important;
    border-color: #009C8D !important;
    color: #009C8D !important;
}
.btn-closing-secondary:hover {
    background: rgba(0, 156, 141, 0.1) !important;
}


/* =====================================================================
   NEW CLOSING CTA LAYOUT (SPLIT)
   ===================================================================== */
.premium-closing-cta {
    padding: 100px 0;
    background: var(--pv-bg-light);
}
.closing-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 77, 136, 0.08);
    border: 1px solid rgba(0, 156, 141, 0.1);
}
.closing-split-content h2 {
    font-family: var(--pv-font-display);
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 800;
    color: var(--pv-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}
.closing-split-content h3 {
    font-family: var(--pv-font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--pv-secondary);
    margin-bottom: 24px;
    line-height: 1.4;
}
.closing-split-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}
.closing-split .closing-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: none;
}
.closing-split-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--pv-primary) 0%, #032b4d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.2);
}
.closing-split-visual::before {
    content: "";
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0, 156, 141, 0.4) 0%, transparent 50%);
    animation: rotateGlow 15s linear infinite;
    pointer-events: none;
}
.closing-split-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.visual-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.5px;
}
.closing-split-visual img {
    /* Keep it visible for the logo */
    position: relative;
    z-index: 2;
}

.closing-split-logo {
    width: 180px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}
@media (max-width: 991px) {
    .closing-split {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }
    .closing-split-visual {
        min-height: 250px;
    }
}


/* =====================================================================
   08 A NEW ELEMENTS (DIVIDERS, INLINE CTA, FAQ)
   ===================================================================== */
/* SECTION DIVIDER */
.pv-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 156, 141, 0.4), transparent);
    margin: 0;
    border: none;
    position: relative;
    z-index: 5;
}

/* INLINE CTA (LEADS STRIP) */
.pv-inline-cta {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
}
.pv-inline-cta-inner {
    background: linear-gradient(135deg, rgba(0, 77, 136, 0.05), rgba(0, 156, 141, 0.08));
    border: 1px solid rgba(0, 156, 141, 0.15);
    border-radius: 100px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.pv-inline-cta h4 {
    font-family: var(--pv-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--pv-primary);
    margin: 0;
}
.pv-inline-cta p {
    font-size: 15px;
    color: #555;
    margin: 4px 0 0 0;
}
.pv-inline-cta .btn {
    white-space: nowrap;
    padding: 14px 32px;
}
@media (max-width: 768px) {
    .pv-inline-cta-inner {
        flex-direction: column;
        text-align: center;
        border-radius: 24px;
        padding: 30px 20px;
    }
}

/* FAQ SECTION */
.pv-faq {
    padding: 100px 0;
    background: #fdfdfd;
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(0, 77, 136, 0.1);
    margin-bottom: 16px;
    padding-bottom: 16px;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 16px 0;
    font-family: var(--pv-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--pv-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--pv-secondary);
}
.faq-icon {
    font-size: 24px;
    color: var(--pv-secondary);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    padding-bottom: 24px;
    margin: 0;
}

/* =====================================================================
   NEW LAYOUT COMPONENTS (DIVIDER & INLINE CTA)
   ===================================================================== */
.pv-section-divider {
    padding: 0;
    margin: 0;
    background: transparent;
}
.pv-section-divider hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 77, 136, 0.1) 20%, rgba(0, 77, 136, 0.1) 80%, transparent 100%);
    margin: 0;
}

.inline-cta-bar {
    padding: 60px 20px;
    background: transparent;
}
.inline-cta-bar .container-xl {
    max-width: 1000px;
}
.inline-cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fcfb 100%);
    border: 1px solid rgba(0, 156, 141, 0.15);
    box-shadow: 0 15px 35px rgba(0, 77, 136, 0.08);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.inline-cta-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(0, 156, 141, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.inline-cta-text {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--pv-font-display);
    color: var(--pv-primary);
    margin: 0;
    flex: 1;
    min-width: 300px;
}
.inline-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pv-secondary) !important;
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 156, 141, 0.2);
}
.inline-cta-btn i {
    color: #ffffff !important;
}
.inline-cta-btn:hover {
    background: var(--pv-primary) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 77, 136, 0.3);
}

/* =====================================================================
   NEW ENTERPRISE SECTIONS
   ===================================================================== */

/* 1. Who Can Benefit (Icon Cards) */
.pv-benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.pv-benefit-card {
    background: #fff;
    border: 1px solid rgba(0, 156, 141, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.pv-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 77, 136, 0.08);
    border-color: rgba(0, 156, 141, 0.3);
}
.pv-benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 156, 141, 0.1);
    color: var(--pv-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: all 0.3s ease;
}
.pv-benefit-card:hover .pv-benefit-icon {
    background: var(--pv-secondary);
    color: #fff;
}
.pv-benefit-card h4 {
    font-family: var(--pv-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--pv-primary);
    margin: 0;
}

/* 2. Compliance Experts (Profile/Service Cards) */
.pv-expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}
.pv-expert-grid::before {
    content: "";
    position: absolute;
    top: -20%; left: -20%; right: -20%; bottom: -20%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(0, 156, 141, 0.25), transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(0, 77, 136, 0.2), transparent 40%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}
.pv-expert-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: 45px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
      0 20px 40px rgba(0, 77, 136, 0.1),
      inset 0 4px 18px rgba(255, 255, 255, 0.5);
}
.pv-expert-card::after {
    content: "";
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.7s;
    z-index: 0;
    pointer-events: none;
}
.pv-expert-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 
      0 30px 60px rgba(0, 156, 141, 0.2),
      inset 0 6px 24px rgba(255, 255, 255, 0.8);
    transform: translateY(-10px) scale(1.02);
}
.pv-expert-card:hover::after {
    left: 200%;
}
.pv-expert-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--pv-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.pv-expert-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* 3. Flexible Engagement Models */
.pv-engagement-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.pv-engagement-card {
    background: var(--grad-brand);
    color: #fff;
    border-radius: 20px;
    padding: 40px;
    width: calc(33.333% - 20px);
    min-width: 300px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.pv-engagement-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.pv-engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 77, 136, 0.3);
}
.pv-engagement-card:hover::before {
    transform: scale(1.5);
}
.pv-engagement-icon {
    font-size: 32px;
    color: #ffffff !important;
    margin-bottom: 20px;
}
.pv-engagement-icon svg {
    color: #ffffff !important;
}
.pv-engagement-card h4 {
    font-family: var(--pv-font-display);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    margin-bottom: 15px;
}
.pv-engagement-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.6;
}

/* 4. Why Partner (KPI/Value Cards) */
.pv-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}
.pv-value-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}
.pv-value-card:hover {
    border-color: var(--pv-secondary);
    box-shadow: 0 10px 30px rgba(0, 156, 141, 0.1);
}
.pv-value-icon {
    color: var(--pv-secondary);
    font-size: 24px;
}
.pv-value-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--pv-primary);
    margin: 0;
}

/* 5. Modern FAQ Accordion */
.pv-faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}
.pv-faq-item {
    border-bottom: 1px solid rgba(0, 77, 136, 0.1);
}
.pv-faq-item:last-child {
    border-bottom: none;
}
.pv-faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--pv-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}
.pv-faq-question:hover {
    color: var(--pv-secondary);
}
.pv-faq-icon {
    font-size: 20px;
    color: var(--pv-secondary);
    transition: transform 0.3s ease;
}
.pv-faq-item.active .pv-faq-icon {
    transform: rotate(45deg);
}
.pv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.pv-faq-answer p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    padding-bottom: 24px;
    margin: 0;
}

/* =====================================================================
   GLASSMORPHISM & PREMIUM CARDS
   ===================================================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05) !important;
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: var(--my, 50%);
    left: var(--mx, 50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 156, 141, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}
.glass-card:hover::before {
    opacity: 1;
}
.glass-card > * {
    position: relative;
    z-index: 1;
}

.premium-glass {
    background: var(--grad-brand) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2) !important;
}

/* =====================================================================
   CONTINUOUS COMPLIANCE STEPPER (SCREENSHOT STYLE)
   ===================================================================== */
.pv-screenshot-stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}
.pv-screenshot-stepper .stepper-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--pv-secondary);
    z-index: 0;
}
.step-node {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}
.step-icon-wrap {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 77, 136, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}
.step-icon-wrap::before {
    content: '';
    position: absolute;
    top: var(--my, 50%);
    left: var(--mx, 50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 156, 141, 0.2) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}
.step-icon-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 156, 141, 0.2);
    border-color: rgba(0, 156, 141, 0.3);
}
.step-icon-wrap:hover::before {
    opacity: 1;
}
.step-node h4 {
    font-family: var(--pv-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--pv-primary);
    margin: 0;
}
@media (max-width: 768px) {
    .pv-screenshot-stepper {
        flex-direction: column;
        gap: 40px;
    }
    .pv-screenshot-stepper .stepper-line {
        top: 0; bottom: 0;
        left: 50%; right: auto;
        width: 3px; height: 100%;
        transform: translateX(-50%);
    }
}
