/* ============================================
   Platynum — Shared Page Components
   Extends the Platynum design system (styles.css)
   Prefix: pg-
   Used by: index.html, branding.html, web-development.html,
            cognisol.html, ai-workshop.html, contact.html
   ============================================ */

.nav-active {
  color: var(--brand-600) !important;
  font-weight: 700 !important;
}

/* Submenu divider + label (for grouped Services menu) */
.submenu .submenu-divider {
  height: 1px;
  background: var(--line-2);
  margin: 6px 8px;
}
.submenu .submenu-label {
  display: block;
  padding: 6px 14px 4px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--light);
}

/* ============================================================
   HOMEPAGE HERO — SAFETY OVERRIDES
   The homepage slider stacks each slide in a fixed-height box,
   so a headline that wraps can collide with the progress bar.
   These rules give the headline a little more room and let the
   slide box grow instead of overlapping.
   ============================================================ */
.hero-content {
  padding-right: 48px;
  min-height: calc(100vh - var(--nav-h));
}

.slide :is(h1, h2) {
  font-size: clamp(38px, 4.1vw, 62px);
  letter-spacing: -2px;
}

/* Stack the slides in a single grid cell instead of absolute-positioning
   them. The crossfade still works, but the container now sizes itself to
   the tallest slide, so long headlines can never collide with the
   progress bar and slider controls below. */
.slides {
  display: grid;
  min-height: 0;
  flex: 0 0 auto;
}
.slides > .slide {
  position: relative;
  inset: auto;
  grid-area: 1 / 1;
}

/* The hero may now exceed one screen on short viewports — let it. */
.hero,
.hero-grid { min-height: calc(100vh - var(--nav-h)); }

@media (max-width: 1280px) {
  .slide :is(h1, h2) { font-size: clamp(36px, 4vw, 54px); }
}

@media (max-width: 960px) {
  .hero-content { min-height: 0; padding-right: 24px; }
}

/* ============================================================
   GENERIC DARK HERO (service pages)
   ============================================================ */
.pg-hero {
  position: relative;
  min-height: 92vh;
  background: var(--bg-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.pg-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(36, 48, 96,0.97) 38%, rgba(36, 48, 96,0.62) 100%),
    radial-gradient(ellipse 65% 70% at 80% 40%, rgba(23, 160, 166,0.13), transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 85%, rgba(18, 132, 140,0.07), transparent 55%);
  z-index: 1;
}

.pg-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 10%, transparent 80%);
}

.pg-hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}

.pg-eyebrow {
  background: rgba(23, 160, 166,0.1) !important;
  border-color: rgba(23, 160, 166,0.22) !important;
  color: var(--brand-300) !important;
  margin-bottom: 34px;
}

.pg-h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.0;
  letter-spacing: -2.8px;
  color: #fff;
  margin-bottom: 26px;
}

.pg-line {
  display: block;
  opacity: 0;
  transform: translateY(32px);
  animation: pgLineReveal 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.pg-line-1 { animation-delay: 0.10s; }
.pg-line-2 { animation-delay: 0.26s; }
.pg-line-3 { animation-delay: 0.42s; }

@keyframes pgLineReveal {
  to { opacity: 1; transform: translateY(0); }
}

.pg-h1 .italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-400);
  letter-spacing: -2px;
}
.pg-h1 .period { color: var(--brand-400); display: inline; }

.pg-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.pg-lead em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brand-300);
  font-size: 1.04em;
}

.pg-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

.pg-ghost-light {
  color: rgba(255,255,255,0.78) !important;
  border-color: rgba(255,255,255,0.62) !important;
}
.pg-ghost-light:hover {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.62) !important;
}

/* Stat chips */
.pg-chips { display: flex; gap: 10px; flex-wrap: wrap; }

.pg-chip {
  display: flex;
  flex-direction: column;
  padding: 12px 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: default;
}
.pg-chip:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(23, 160, 166,0.3);
  transform: translateY(-3px);
}
.pg-chip-accent {
  background: rgba(23, 160, 166,0.1);
  border-color: rgba(23, 160, 166,0.22);
}
.pg-chip-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-300);
  line-height: 1;
  letter-spacing: -0.5px;
}
.pg-chip-accent .pg-chip-val { color: #fff; }
.pg-chip-label {
  font-size: 10.5px;
  color: rgba(255,255,255,0.62);
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-top: 5px;
}

/* ============================================================
   HERO VISUAL — GLASS PANEL
   ============================================================ */
.pg-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pgCardIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pg-panel {
  background: rgba(255,255,255,0.042);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  /* extra bottom padding keeps the floating badge clear of the content */
  padding: 28px 28px 52px;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  width: 100%;
  max-width: 430px;
  box-shadow:
    0 36px 90px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(23, 160, 166,0.07),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: pgCardIn 0.9s cubic-bezier(0.2,0.8,0.2,1) 0.3s both;
}

.pg-panel-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 18px;
}

/* --- Brand identity mock (branding page) --- */
.pg-swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.pg-swatch {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.pg-swatch span {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.7);
}

.pg-logomark {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 18px;
}
.pg-logomark-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad-brand-fill);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  flex-shrink: 0;
}
.pg-logomark-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
}
.pg-logomark-text span {
  font-size: 9.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.pg-typerow {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pg-typerow div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pg-typerow div:last-child { border-bottom: none; }
.pg-typerow span {
  font-size: 11px;
  color: rgba(255,255,255,0.62);
}
.pg-typerow strong {
  font-size: 13px;
  color: var(--brand-300);
  font-weight: 600;
}

/* --- Browser mock (web page) --- */
.pg-browser {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.3);
  margin-bottom: 20px;
}
.pg-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pg-browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.pg-browser-url {
  flex: 1;
  margin-left: 8px;
  font-size: 9.5px;
  color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: 0.3px;
}
.pg-browser-body { padding: 18px 16px 20px; }
.pg-skel {
  height: 9px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 9px;
}
.pg-skel-lg { height: 18px; width: 72%; background: rgba(23, 160, 166,0.35); }
.pg-skel-md { width: 90%; }
.pg-skel-sm { width: 55%; }
.pg-skel-btn {
  height: 26px;
  width: 104px;
  border-radius: 999px;
  background: var(--grad-brand-fill);
  margin-top: 14px;
}
.pg-skel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.pg-skel-grid div {
  aspect-ratio: 4/3;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.05);
}

.pg-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pg-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 13px 12px;
}
.pg-metric-accent {
  background: rgba(23, 160, 166,0.09);
  border-color: rgba(23, 160, 166,0.18);
}
.pg-metric-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 5px;
}
.pg-metric-val {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

/* --- Education hub visual --- */
.pg-prog-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.pg-prog-card:last-child { margin-bottom: 0; }
.pg-prog-card:hover {
  border-color: rgba(23, 160, 166,0.25);
  background: rgba(23, 160, 166,0.05);
}
.pg-prog-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(23, 160, 166,0.12);
  border: 1px solid rgba(23, 160, 166,0.2);
  display: grid;
  place-items: center;
  color: var(--brand-300);
  flex-shrink: 0;
}
.pg-prog-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.pg-prog-card span {
  font-size: 11.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}

/* Floating badge */
.pg-visual-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--r-md);
  padding: 13px 18px;
  box-shadow: 0 22px 50px -10px rgba(36, 48, 96,0.4);
  animation: gentleFloat 6s ease-in-out infinite;
  z-index: 5;
}
.pg-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad-brand-fill);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pg-visual-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1;
}
.pg-visual-badge small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

/* The scroll hint is styled for the light homepage hero; on the dark service
   heroes --muted only reaches 2.2:1, so lighten it there. */
.pg-hero .scroll-hint,
.vp-hero .scroll-hint,
.dm-hero .scroll-hint,
.cog-hero .scroll-hint,
.ai-hero .scroll-hint { color: rgba(255,255,255,0.68); }

/* ============================================================
   PROBLEM SECTION (dark)
   ============================================================ */
.pg-problem {
  position: relative;
  padding: 130px 0;
  background: var(--bg-dark);
  overflow: hidden;
}
.pg-problem-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 12% 40%, rgba(23, 160, 166,0.06), transparent 65%),
    radial-gradient(ellipse 45% 50% at 88% 65%, rgba(18, 132, 140,0.05), transparent 60%);
}
.pg-problem .container { position: relative; z-index: 1; }

.pg-dark-tag {
  background: rgba(23, 160, 166,0.1) !important;
  border-color: rgba(23, 160, 166,0.2) !important;
  color: var(--brand-300) !important;
}

.pg-problem-head { text-align: center; margin-bottom: 64px; }

.pg-problem-h2 {
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -2.2px;
  line-height: 1.08;
  margin: 20px 0 0;
}
.pg-problem-h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-400);
}

.pg-problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 60px;
}

.pg-prob-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pg-prob-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23, 160, 166,0.07), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pg-prob-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 160, 166,0.2);
}
.pg-prob-card:hover::before { opacity: 1; }
.pg-prob-card-accent {
  border-color: rgba(23, 160, 166,0.15);
  background: rgba(23, 160, 166,0.055);
}

.pg-prob-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}

.pg-prob-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.62);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
.pg-prob-icon-accent {
  background: rgba(23, 160, 166,0.12);
  border-color: rgba(23, 160, 166,0.22);
  color: var(--brand-300);
}
.pg-prob-card:hover .pg-prob-icon {
  color: var(--brand-300);
  border-color: rgba(23, 160, 166,0.28);
}

.pg-prob-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.pg-prob-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

.pg-problem-closing {
  text-align: center;
  padding: 40px 48px;
  border: 1px dashed rgba(23, 160, 166,0.28);
  border-radius: var(--r-lg);
  max-width: 720px;
  margin: 0 auto;
}
.pg-problem-closing p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  color: rgba(255,255,255,0.68);
  line-height: 1.45;
  letter-spacing: -0.3px;
}

/* ============================================================
   SOLUTION — 3 STEP CARDS WITH ARROWS (light)
   ============================================================ */
.pg-solution {
  padding: 130px 0;
  background: var(--bg);
}

.pg-sol-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-top: 72px;
}

.pg-sol-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pg-sol-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand-fill);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.pg-sol-card > * { position: relative; z-index: 1; }
.pg-sol-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pg-sol-card:hover::before { opacity: 1; }

.pg-sol-card-accent {
  background: var(--bg-dark);
  border-color: rgba(255,255,255,0.62);
}
.pg-sol-card-accent.pg-sol-card-accent .pg-sol-num { color: rgba(255,255,255,0.62); }
.pg-sol-card-accent.pg-sol-card-accent h3 { color: #fff; }
.pg-sol-card-accent.pg-sol-card-accent p { color: rgba(255,255,255,0.62); }
.pg-sol-card-accent::before {
  background: linear-gradient(135deg, rgba(23, 160, 166,0.18), rgba(18, 132, 140,0.12));
}

.pg-sol-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 42px;
  font-weight: 400;
  color: rgba(36, 48, 96,0.07);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.pg-sol-icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  transition: all 0.4s ease;
}
.pg-sol-icon-1 { background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-600); }
.pg-sol-icon-2 { background: var(--bg-dark); border: 1px solid rgba(255,255,255,0.1); color: var(--brand-300); }
.pg-sol-icon-3 { background: var(--grad-brand-fill); color: var(--ink); }

.pg-sol-card:hover .pg-sol-icon {
  background: rgba(255,255,255,0.28);
  border-color: transparent;
  color: var(--ink);
  transform: scale(1.1) rotate(-5deg);
}

.pg-sol-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  transition: color 0.4s ease;
}
.pg-sol-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.68;
  transition: color 0.4s ease;
}
.pg-sol-card:hover h3 { color: var(--ink); }
.pg-sol-card:hover p { color: rgba(36, 48, 96,0.72); }

.pg-sol-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--brand-300);
  opacity: 0.55;
}

/* ============================================================
   SERVICE BENTO (dark)
   ============================================================ */
.pg-bento-section {
  padding: 130px 0;
  background: var(--bg-2);
}

.pg-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.pg-bento-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pg-bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand-fill);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}
.pg-bento-card > * { position: relative; z-index: 1; }
.pg-bento-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pg-bento-card:hover::after { opacity: 1; }

.pg-bento-featured {
  grid-column: span 2;
  background: var(--bg-dark);
  border-color: rgba(255,255,255,0.62);
}
.pg-bento-featured::after {
  background: linear-gradient(135deg, rgba(23, 160, 166,0.16), rgba(18, 132, 140,0.1));
}
.pg-bento-featured:hover { border-color: rgba(23, 160, 166,0.2); }

.pg-bento-dark {
  background: var(--bg-dark);
  border-color: rgba(255,255,255,0.62);
}
.pg-bento-dark::after {
  background: linear-gradient(135deg, rgba(23, 160, 166,0.16), rgba(18, 132, 140,0.1));
}
.pg-bento-dark:hover { border-color: rgba(23, 160, 166,0.2); }

.pg-bento-mint {
  background: var(--brand-50);
  border-color: var(--brand-100);
}
.pg-bento-mint::after { background: var(--grad-brand-fill); }

.pg-bento-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--grad-brand-fill);
  padding: 5px 14px;
  border-radius: 999px;
  z-index: 2;
}

.pg-bento-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pg-bento-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  font-weight: 400;
  color: rgba(36, 48, 96,0.1);
  line-height: 1;
  letter-spacing: -1.5px;
}
.pg-bento-featured .pg-bento-num,
.pg-bento-dark .pg-bento-num { color: rgba(255,255,255,0.62); }

.pg-bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  display: grid;
  place-items: center;
  color: var(--brand-600);
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.pg-bento-icon-light {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.62);
  color: var(--brand-300);
}
.pg-bento-icon-dark {
  background: var(--bg-dark);
  border-color: rgba(36, 48, 96,0.12);
  color: var(--brand-300);
}
.pg-bento-card:hover .pg-bento-icon {
  transform: rotate(-6deg) scale(1.05);
  background: rgba(255,255,255,0.3);
  border-color: transparent;
  color: var(--ink);
}

.pg-bento-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  line-height: 1.2;
  transition: color 0.4s ease;
}
.pg-bento-card h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-500);
}
.pg-bento-featured h3,
.pg-bento-dark h3 { color: #fff; }
.pg-bento-featured h3 em,
.pg-bento-dark h3 em { color: var(--brand-300); }

.pg-bento-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 0;
  flex: 1;
  transition: color 0.4s ease;
}
.pg-bento-featured p,
.pg-bento-dark p { color: rgba(255,255,255,0.62); }
.pg-bento-card:hover h3,
.pg-bento-featured:hover h3,
.pg-bento-dark:hover h3 { color: var(--ink); }
.pg-bento-card:hover h3 em,
.pg-bento-featured:hover h3 em,
.pg-bento-dark:hover h3 em { color: var(--ink); }
.pg-bento-card:hover p,
.pg-bento-featured:hover p,
.pg-bento-dark:hover p { color: rgba(36, 48, 96,0.72); }

.pg-bento-card .card-cta { margin-top: 24px; }
.pg-bento-featured .card-cta,
.pg-bento-dark .card-cta { color: var(--brand-300); }
.pg-bento-card:hover .card-cta,
.pg-bento-featured:hover .card-cta,
.pg-bento-dark:hover .card-cta { color: var(--ink); }

.pg-bento-tags {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.pg-bento-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--brand-600);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 4px 14px;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.pg-bento-featured .pg-bento-tags span,
.pg-bento-dark .pg-bento-tags span {
  color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.62);
}
.pg-bento-card:hover .pg-bento-tags span {
  background: rgba(36, 48, 96,0.1);
  border-color: rgba(36, 48, 96,0.15);
  color: rgba(36, 48, 96,0.72);
}

/* ============================================================
   HOW IT WORKS — VERTICAL TIMELINE (dark)
   ============================================================ */
.pg-how {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}
.pg-how-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  z-index: 0;
}
.pg-how-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 15% 45%, rgba(23, 160, 166,0.07), transparent 65%),
    radial-gradient(ellipse 45% 50% at 85% 60%, rgba(18, 132, 140,0.05), transparent 60%);
}
.pg-how .container { position: relative; z-index: 1; }

.pg-how-h2 { color: #fff !important; }
.pg-how-h2 em { color: var(--brand-400) !important; }
.pg-how-sub { color: rgba(255,255,255,0.62) !important; }

.pg-how-list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
}

.pg-how-item {
  display: grid;
  grid-template-columns: 72px 1fr 300px;
  gap: 48px;
  padding-bottom: 72px;
  align-items: start;
}
.pg-how-item-last { padding-bottom: 0; }

.pg-how-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.pg-how-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-brand-fill);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 8px 24px -4px rgba(23, 160, 166,0.4);
}
.pg-how-num-2 {
  background: var(--bg-dark);
  color: var(--brand-300);
  box-shadow: none;
  border: 1px solid rgba(23, 160, 166,0.28);
}
.pg-how-num-3 {
  background: rgba(23, 160, 166,0.1);
  color: var(--brand-300);
  box-shadow: none;
  border: 1px solid rgba(23, 160, 166,0.2);
}
.pg-how-num-4 {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.12);
}

.pg-how-line {
  width: 2px;
  flex: 1;
  margin-top: 10px;
  min-height: 60px;
  background: linear-gradient(to bottom, rgba(23, 160, 166,0.5), rgba(23, 160, 166,0.06));
  border-radius: 1px;
}

.pg-how-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-300);
  background: rgba(23, 160, 166,0.1);
  border: 1px solid rgba(23, 160, 166,0.2);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.pg-how-badge-2 {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.62);
  color: rgba(255,255,255,0.62);
}
.pg-how-badge-3 {
  background: var(--grad-brand-fill);
  border-color: transparent;
  color: var(--ink);
}

.pg-how-content h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.7px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.pg-how-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.72;
  margin-bottom: 24px;
}

.pg-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pg-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
}
.pg-check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(23, 160, 166,0.1);
  border: 1px solid rgba(23, 160, 166,0.22);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpolyline points='1,5 4,8 11,1' stroke='%2317a0a6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.pg-how-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 24px;
  align-self: start;
}
.pg-how-visual-2 {
  background: rgba(255,255,255,0.025);
  border-color: rgba(255,255,255,0.62);
}
.pg-how-visual-3 {
  background: rgba(23, 160, 166,0.07);
  border-color: rgba(23, 160, 166,0.18);
}

.pg-vis-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 16px;
}

.pg-vis-rows { display: flex; flex-direction: column; gap: 10px; }
.pg-vis-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
}
.pg-vis-row span {
  font-size: 11.5px;
  color: rgba(255,255,255,0.62);
}
.pg-vis-row strong {
  font-size: 11.5px;
  color: var(--brand-300);
  font-weight: 600;
  text-align: right;
}

.pg-vis-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pg-dot-red { background: #f87171; }
.pg-dot-yellow { background: #fbbf24; }
.pg-dot-green { background: #4ade80; }
.pg-vis-key { flex: 1; font-size: 11.5px; color: rgba(255,255,255,0.62); }
.pg-val-red { color: #fca5a5 !important; }
.pg-val-yellow { color: #fde68a !important; }

.pg-prog-wrap { margin-top: 18px; }
.pg-prog-wrap > span {
  font-size: 10px;
  font-weight: 600;
  color: var(--brand-400);
  letter-spacing: 0.5px;
}
.pg-prog-track {
  height: 6px;
  background: rgba(23, 160, 166,0.15);
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}
.pg-prog-fill {
  height: 100%;
  width: 78%;
  background: var(--grad-brand-fill);
  border-radius: 3px;
}

/* ============================================================
   TRUST / WHY US GRID (light)
   ============================================================ */
.pg-why {
  padding: 130px 0;
  background: var(--bg);
}

.pg-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 72px;
}

.pg-trust-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.pg-trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand-soft);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.pg-trust-card > * { position: relative; z-index: 1; }
.pg-trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-200);
}
.pg-trust-card:hover::before { opacity: 1; }

.pg-trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  display: grid;
  place-items: center;
  color: var(--brand-600);
  margin-bottom: 22px;
  transition: all 0.4s ease;
}
.pg-trust-icon-accent {
  background: var(--bg-dark);
  border-color: rgba(255,255,255,0.62);
  color: var(--brand-300);
}
.pg-trust-icon-mint {
  background: var(--grad-brand-fill);
  border-color: transparent;
  color: var(--ink);
}
.pg-trust-card:hover .pg-trust-icon { transform: rotate(-6deg) scale(1.05); }

.pg-trust-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.25;
}
.pg-trust-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.68;
}

/* ============================================================
   INDUSTRIES GRID (light)
   ============================================================ */
.pg-industries {
  padding: 130px 0;
  background: var(--bg-2);
}

.pg-ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 64px;
}

.pg-ind-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pg-ind-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-200);
  box-shadow: var(--shadow-sm);
  background: var(--brand-50);
}

.pg-ind-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  display: grid;
  place-items: center;
  color: var(--brand-600);
  flex-shrink: 0;
  transition: all 0.35s ease;
}
.pg-ind-card:hover .pg-ind-icon {
  background: var(--grad-brand-fill);
  border-color: transparent;
  color: var(--ink);
}

.pg-ind-card strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.pg-ind-card span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   SPLIT BENEFITS (two-column light/dark)
   ============================================================ */
.pg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pg-split-light {
  background: #f2f7fb;
  padding: 100px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.pg-split-dark {
  background: var(--bg-dark);
  padding: 100px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.pg-split-inner { max-width: 480px; width: 100%; }

.pg-split-h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  color: #243060;
  margin: 16px 0 36px;
}
.pg-split-h2 em { font-style: italic; color: var(--brand-500); }

.pg-split-h2-dark {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
  margin: 16px 0 36px;
}
.pg-split-h2-dark em { font-style: italic; color: var(--brand-400); }

.pg-ben-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pg-ben-list li { display: flex; gap: 14px; align-items: flex-start; }

.pg-ben-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(23, 160, 166,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-500);
  flex-shrink: 0;
  margin-top: 1px;
}
.pg-ben-icon-mint {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(23, 160, 166,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-400);
  flex-shrink: 0;
  margin-top: 1px;
}

.pg-ben-list strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  color: #243060;
  margin-bottom: 4px;
}
.pg-ben-list-dark strong { color: #fff !important; }

.pg-ben-list p {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.65;
  margin: 0;
}
.pg-ben-list-dark p { color: rgba(255,255,255,0.62) !important; }

/* ============================================================
   PACKAGE / DELIVERABLES GRID (light)
   ============================================================ */
.pg-deliver {
  padding: 130px 0;
  background: var(--bg);
}

.pg-deliver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.pg-deliver-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pg-deliver-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-200);
  box-shadow: var(--shadow-md);
}

.pg-deliver-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.2px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pg-deliver-card h4 svg { color: var(--brand-500); flex-shrink: 0; }

.pg-deliver-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pg-deliver-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}
.pg-deliver-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-400);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ============================================================
   TESTIMONIAL (dark)
   ============================================================ */
.pg-testimonial {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.pg-testimonial-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  z-index: 0;
}
.pg-testimonial-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(23, 160, 166,0.08), transparent 65%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(18, 132, 140,0.06), transparent 60%);
}
.pg-testimonial .container { position: relative; z-index: 1; }

.pg-t-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.pg-t-quote-mark {
  color: var(--brand-400);
  opacity: 0.45;
  margin-bottom: 28px;
  display: inline-block;
}

.pg-t-inner blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.52;
  color: rgba(255,255,255,0.82);
  letter-spacing: -0.3px;
  margin-bottom: 44px;
}

.pg-t-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pg-t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(23, 160, 166,0.1);
  border: 1.5px solid rgba(23, 160, 166,0.25);
  display: grid;
  place-items: center;
  color: var(--brand-400);
  flex-shrink: 0;
}

.pg-t-person strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}
.pg-t-person span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  margin-top: 3px;
  text-align: left;
}

/* ============================================================
   BREADCRUMB (education sub-pages)
   ============================================================ */
.pg-crumb {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-2);
  padding: 14px 0;
}
.pg-crumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
  flex-wrap: wrap;
}
.pg-crumb-inner a { color: var(--muted); transition: color 0.2s ease; }
.pg-crumb-inner a:hover { color: var(--brand-600); }
.pg-crumb-inner span[aria-current] { color: var(--ink); font-weight: 600; }
.pg-crumb-sep { color: var(--light); }

/* ============================================================
   VERTICAL NOTICE STRIP
   ============================================================ */
.pg-notice {
  background: var(--brand-50);
  border-top: 1px solid var(--brand-100);
  border-bottom: 1px solid var(--brand-100);
  padding: 22px 0;
}
.pg-notice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.pg-notice-inner p {
  font-size: 14px;
  color: var(--ink);
  margin: 0;
}
.pg-notice-inner p em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brand-600);
}
.pg-notice-inner a {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-600);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-bottom: 1.5px solid var(--brand-300);
  padding-bottom: 2px;
  transition: all 0.25s ease;
}
.pg-notice-inner a:hover { color: var(--ink); border-color: var(--ink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .pg-ind-grid { grid-template-columns: repeat(3, 1fr); }
  .pg-deliver-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .pg-hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 44px; }
  .pg-panel { max-width: 370px; }
  .pg-sol-grid { grid-template-columns: 1fr 1fr 1fr; }
  .pg-sol-arrow { display: none; }
  .pg-split { grid-template-columns: 1fr; }
  .pg-split-light,
  .pg-split-dark { padding: 80px 48px; justify-content: flex-start; }
  .pg-split-inner { max-width: 100%; }
}

@media (max-width: 960px) {
  .pg-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 56px;
    padding-bottom: 72px;
    gap: 48px;
  }
  .pg-hero-visual { order: -1; justify-content: center; }
  .pg-panel { max-width: 420px; }
  .pg-visual-badge { left: 0; bottom: -18px; }
  .pg-problem-cards { grid-template-columns: 1fr; }
  .pg-sol-grid { grid-template-columns: 1fr; gap: 20px; }
  .pg-bento { grid-template-columns: 1fr; }
  .pg-bento-featured { grid-column: span 1; }
  .pg-how-item { grid-template-columns: 56px 1fr; gap: 28px; }
  .pg-how-visual { display: none; }
  .pg-trust-grid { grid-template-columns: 1fr; }
  .pg-ind-grid { grid-template-columns: repeat(2, 1fr); }
  .pg-deliver-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pg-h1 { font-size: clamp(38px, 10vw, 56px); letter-spacing: -2px; }
  .pg-problem,
  .pg-solution,
  .pg-bento-section,
  .pg-how,
  .pg-why,
  .pg-industries,
  .pg-deliver { padding: 80px 0; }
  .pg-testimonial { padding: 80px 0; }
  .pg-chips { gap: 8px; }
  .pg-chip { flex: 1; min-width: 92px; }
  .pg-panel { padding: 22px 18px; }
  .pg-problem-closing { padding: 28px 24px; }
  .pg-sol-card { padding: 28px 22px; }
  .pg-how-item { grid-template-columns: 44px 1fr; gap: 18px; padding-bottom: 52px; }
  .pg-how-num { width: 44px; height: 44px; font-size: 13px; }
  .pg-trust-card { padding: 28px 22px; }
  .pg-split-light,
  .pg-split-dark { padding: 64px 24px; }
  .pg-metrics { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .pg-ind-grid { grid-template-columns: 1fr; }
  .pg-bento-top { flex-direction: column; gap: 14px; }
}
