/* =========================================================
   Salma.ai — Section enhancements (v2)
   Animated infographics for Values, Stack, Services, Why
   Inherits palette + Poppins from styles.css
   ========================================================= */

@media (prefers-reduced-motion: no-preference) {
  /* gate motion; static fallback otherwise */
}

/* ============================================================
   CORE VALUES — Animated orbital infographic
   ============================================================ */
.values-info {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 920px) { .values-info { grid-template-columns: 1fr; gap: 40px; } }

.values-orbit { position: relative; width: 100%; }
.values-orbit svg { width: 100%; height: auto; display: block; overflow: visible; }

/* outer dashed ring rotates slowly */
.orbit-ring { transform-origin: 260px 260px; animation: orbitSpin 60s linear infinite; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* center pulse */
.orbit-core-glow { transform-origin: 260px 260px; animation: corePulse 3.2s ease-in-out infinite; }
@keyframes corePulse { 0%,100% { opacity: .35; transform: scale(1); } 50% { opacity: .65; transform: scale(1.12); } }

/* connectors draw in when revealed */
.orbit-conn {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
}
.reveal.in .orbit-conn { animation: connDraw .9s ease forwards; }
.reveal.in .orbit-conn.c1 { animation-delay: .15s; }
.reveal.in .orbit-conn.c2 { animation-delay: .28s; }
.reveal.in .orbit-conn.c3 { animation-delay: .41s; }
.reveal.in .orbit-conn.c4 { animation-delay: .54s; }
.reveal.in .orbit-conn.c5 { animation-delay: .67s; }
@keyframes connDraw { to { stroke-dashoffset: 0; } }

/* nodes pop in */
.orbit-node { transform-box: fill-box; transform-origin: center; transform: scale(0); opacity: 0; }
.reveal.in .orbit-node { animation: nodePop .6s cubic-bezier(.34,1.56,.64,1) forwards; }
.reveal.in .orbit-node.n1 { animation-delay: .5s; }
.reveal.in .orbit-node.n2 { animation-delay: .62s; }
.reveal.in .orbit-node.n3 { animation-delay: .74s; }
.reveal.in .orbit-node.n4 { animation-delay: .86s; }
.reveal.in .orbit-node.n5 { animation-delay: .98s; }
@keyframes nodePop { to { transform: scale(1); opacity: 1; } }

.orbit-node circle { transition: r .3s ease, filter .3s ease; }
.orbit-node:hover circle.node-bg { filter: brightness(1.25); }

/* legend list */
.values-legend { display: flex; flex-direction: column; gap: 10px; }
.vlg {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
  cursor: default;
  opacity: 0; transform: translateX(16px);
}
.reveal.in .vlg { animation: vlgIn .6s ease forwards; }
.reveal.in .vlg:nth-child(1) { animation-delay: .55s; }
.reveal.in .vlg:nth-child(2) { animation-delay: .67s; }
.reveal.in .vlg:nth-child(3) { animation-delay: .79s; }
.reveal.in .vlg:nth-child(4) { animation-delay: .91s; }
.reveal.in .vlg:nth-child(5) { animation-delay: 1.03s; }
@keyframes vlgIn { to { opacity: 1; transform: translateX(0); } }
.vlg:hover { border-color: var(--gold-2); transform: translateX(4px); background: linear-gradient(180deg, rgba(149,116,68,0.1), rgba(149,116,68,0.01)); }
.vlg .vk {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 17px; color: var(--navy-3);
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  box-shadow: 0 8px 20px -8px rgba(149,116,68,0.7);
}
.vlg h3 { font-size: 19px; margin: 0 0 2px; }
.vlg .vo { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); display: block; margin-bottom: 4px; }
.vlg p { font-size: 13px; margin: 0; }

/* ============================================================
   TECH STACK — Layered architecture diagram + logos
   ============================================================ */
.stack-arch { display: flex; flex-direction: column; gap: 0; max-width: 1080px; margin: 0 auto; }
.arch-layer {
  position: relative;
  display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: center;
  padding: 30px 34px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: linear-gradient(110deg, rgba(149,116,68,0.10), rgba(255,255,255,0.02));
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  opacity: 0; transform: translateY(22px);
}
.reveal.in .arch-layer { animation: archIn .7s ease forwards; }
.reveal.in .arch-layer:nth-child(1) { animation-delay: .05s; }
.reveal.in .arch-layer:nth-child(3) { animation-delay: .22s; }
.reveal.in .arch-layer:nth-child(5) { animation-delay: .39s; }
.reveal.in .arch-layer:nth-child(7) { animation-delay: .56s; }
@keyframes archIn { to { opacity: 1; transform: translateY(0); } }
.arch-layer:hover { border-color: var(--gold-2); transform: translateY(-3px); box-shadow: 0 26px 54px -28px rgba(149,116,68,0.5); }
@media (max-width: 760px) { .arch-layer { grid-template-columns: 1fr; gap: 18px; padding: 24px; } }

.arch-label { display: flex; flex-direction: column; gap: 6px; }
.arch-label .ai { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--gold-2); }
.arch-label .ak { font-size: clamp(18px, 1.8vw, 23px); font-weight: 600; color: var(--white); letter-spacing: -0.02em; line-height: 1.1; }
.arch-label .as { font-size: 12px; color: rgba(255,255,255,0.55); }

.arch-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.logo-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 16px 11px 13px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(15,22,32,0.55);
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9);
  transition: all .25s ease;
}
.logo-chip:hover { border-color: var(--gold-2); background: rgba(149,116,68,0.12); transform: translateY(-2px); }
.logo-chip img { width: 22px; height: 22px; display: block; object-fit: contain; }
.logo-chip .mono {
  width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center;
  font-size: 12px; font-weight: 800; color: var(--navy-3);
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
}

/* connector between layers */
.arch-conn { display: grid; place-items: center; height: 34px; position: relative; }
.arch-conn::before {
  content: ""; width: 2px; height: 100%;
  background: linear-gradient(180deg, rgba(149,116,68,0.7), rgba(149,116,68,0.15));
}
.arch-conn span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy-3); border: 1px solid rgba(149,116,68,0.5);
  display: grid; place-items: center; color: var(--gold-2); font-size: 11px;
}

.stack-foot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; max-width: 1080px; margin-left: auto; margin-right: auto; }
@media (max-width: 700px) { .stack-foot { grid-template-columns: 1fr; } }
.stack-foot .sf {
  padding: 18px 22px; border: 1px solid var(--border); border-radius: var(--r-md);
  background: rgba(255,255,255,0.02);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.stack-foot .sf::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-3)); box-shadow: 0 0 14px var(--gold-2); flex-shrink: 0; }

/* ============================================================
   CORE SERVICES — Categorized icon cards
   ============================================================ */
.svc-cat { margin-bottom: 44px; }
.svc-cat:last-child { margin-bottom: 0; }
.svc-cat-head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.svc-cat-head .cn { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.svc-cat-head .ct { font-size: 12px; color: var(--gray); font-weight: 500; white-space: nowrap; }
.svc-cat-head .line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(149,116,68,0.4), transparent); }

.svc2-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1100px) { .svc2-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .svc2-grid { grid-template-columns: 1fr; } }

.svc2 {
  position: relative; overflow: hidden;
  padding: 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #fff, var(--gray-tint));
  border: 1px solid rgba(32,42,57,0.1);
  min-height: 232px;
  display: flex; flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  box-shadow: 0 16px 36px -24px rgba(32,42,57,0.3);
}
.svc2::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.svc2:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 26px 54px -22px rgba(149,116,68,0.4); }
.svc2:hover::after { transform: scaleX(1); }
.svc2-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.svc2-ico {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(149,116,68,0.16), rgba(149,116,68,0.04));
  border: 1px solid rgba(149,116,68,0.28);
  transition: background .3s ease, transform .3s ease;
}
.svc2:hover .svc2-ico { background: linear-gradient(135deg, var(--gold), var(--gold-2)); transform: rotate(-6deg) scale(1.05); }
.svc2-ico svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.6; transition: stroke .3s ease; }
.svc2:hover .svc2-ico svg { stroke: #fff; }
.svc2-num { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--gray); }
.svc2 h3 { font-size: 19px; color: var(--navy); margin: 0 0 6px; letter-spacing: -0.01em; }
.svc2 p { font-size: 13px; color: #4a5568; margin: 0; }
.svc2-go {
  margin-top: auto; padding-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--gold);
}
.svc2-go .arr { transition: transform .25s ease; }
.svc2:hover .svc2-go .arr { transform: translateX(4px); }

/* wide security card */
.svc2.wide { grid-column: span 4; min-height: 0; }
@media (max-width: 1100px) { .svc2.wide { grid-column: span 2; } }
@media (max-width: 540px) { .svc2.wide { grid-column: span 1; } }
.svc2.wide { flex-direction: row; align-items: center; gap: 24px; padding: 26px 30px; }
.svc2.wide .svc2-body { flex: 1; }
.svc2.wide .svc2-go { margin-top: 0; padding-top: 0; }
@media (max-width: 700px) { .svc2.wide { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   WHY CHOOSE — Stat counters + differentiator bar chart
   ============================================================ */
.why-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 48px;
}
@media (max-width: 820px) { .why-stats { grid-template-columns: repeat(2, 1fr); } }
.why-stat {
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  text-align: left;
  box-shadow: 0 18px 40px -26px rgba(0,0,0,0.55);
}
.why-stat .wk {
  font-size: clamp(40px, 4.4vw, 58px); font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.why-stat .wk .u { font-size: 0.5em; font-weight: 600; margin-left: 2px; }
.why-stat .wl { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; margin-top: 12px; line-height: 1.4; }

.why-bars-wrap { display: grid; grid-template-columns: 1fr; gap: 14px; }
.why-bars-head { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; margin-bottom: 4px; }
.wbar {
  display: grid; grid-template-columns: 270px 1fr 52px; gap: 22px; align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.wbar:last-child { border-bottom: 1px solid var(--border); }
@media (max-width: 760px) {
  .wbar { grid-template-columns: 1fr 44px; grid-template-areas: "label val" "track track"; gap: 8px 14px; }
  .wbar .wb-label { grid-area: label; }
  .wbar .wb-val { grid-area: val; }
  .wbar .wb-track { grid-area: track; }
}
.wb-label { display: flex; align-items: center; gap: 12px; }
.wb-label .wb-ic {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(149,116,68,0.22), rgba(149,116,68,0.04));
  border: 1px solid rgba(149,116,68,0.3);
}
.wb-label .wb-ic svg { width: 18px; height: 18px; stroke: var(--gold-3); fill: none; stroke-width: 1.7; }
.wb-label .wb-t { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); line-height: 1.25; }
.wb-track { height: 12px; border-radius: 999px; background: rgba(255,255,255,0.07); overflow: hidden; }
.wb-fill {
  height: 100%; border-radius: 999px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
  box-shadow: 0 0 18px -2px rgba(149,116,68,0.7);
  transition: width 1.4s cubic-bezier(.22,.61,.36,1);
}
.reveal.in .wb-fill { width: var(--w); }
.wb-val { font-size: 15px; font-weight: 700; color: var(--gold-3); text-align: right; letter-spacing: -0.01em; }

/* ============================================================
   WHY CHOOSE v2 — icon-led strengths infographic (no numbers)
   ============================================================ */
.why-hub {
  text-align: center; max-width: 720px; margin: 0 auto 44px;
}
.why-hub .wh-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid rgba(149,116,68,0.4);
  background: linear-gradient(135deg, rgba(149,116,68,0.16), rgba(149,116,68,0.02));
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-3);
}
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .why-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-cards { grid-template-columns: 1fr; } }
.why2 {
  position: relative; overflow: hidden;
  padding: 32px 30px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  box-shadow: 0 18px 40px -26px rgba(0,0,0,0.55);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  opacity: 0; transform: translateY(22px);
}
.reveal.in .why2 { animation: archIn .65s ease forwards; }
.reveal.in .why2:nth-child(1){animation-delay:.05s}
.reveal.in .why2:nth-child(2){animation-delay:.13s}
.reveal.in .why2:nth-child(3){animation-delay:.21s}
.reveal.in .why2:nth-child(4){animation-delay:.29s}
.reveal.in .why2:nth-child(5){animation-delay:.37s}
.reveal.in .why2:nth-child(6){animation-delay:.45s}
.why2::before {
  content: ""; position: absolute; top: -50px; right: -50px;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(149,116,68,0.22), transparent 70%);
  opacity: 0; transition: opacity .35s ease;
}
.why2:hover { transform: translateY(-5px); border-color: var(--gold-2); box-shadow: 0 28px 56px -24px rgba(149,116,68,0.45); }
.why2:hover::before { opacity: 1; }
.why2 .w2-ic {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(149,116,68,0.2), rgba(149,116,68,0.04));
  border: 1px solid rgba(149,116,68,0.3);
  transition: background .35s ease, transform .35s ease;
}
.why2:hover .w2-ic { background: linear-gradient(135deg, var(--gold), var(--gold-2)); transform: rotate(-6deg) scale(1.05); }
.why2 .w2-ic svg { width: 30px; height: 30px; stroke: var(--gold-3); fill: none; stroke-width: 1.6; transition: stroke .35s ease; }
.why2:hover .w2-ic svg { stroke: #fff; }
.why2 h3 { font-size: 20px; margin: 0 0 8px; letter-spacing: -0.01em; }
.why2 p { font-size: 13.5px; margin: 0; }
.why2 .w2-tag { margin-top: 16px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; }

/* ============================================================
   OUR STORY — vertical journey timeline
   ============================================================ */
.story-tl { position: relative; max-width: 920px; margin: 0 auto; }
.story-tl::before {
  content: ""; position: absolute; left: 31px; top: 18px; bottom: 18px; width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(149,116,68,0.12));
}
@media (max-width: 600px) { .story-tl::before { left: 25px; } }
.st-item {
  position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 26px;
  padding-bottom: 30px;
  opacity: 0; transform: translateX(24px);
}
.st-item:last-child { padding-bottom: 0; }
.reveal.in .st-item { animation: stIn .65s ease forwards; }
.reveal.in .st-item:nth-child(1){animation-delay:.05s}
.reveal.in .st-item:nth-child(2){animation-delay:.18s}
.reveal.in .st-item:nth-child(3){animation-delay:.31s}
.reveal.in .st-item:nth-child(4){animation-delay:.44s}
.reveal.in .st-item:nth-child(5){animation-delay:.57s}
@keyframes stIn { to { opacity: 1; transform: translateX(0); } }
.st-dot {
  width: 64px; height: 64px; border-radius: 50%; z-index: 2;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #fff, var(--gray-tint));
  border: 2px solid var(--gold);
  box-shadow: 0 10px 24px -10px rgba(149,116,68,0.5);
}
@media (max-width: 600px) { .st-dot { width: 52px; height: 52px; } }
.st-dot svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.7; }
.st-body {
  background: #fff; border: 1px solid rgba(32,42,57,0.1);
  border-radius: var(--r-lg); padding: 24px 28px;
  box-shadow: 0 16px 36px -24px rgba(32,42,57,0.28);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.st-body:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 24px 48px -22px rgba(149,116,68,0.35); }
.st-ph { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.st-yr { font-size: 13px; font-weight: 700; color: var(--gold-2); margin-left: 8px; }
.st-body h3 { font-size: clamp(19px, 2vw, 23px); color: var(--navy); margin: 8px 0 6px; }
.st-body p { font-size: 14px; color: #4a5568; margin: 0; }

/* ============================================================
   DOCUMENT LIFECYCLE — modern process flow
   ============================================================ */
.doc-flow { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 760px) { .doc-flow { grid-template-columns: 1fr; gap: 0; } }
.df-step {
  position: relative; text-align: center; padding: 8px 6px 0;
  opacity: 0; transform: translateY(18px);
}
.reveal.in .df-step { animation: archIn .6s ease forwards; }
.reveal.in .df-step:nth-child(1){animation-delay:.05s}
.reveal.in .df-step:nth-child(2){animation-delay:.17s}
.reveal.in .df-step:nth-child(3){animation-delay:.29s}
.reveal.in .df-step:nth-child(4){animation-delay:.41s}
.reveal.in .df-step:nth-child(5){animation-delay:.53s}
/* connector line between steps (desktop) */
.df-step::after {
  content: ""; position: absolute; top: 37px; left: calc(50% + 44px); width: calc(100% - 88px); height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 7px, transparent 7px 14px);
  opacity: .5;
}
.df-step:last-child::after { display: none; }
@media (max-width: 760px) {
  .df-step { display: grid; grid-template-columns: 74px 1fr; gap: 18px; text-align: left; align-items: center; padding: 14px 0; }
  .df-step::after { top: 74px; left: 36px; width: 2px; height: calc(100% - 74px); background: repeating-linear-gradient(180deg, var(--gold) 0 7px, transparent 7px 14px); }
}
.df-ic {
  width: 74px; height: 74px; border-radius: 22px; margin: 0 auto 18px;
  display: grid; place-items: center; position: relative; z-index: 2;
  background: linear-gradient(135deg, #fff, var(--gray-tint));
  border: 1px solid rgba(149,116,68,0.3);
  box-shadow: 0 12px 28px -14px rgba(149,116,68,0.5);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
@media (max-width: 760px) { .df-ic { margin: 0; } }
.df-step:hover .df-ic { transform: translateY(-4px); background: linear-gradient(135deg, var(--gold), var(--gold-2)); border-color: var(--gold); }
.df-ic svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.6; transition: stroke .3s ease; }
.df-step:hover .df-ic svg { stroke: #fff; }
.df-step .df-k { font-size: 17px; font-weight: 600; color: var(--navy); }
.df-step .df-s { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-top: 4px; }
.df-step .df-p { font-size: 12.5px; color: #4a5568; margin-top: 8px; max-width: 30ch; margin-left: auto; margin-right: auto; }

/* ============================================================
   TRUSTED BY — premium client logo grid
   ============================================================ */
.partners-prem { display: flex; flex-direction: column; gap: 30px; }
.pp-group .pp-label {
  display: flex; align-items: center; gap: 16px; margin-bottom: 18px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
}
.pp-group .pp-label .line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(149,116,68,0.4), transparent); }
.pp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 820px) { .pp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pp-grid { grid-template-columns: 1fr; } }
.pp-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: center;
  padding: 22px 24px;
  background: #fff; border: 1px solid rgba(32,42,57,0.1);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 36px -26px rgba(32,42,57,0.28);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.pp-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 26px 50px -24px rgba(149,116,68,0.4); }
/* sheen sweep on hover */
.pp-card::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(212,177,132,0.18), transparent);
  transform: skewX(-18deg); transition: left .7s ease;
}
.pp-card:hover::after { left: 140%; }
.pp-mono {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  display: grid; place-items: center;
  font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 22px -10px rgba(149,116,68,0.7);
}
.pp-card .pp-name { font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.25; letter-spacing: -0.01em; }
.pp-card .pp-sec { font-size: 11px; color: var(--gray); margin-top: 3px; }
