/* =========================================================
   PPGL GLOBAL STYLE.CSS
========================================================= */

:root {
  color-scheme: light;

  --navy-950: #050b12;
  --navy-900: #07111d;
  --navy-850: #081827;
  --navy-800: #0b243c;
  --navy-700: #0b3c6d;

  --blue-500: #1e73be;
  --gold-500: #ffd200;
  --gold-300: #ffe66d;

  --white: #ffffff;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-900: #0f172a;

  --text: #e5edf7;
  --muted: rgba(229, 237, 247, 0.72);

  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.12);

  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 48px rgba(2, 8, 23, 0.18);

  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --max: 1240px;
}

/* =========================================================
   LIGHT MODE
========================================================= */

html[data-theme="light"] {
  color-scheme: light;

  --navy-950: #f5f7fb;
  --navy-900: #ffffff;
  --navy-850: #eef3f9;
  --navy-800: #dbe6f2;
  --navy-700: #1e73be;

  --text: #07111d;
  --muted: #334155;

  --panel: rgba(15, 23, 42, 0.055);
  --panel-strong: rgba(15, 23, 42, 0.09);
  --border: rgba(15, 23, 42, 0.16);

  --shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
  --shadow-soft: 0 18px 48px rgba(15, 23, 42, 0.11);
}

/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--navy-950);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--gold-500);
  color: var(--slate-900);
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-500), var(--blue-500));
  border-radius: 999px;
}

body::-webkit-scrollbar-track {
  background: var(--navy-950);
}

/* =========================================================
   UTILITIES
========================================================= */

.container {
  width: min(92%, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;

  background: var(--gold-500);
  color: var(--slate-900);

  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus {
  left: 10px;
}

/* =========================================================
   SECTIONS
========================================================= */

.section-dark,
.section-light {
  position: relative;
  padding: 72px 0;
}

.section-dark {
  background: linear-gradient(
    135deg,
    var(--navy-950),
    var(--navy-900) 48%,
    var(--navy-850)
  );
}

.section-light {
  background: var(--navy-900);
}

html[data-theme="light"] .section-dark {
  background: linear-gradient(135deg, #f5f7fb, #ffffff 48%, #eef3f9);
}

html[data-theme="light"] .section-light {
  background: #ffffff;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading h2,
.dashboard-copy h2,
.portal-card h2,
.cta-box h2,
.contact-copy h2 {
  color: var(--text);
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.section-heading p,
.dashboard-copy p,
.portal-card p,
.cta-box p,
.contact-copy p {
  color: var(--muted);
  max-width: 760px;
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 7px 13px;

  border-radius: 999px;
  border: 1px solid rgba(255, 210, 0, 0.28);

  background: rgba(255, 210, 0, 0.08);
  color: #b89400;

  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #b89400;
  opacity: 0.85;
}

html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] .eyebrow {
  background: rgba(255, 210, 0, 0.12);
  color: var(--gold-500);
  border-color: rgba(255, 210, 0, 0.3);
}

html[data-theme="dark"] .section-kicker::before,
html[data-theme="dark"] .eyebrow::before {
  background: var(--gold-500);
}

/* =========================================================
   HEADER / NAV
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(5, 11, 18, 0.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(22px);

  transition: 0.25s ease;
}

html[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(15, 23, 42, 0.12);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

html[data-theme="light"] .site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.nav-shell {
  min-height: 72px;

  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;

  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  min-width: max-content;
}

.brand img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16));
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

html[data-theme="light"] .brand-text small {
  color: #475569;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 0;
}

.nav-panel a,
.theme-toggle,
.nav-dropdown-toggle {
  padding: 8px 10px;

  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;

  color: var(--text);
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;

  transition: 0.22s ease;
}

html[data-theme="light"] .nav-panel a,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .nav-dropdown-toggle {
  color: #07111d;
}

.nav-panel a:hover,
.theme-toggle:hover,
.nav-dropdown-toggle:hover {
  background: var(--panel);
  border-color: var(--border);
  color: var(--gold-500);
  transform: translateY(-1px);
}

.nav-panel a.active,
.nav-dropdown-toggle.active {
  background: var(--panel);
  border-color: rgba(255, 210, 0, 0.32);
  color: var(--gold-500);
}

html[data-theme="light"] .nav-panel a.active,
html[data-theme="light"] .nav-dropdown-toggle.active {
  background: rgba(255, 210, 0, 0.08);
  border-color: rgba(255, 210, 0, 0.42);
  color: #d1a900;
}

.theme-toggle {
  cursor: pointer;
}

.candidate-portal-btn {
  background: linear-gradient(
    135deg,
    var(--gold-500),
    var(--gold-300)
  ) !important;

  color: var(--slate-900) !important;
  padding: 9px 14px !important;
  box-shadow: 0 14px 30px rgba(255, 210, 0, 0.22);
  font-weight: 900 !important;
}

.nav-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 14px;
}

.nav-toggle span {
  display: block;

  width: 18px;
  height: 2px;

  margin: 4px auto;

  background: var(--text);
  border-radius: 999px;
}

html[data-theme="light"] .nav-toggle span {
  background: #07111d;
}

/* =========================================================
   DROPDOWN
========================================================= */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;

  min-width: 235px;
  padding: 10px;

  border: 1px solid var(--border);
  border-radius: 18px;

  background: rgba(5, 11, 18, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);

  display: grid;
  gap: 4px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);

  transition: 0.2s ease;
  z-index: 2000;
}

html[data-theme="light"] .nav-dropdown-menu {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.13);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  width: 100%;

  padding: 10px 12px;
  border-radius: 12px;

  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--panel);
  color: var(--gold-500);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  min-height: auto;

  display: grid;
  align-items: center;

  overflow: hidden;

  padding: 76px 0 60px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;

  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(255, 210, 0, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 20%,
      rgba(30, 115, 190, 0.25),
      transparent 34%
    );

  animation: glowDrift 10s ease-in-out infinite alternate;
}

html[data-theme="light"] .hero::before {
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(255, 210, 0, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 20%,
      rgba(30, 115, 190, 0.16),
      transparent 34%
    );
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);

  background-size: 82px 82px;
  opacity: 0.28;

  mask-image: linear-gradient(to bottom, black, transparent 90%);
  animation: gridMove 22s linear infinite;
}

html[data-theme="light"] .hero-grid-overlay {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.055) 1px, transparent 1px);
  opacity: 0.22;
}

@keyframes gridMove {
  to {
    transform: translateY(82px);
  }
}

@keyframes glowDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(2%, -2%, 0);
  }
}

.hero-layout {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.hero h1 {
  max-width: 850px;

  font-size: clamp(2.8rem, 4.9vw, 4.85rem);
  line-height: 0.96;
  letter-spacing: -0.075em;

  margin-bottom: 18px;
}

.hero p {
  max-width: 680px;

  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.68;
}

html[data-theme="light"] .hero p {
  color: #334155;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;

  margin-top: 22px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 10px 17px;

  border-radius: 999px;
  border: 1px solid transparent;

  font-weight: 900;
  font-size: 0.82rem;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--slate-900);

  box-shadow: 0 20px 42px rgba(255, 210, 0, 0.22);
}

.btn-ghost {
  background: var(--panel);
  color: var(--text);
  border-color: var(--border);
}

html[data-theme="light"] .btn-ghost {
  color: #07111d;
  background: rgba(15, 23, 42, 0.055);
  border-color: rgba(15, 23, 42, 0.14);
}

/* =========================================================
   PILLS
========================================================= */

.cred-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 16px;
}

.cred-row span,
.pill-cloud span,
.portal-steps span {
  padding: 7px 11px;

  border-radius: 999px;
  border: 1px solid var(--border);

  background: var(--panel);

  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

html[data-theme="light"] .cred-row span,
html[data-theme="light"] .pill-cloud span,
html[data-theme="light"] .portal-steps span {
  color: #334155;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 23, 42, 0.14);
}

/* =========================================================
   CARDS
========================================================= */

.command-card,
.dashboard-card,
.portal-card,
.application-preview,
.cred-card,
.compliance-card,
.timeline article,
.cta-box,
.contact-form,
.table-wrap {
  border: 1px solid var(--border);

  background: linear-gradient(145deg, var(--panel), rgba(255, 255, 255, 0.025));

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

html[data-theme="light"] .command-card,
html[data-theme="light"] .dashboard-card,
html[data-theme="light"] .portal-card,
html[data-theme="light"] .application-preview,
html[data-theme="light"] .cred-card,
html[data-theme="light"] .compliance-card,
html[data-theme="light"] .timeline article,
html[data-theme="light"] .contact-form,
html[data-theme="light"] .table-wrap {
  background: linear-gradient(145deg, #ffffff, rgba(241, 245, 249, 0.78));
  border-color: rgba(15, 23, 42, 0.14);
}

.command-card {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  overflow: hidden;
}

.command-card::after {
  content: "";
  position: absolute;

  width: 300px;
  height: 300px;

  top: -150px;
  right: -140px;

  background: radial-gradient(circle, rgba(255, 210, 0, 0.18), transparent 68%);
}

.portal-card,
.application-preview,
.dashboard-card,
.cred-card,
.compliance-card,
.timeline article {
  padding: 22px;
  border-radius: 20px;
}

.cred-card,
.compliance-card,
.timeline article {
  transition: 0.24s ease;
}

.cred-card:hover,
.compliance-card:hover,
.timeline article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 210, 0, 0.34);
}

.cred-card span,
.compliance-card span,
.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 42px;
  height: 36px;
  padding: 0 12px;

  border-radius: 999px;

  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--slate-900);

  font-size: 0.72rem;
  font-weight: 900;

  margin-bottom: 16px;
}

.cred-card h3,
.compliance-card h3,
.timeline h3 {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: -0.03em;
  margin-bottom: 9px;
}

.cred-card p,
.compliance-card p,
.timeline p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

html[data-theme="light"] .cred-card p,
html[data-theme="light"] .compliance-card p,
html[data-theme="light"] .timeline p {
  color: #334155;
}

/* =========================================================
   GRIDS
========================================================= */

.component-grid,
.credibility-grid,
.compliance-grid,
.service-grid,
.timeline,
.portal-grid,
.dashboard-layout,
.contact-grid {
  display: grid;
  gap: 18px;
}

.component-grid,
.credibility-grid,
.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.compliance-grid {
  grid-template-columns: repeat(4, 1fr);
}

.timeline {
  grid-template-columns: repeat(3, 1fr);
}

.portal-grid,
.dashboard-layout,
.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 30px;
}

/* =========================================================
   SERVICE IMAGE CARDS
========================================================= */

.service-card {
  min-height: 255px;

  position: relative;
  isolation: isolate;
  overflow: hidden;

  border-radius: var(--radius-lg);
  padding: 24px;

  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);

  background-size: cover;
  background-position: center;

  transition: 0.26s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    180deg,
    rgba(5, 11, 18, 0.15),
    rgba(5, 11, 18, 0.94)
  );
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 210, 0, 0.34);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.32);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: var(--gold-500);
  color: var(--slate-900);

  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3 {
  margin-top: 74px;
  margin-bottom: 10px;

  color: #fff;

  font-size: 1.25rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.service-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.oilgas-bg {
  background-image: url("../images/oil_rig_ai.png");
}

.mining-bg {
  background-image: url("../images/mining_ai.png");
}

.procurement-bg {
  background-image: url("../images/procurement.jpg");
}

.manpower-bg {
  background-image: url("../images/manpower.jpg");
}

.epc-bg {
  background-image: url("../images/epc_construction_ai.png");
}

.execution-bg {
  background-image: url("../images/execution_partner.jpg");
}

.logistics-bg {
  background-image: url("../images/logistics_sector.jpg");
}

/* =========================================================
   MINI DASHBOARDS / PIPELINES
========================================================= */

.mini-dashboard,
.dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.mini-dashboard div,
.dash-stat-grid article,
.metrics-dock article {
  border: 1px solid var(--border);
  background: var(--panel);

  border-radius: 15px;
  padding: 12px;

  text-align: center;
}

html[data-theme="light"] .mini-dashboard div,
html[data-theme="light"] .dash-stat-grid article,
html[data-theme="light"] .metrics-dock article {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 23, 42, 0.14);
}

.mini-dashboard strong,
.dash-stat-grid strong,
.metrics-dock strong {
  display: block;

  color: var(--gold-500);
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.mini-dashboard span,
.dash-stat-grid span,
.metrics-dock span {
  display: block;

  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 7px;
  line-height: 1.35;
}

html[data-theme="light"] .mini-dashboard span,
html[data-theme="light"] .dash-stat-grid span,
html[data-theme="light"] .metrics-dock span {
  color: #334155;
}

.pipeline-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.pipeline-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;

  padding: 13px;

  border-radius: 16px;
  border: 1px solid var(--border);

  background: var(--panel);
}

html[data-theme="light"] .pipeline-list div {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(15, 23, 42, 0.14);
}

.pipeline-list span {
  grid-row: span 2;

  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--gold-500);
  color: var(--slate-900);

  font-size: 0.72rem;
  font-weight: 900;
}

.pipeline-list b {
  color: var(--text);
  line-height: 1.1;
}

.pipeline-list em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

html[data-theme="light"] .pipeline-list em {
  color: #334155;
}

/* =========================================================
   FORMS
========================================================= */

.application-preview,
.contact-form {
  display: grid;
  gap: 14px;
}

.preview-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 8px;
}

.preview-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: 0.8;
}

.application-preview label,
.contact-form label {
  display: grid;
  gap: 7px;

  color: var(--muted);

  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.application-preview input,
.application-preview select,
.application-preview textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);

  color: var(--text);

  border-radius: 15px;
  padding: 13px 14px;

  outline: none;
  transition: 0.2s ease;
}

html[data-theme="light"] .application-preview input,
html[data-theme="light"] .application-preview select,
html[data-theme="light"] .application-preview textarea,
html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form select,
html[data-theme="light"] .contact-form textarea {
  background: #fff;
  color: #07111d;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(255, 210, 0, 0.12);
}

textarea {
  min-height: 135px;
  resize: vertical;
}

.form-message {
  color: var(--gold-500);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-message.success {
  color: #22c55e;
}

.form-message.error {
  color: #ef4444;
}

/* =========================================================
   CTA
========================================================= */

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;

  padding: 36px;

  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(255, 210, 0, 0.14),
      transparent 30%
    ),
    linear-gradient(135deg, var(--navy-800), var(--navy-900));
}

html[data-theme="light"] .cta-box {
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(255, 210, 0, 0.22),
      transparent 30%
    ),
    linear-gradient(135deg, #ffffff, #eef3f9);
}

/* =========================================================
   TABLES
========================================================= */

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

th {
  background: linear-gradient(135deg, var(--navy-700), var(--blue-500));
  color: #fff;

  text-align: left;

  padding: 17px 18px;

  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

td {
  padding: 18px;

  border-bottom: 1px solid var(--border);

  color: var(--muted);

  font-size: 0.9rem;
  vertical-align: top;
}

td:first-child {
  color: var(--text);
  font-weight: 900;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 70px 0 24px;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(30, 115, 190, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 70%,
      rgba(255, 210, 0, 0.08),
      transparent 24%
    ),
    linear-gradient(135deg, #03070c, #07111d 48%, #081827);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.95fr 1fr;
  gap: 58px;
  align-items: start;
}

.footer-company {
  max-width: 470px;
}

.footer-brand {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 300px;
  height: auto;
  object-fit: contain;
}

.footer-company p,
.footer-grid p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.72;
}

.footer-grid h3 {
  position: relative;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.footer-grid h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-500);
}

.footer-grid a,
.footer-grid span {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 12px 0;
  transition: 0.2s ease;
}

.footer-grid a:hover {
  color: var(--gold-500);
  transform: translateX(3px);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.social-links a {
  width: 42px;
  height: 42px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  transition: 0.22s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 210, 0, 0.45);
  background: rgba(255, 210, 0, 0.12);
  color: var(--gold-500);
}

.social-links i {
  font-size: 1rem;
  line-height: 1;
}

.footer-bottom {
  width: min(92%, var(--max));
  margin: 48px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 600;
}

/* FORCE FOOTER TO STAY DARK IN BOTH THEMES */
.site-footer,
html[data-theme="light"] .site-footer,
html[data-theme="dark"] .site-footer {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(30, 115, 190, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 70%,
      rgba(255, 210, 0, 0.08),
      transparent 24%
    ),
    linear-gradient(135deg, #03070c, #07111d 48%, #081827) !important;

  color: rgba(255, 255, 255, 0.72) !important;
}

.site-footer h3,
.site-footer a,
.site-footer p,
.site-footer span,
.site-footer i {
  color: rgba(255, 255, 255, 0.72) !important;
}

.site-footer h3 {
  color: #ffffff !important;
}

.site-footer a:hover,
.site-footer a:hover i {
  color: var(--gold-500) !important;
}

.footer-bottom {
  text-align: center !important;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.56) !important;
}

/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 1120px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 42px 56px;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 54px 0 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand img {
    width: 250px;
  }

  .footer-company p,
  .footer-grid p {
    max-width: 100%;
    font-size: 0.82rem;
  }

  .footer-grid h3 {
    margin-bottom: 20px;
  }

  .footer-grid a,
  .footer-grid span {
    font-size: 0.82rem;
    margin: 10px 0;
  }

  .footer-bottom {
    margin-top: 36px;
  }
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(22px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-panel {
    position: fixed;

    left: 4%;
    right: 4%;
    top: 82px;

    display: grid;
    gap: 8px;

    padding: 16px;

    border: 1px solid var(--border);
    border-radius: 22px;

    background: rgba(5, 11, 18, 0.96);

    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);

    transform: translateY(-18px);

    opacity: 0;
    pointer-events: none;

    transition: 0.22s ease;
  }

  html[data-theme="light"] .nav-panel {
    background: rgba(255, 255, 255, 0.96);
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel a,
  .theme-toggle,
  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
    border-color: var(--border);
    background: var(--panel);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;

    min-width: 100%;
    margin-top: 8px;

    box-shadow: none;

    opacity: 1;
    visibility: visible;
    transform: none;

    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open:hover .nav-dropdown-menu {
    display: grid;
  }

  .hero-layout,
  .dashboard-layout,
  .portal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .command-card {
    max-width: 680px;
  }

  .component-grid,
  .service-grid,
  .compliance-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 74px;
  }

  .brand-text {
    display: none;
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand img {
    height: 44px;
  }

  .hero {
    padding: 58px 0 46px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
    line-height: 0.98;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .section-dark,
  .section-light {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .dashboard-copy h2,
  .portal-card h2,
  .cta-box h2,
  .contact-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    letter-spacing: -0.055em;
  }

  .component-grid,
  .service-grid,
  .compliance-grid,
  .timeline,
  .footer-grid,
  .mini-dashboard,
  .dash-stat-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-brand img,
  .footer-grid .footer-brand img {
    width: 230px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(94%, var(--max));
  }

  .hero h1 {
    font-size: 2.25rem;
    letter-spacing: -0.06em;
  }

  .command-card,
  .dashboard-card,
  .portal-card,
  .application-preview,
  .contact-form,
  .cta-box,
  .cred-card,
  .compliance-card,
  .timeline article {
    padding: 18px;
    border-radius: 20px;
  }

  .btn,
  .candidate-portal-btn,
  .theme-toggle {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .social-links a {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 560px) {
  .section-kicker,
  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding: 8px 13px;
    gap: 9px;
  }

  .section-kicker::before,
  .eyebrow::before {
    width: 18px;
  }
}
.social-links i {
  font-size: 18px;
  color: white;
}
.social-links i {
  font-size: 18px;
  color: #ffffff;
}

.footer-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 9px 0;
}

/* =========================================================
   PPGL FINAL GO-LIVE UPGRADE LAYER
   Keep this at the bottom of style.css
========================================================= */

:root {
  --glass: rgba(255, 255, 255, 0.085);
  --glass-strong: rgba(255, 255, 255, 0.14);
  --ring: 0 0 0 4px rgba(255, 210, 0, 0.14);
}

html[data-theme="light"] {
  --glass: rgba(15, 23, 42, 0.055);
  --glass-strong: rgba(15, 23, 42, 0.095);
}

body {
  -webkit-font-smoothing: antialiased;
}

.site-header {
  isolation: isolate;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 210, 0, 0.55),
    transparent
  );
  opacity: 0.75;
  pointer-events: none;
}

.nav-panel a,
.theme-toggle,
.nav-dropdown-toggle,
.btn,
.candidate-portal-btn,
.card-link,
.floating-contact {
  -webkit-tap-highlight-color: transparent;
}

.nav-panel a:focus-visible,
.theme-toggle:focus-visible,
.nav-dropdown-toggle:focus-visible,
.btn:focus-visible,
.candidate-portal-btn:focus-visible,
.floating-contact:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.upgraded-hero {
  min-height: calc(100vh - 72px);
  padding: 96px 0 76px;
  isolation: isolate;
}

.upgraded-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 18, 0.84), rgba(5, 11, 18, 0.26)),
    radial-gradient(circle at 50% 120%, rgba(255, 210, 0, 0.1), transparent 36%);
  pointer-events: none;
  z-index: 0;
}

html[data-theme="light"] .upgraded-hero::after {
  background:
    linear-gradient(90deg, rgba(245, 247, 251, 0.86), rgba(255, 255, 255, 0.3)),
    radial-gradient(circle at 50% 120%, rgba(255, 210, 0, 0.2), transparent 36%);
}

.upgraded-hero-layout {
  z-index: 3;
}

.hero-copy h1 {
  text-wrap: balance;
}

.hero-copy p,
.section-heading p,
.portal-card p,
.dashboard-copy p,
.cta-box p {
  text-wrap: pretty;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.46;
  z-index: 1;
  pointer-events: none;
}

.hero-orb-one {
  width: 280px;
  height: 280px;
  right: 8%;
  top: 18%;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.2), transparent 68%);
  animation: ppglFloat 8s ease-in-out infinite alternate;
}

.hero-orb-two {
  width: 220px;
  height: 220px;
  left: 4%;
  bottom: 8%;
  background: radial-gradient(
    circle,
    rgba(30, 115, 190, 0.22),
    transparent 70%
  );
  animation: ppglFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes ppglFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, -20px, 0) scale(1.05);
  }
}

.hero-cred-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-cred-row i {
  color: var(--gold-500);
}

.launch-card {
  padding: 14px;
  transform-style: preserve-3d;
}

.launch-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 0, 0.34);
}

.launch-card-top {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.front-hero-image,
.front-division-img,
.front-compliance-img,
.front-erp-shot {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.front-hero-image {
  min-height: 360px;
  max-height: 440px;
}

.status-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 11, 18, 0.72);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.status-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

.upgraded-mini-metrics {
  margin-top: 12px;
}

.command-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.command-strip span {
  flex: 1 1 auto;
  min-width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  text-align: center;
}

.trust-band {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-band article {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--glass);
}

.trust-band strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.trust-band span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  margin-top: 4px;
}

.upgraded-overview-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.front-overview-card,
.process-card,
.feature-panel,
.front-erp-card,
.front-compliance-card {
  position: relative;
  overflow: hidden;
}

.front-overview-card::after,
.process-card::after,
.feature-panel::after,
.front-erp-card::after,
.front-compliance-card::after {
  content: "";
  position: absolute;
  inset: auto -35% -42% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.1), transparent 70%);
  pointer-events: none;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 950;
}

.card-link i {
  transition: 0.2s ease;
}

.card-link:hover i {
  transform: translateX(4px);
}

.division-showcase-grid {
  align-items: stretch;
}

.feature-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.feature-panel .hero-actions {
  margin-top: auto;
  padding-top: 20px;
}

.front-division-img,
.front-compliance-img {
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.feature-list i {
  color: var(--gold-500);
  margin-top: 4px;
}

.process-section {
  overflow: hidden;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg, var(--panel), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-soft);
  transition: 0.24s ease;
}

html[data-theme="light"] .process-card {
  background: linear-gradient(145deg, #ffffff, rgba(241, 245, 249, 0.78));
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 210, 0, 0.34);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--slate-900);
  font-size: 0.75rem;
  font-weight: 950;
  margin-bottom: 18px;
}

.process-card h3 {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.upgraded-service-grid .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 210, 0, 0.12));
  opacity: 0;
  transition: 0.25s ease;
  pointer-events: none;
}

.upgraded-service-grid .service-card:hover::after {
  opacity: 1;
}

.erp-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.front-erp-shot {
  aspect-ratio: 16 / 10;
  object-position: top center;
  border: 1px solid var(--border);
}

.upgraded-portal-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.upgraded-cta {
  position: relative;
  overflow: hidden;
}

.upgraded-cta::before {
  content: "";
  position: absolute;
  inset: -70% auto auto 55%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.cta-actions {
  min-width: fit-content;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 0, 0.36);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--slate-900);
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(255, 210, 0, 0.25);
  transition: 0.22s ease;
}

.floating-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(255, 210, 0, 0.32);
}

@media (hover: hover) {
  .cred-card,
  .process-card,
  .portal-card,
  .dashboard-card,
  .service-card,
  .trust-band article {
    will-change: transform;
  }
}

@media (max-width: 1120px) {
  .upgraded-hero {
    min-height: auto;
    padding: 72px 0 60px;
  }

  .trust-band-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .upgraded-overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .upgraded-hero {
    padding: 58px 0 44px;
  }

  .front-hero-image {
    min-height: 260px;
  }

  .trust-band-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-band article,
  .process-card {
    padding: 18px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }

  .site-footer {
    padding-bottom: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb-one,
  .hero-orb-two {
    animation: none !important;
  }
}

/* =========================================================
   PPGL MODERN CLEAN MAIN PAGE UPGRADE
   Abek - append this at the bottom of your main CSS file
========================================================= */

.ppgl-modern-hero {
  min-height: calc(100vh - 72px);
  padding: 96px 0 84px;
  isolation: isolate;
}

.ppgl-modern-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 11, 18, 0.88),
      rgba(5, 11, 18, 0.3) 58%,
      rgba(5, 11, 18, 0.82)
    ),
    radial-gradient(
      circle at 70% 18%,
      rgba(30, 115, 190, 0.24),
      transparent 34%
    ),
    radial-gradient(
      circle at 50% 112%,
      rgba(255, 210, 0, 0.12),
      transparent 38%
    );
}

html[data-theme="light"] .ppgl-modern-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(245, 247, 251, 0.9),
      rgba(255, 255, 255, 0.42) 58%,
      rgba(245, 247, 251, 0.86)
    ),
    radial-gradient(
      circle at 70% 18%,
      rgba(30, 115, 190, 0.16),
      transparent 34%
    ),
    radial-gradient(circle at 50% 112%, rgba(255, 210, 0, 0.2), transparent 38%);
}

.ppgl-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.84fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.ppgl-modern-copy h1 {
  max-width: 920px;
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

.ppgl-modern-copy p {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.74;
  text-wrap: pretty;
}

.ppgl-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
  max-width: 720px;
}

.ppgl-hero-proof article {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--glass, var(--panel));
  backdrop-filter: blur(18px);
}

.ppgl-hero-proof strong {
  display: block;
  color: var(--gold-500);
  font-size: 1.12rem;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.ppgl-hero-proof span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 780;
  line-height: 1.35;
}

.ppgl-meeting-visual {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(30, 115, 190, 0.9),
    rgba(6, 18, 32, 0.96) 34%,
    rgba(3, 7, 12, 0.98)
  );
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.38);
  overflow: visible;
}

html[data-theme="light"] .ppgl-meeting-visual {
  background: linear-gradient(180deg, #1e73be, #0b3c6d 34%, #07111d);
}

.ppgl-meeting-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 8px 18px;
  color: #fff;
}

.ppgl-meeting-header span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 950;
  letter-spacing: -0.055em;
}

.ppgl-meeting-header b {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-500);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ppgl-main-video-card {
  position: relative;
  min-height: 315px;
  border: 5px solid #16e6a0;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.04)
  );
  overflow: visible;
}

.ppgl-portrait-popout {
  position: absolute;
  inset: -42px 20px 0;
  border-radius: 22px;
  overflow: hidden;
}

.ppgl-portrait-popout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

.ppgl-video-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(5, 11, 18, 0.74);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.ppgl-smile {
  position: absolute;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: #07111d;
  font-size: 1.45rem;
  font-weight: 950;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.ppgl-smile-one {
  left: 8%;
  top: -28px;
}
.ppgl-smile-two {
  right: 9%;
  top: 34px;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
}
.ppgl-smile-three {
  right: 27%;
  bottom: 72px;
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.ppgl-mini-call-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.ppgl-mini-call-grid article {
  position: relative;
  min-height: 135px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.ppgl-mini-call-grid img {
  width: 100%;
  height: 100%;
  min-height: 135px;
  object-fit: cover;
}

.ppgl-mini-call-grid span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 9px;
  background: rgba(5, 11, 18, 0.72);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
}

.ppgl-call-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 16px;
}

.ppgl-call-controls span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 850;
}

.ppgl-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(8px);
}

.ppgl-hero-glow-one {
  width: 280px;
  height: 280px;
  right: 4%;
  top: 14%;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.2), transparent 70%);
}

.ppgl-hero-glow-two {
  width: 240px;
  height: 240px;
  left: 4%;
  bottom: 8%;
  background: radial-gradient(
    circle,
    rgba(30, 115, 190, 0.22),
    transparent 70%
  );
}

.ppgl-trust-strip {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ppgl-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ppgl-trust-grid article,
.ppgl-clean-card,
.ppgl-process-flow article,
.ppgl-dashboard-panel,
.ppgl-division-stack article {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--panel), rgba(255, 255, 255, 0.025));
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

html[data-theme="light"] .ppgl-trust-grid article,
html[data-theme="light"] .ppgl-clean-card,
html[data-theme="light"] .ppgl-process-flow article,
html[data-theme="light"] .ppgl-dashboard-panel,
html[data-theme="light"] .ppgl-division-stack article {
  background: linear-gradient(145deg, #ffffff, rgba(241, 245, 249, 0.78));
  border-color: rgba(15, 23, 42, 0.14);
}

.ppgl-trust-grid article {
  padding: 18px;
}

.ppgl-trust-grid strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.ppgl-trust-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  margin-top: 4px;
}

.ppgl-service-lane {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ppgl-clean-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: 0.24s ease;
}

.ppgl-clean-card:hover,
.ppgl-process-flow article:hover,
.ppgl-division-stack article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 210, 0, 0.34);
}

.ppgl-clean-card > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 210, 0, 0.12);
  color: var(--gold-500);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.ppgl-clean-card span,
.ppgl-process-flow b {
  color: var(--gold-500);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.ppgl-clean-card h3,
.ppgl-process-flow h3,
.ppgl-division-stack h3 {
  color: var(--text);
  margin-top: 8px;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.ppgl-clean-card p,
.ppgl-process-flow p,
.ppgl-division-stack p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.ppgl-clean-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 950;
}

.ppgl-split-grid,
.ppgl-dashboard-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 34px;
}

.ppgl-split-copy h2 {
  color: var(--text);
  font-size: clamp(1.9rem, 3.7vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.ppgl-split-copy p {
  color: var(--muted);
  margin-top: 14px;
  max-width: 620px;
}

.ppgl-division-stack {
  display: grid;
  gap: 14px;
}

.ppgl-division-stack article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
}

.ppgl-division-stack img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
}

.ppgl-division-stack span {
  color: var(--gold-500);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.ppgl-process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ppgl-process-flow article {
  padding: 22px;
  transition: 0.24s ease;
}

.ppgl-dashboard-panel {
  padding: 20px;
  overflow: hidden;
}

.ppgl-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.ppgl-panel-top span {
  color: var(--text);
  font-size: 1rem;
  font-weight: 950;
}

.ppgl-panel-top b {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ppgl-panel-bars {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.ppgl-panel-bars span {
  width: var(--w);
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), var(--blue-500));
  box-shadow: 0 12px 25px rgba(255, 210, 0, 0.15);
}

@media (max-width: 1120px) {
  .ppgl-modern-hero {
    min-height: auto;
    padding: 72px 0 62px;
  }
  .ppgl-hero-layout,
  .ppgl-split-grid,
  .ppgl-dashboard-grid {
    grid-template-columns: 1fr;
  }
  .ppgl-meeting-visual {
    max-width: 620px;
  }
  .ppgl-service-lane {
    grid-template-columns: 1fr;
  }
  .ppgl-process-flow,
  .ppgl-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .ppgl-modern-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }
  .ppgl-hero-proof,
  .ppgl-mini-call-grid,
  .ppgl-call-controls,
  .ppgl-process-flow,
  .ppgl-trust-grid {
    grid-template-columns: 1fr;
  }
  .ppgl-meeting-visual {
    border-radius: 26px;
    padding: 13px;
  }
  .ppgl-main-video-card {
    min-height: 260px;
    border-radius: 22px;
  }
  .ppgl-portrait-popout {
    inset: -30px 14px 0;
  }
  .ppgl-smile {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .ppgl-division-stack article {
    grid-template-columns: 1fr;
  }
  .ppgl-division-stack img {
    height: 210px;
  }
}

@media (max-width: 520px) {
  .ppgl-modern-hero {
    padding-top: 56px;
  }
  .ppgl-meeting-header span {
    font-size: 1.15rem;
  }
  .ppgl-main-video-card {
    min-height: 230px;
  }
}

/* =========================================================
   PPGL HOME PAGE 9.5+ POLISH LAYER
   Keep this file loaded after the main/global styles
========================================================= */

.home-page {
  isolation: isolate;
}

.home-page main {
  overflow: hidden;
}

.ppgl-modern-hero {
  min-height: auto !important;
  padding: 82px 0 66px !important;
  overflow: hidden;
}

.ppgl-modern-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.36)
    ),
    radial-gradient(circle at 50% 120%, rgba(255, 210, 0, 0.2), transparent 36%);
}

html[data-theme="dark"] .ppgl-modern-hero::after {
  background:
    linear-gradient(90deg, rgba(5, 11, 18, 0.88), rgba(5, 11, 18, 0.26)),
    radial-gradient(
      circle at 50% 120%,
      rgba(255, 210, 0, 0.12),
      transparent 36%
    );
}

.ppgl-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.88fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.ppgl-modern-copy h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 4.85vw, 4.95rem);
  line-height: 0.96;
  letter-spacing: -0.078em;
  text-wrap: balance;
}

.ppgl-modern-copy h1::after {
  content: ".";
  color: var(--blue-500);
}

.ppgl-modern-copy p {
  max-width: 710px;
  font-size: 0.98rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.ppgl-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 700px;
  margin-top: 22px;
}

.ppgl-hero-proof article {
  padding: 15px 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  transition: 0.24s ease;
}

html[data-theme="dark"] .ppgl-hero-proof article {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.12);
}

.ppgl-hero-proof article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 0, 0.38);
}

.ppgl-hero-proof strong {
  display: block;
  color: var(--blue-500);
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.ppgl-hero-proof span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.35;
}

/* Premium hero visual */
.ppgl-meeting-visual {
  position: relative;
  width: min(100%, 545px);
  justify-self: end;
  padding: 18px;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(30, 115, 190, 0.18),
      transparent 34%
    ),
    linear-gradient(145deg, #07111d, #081827);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 88px rgba(7, 17, 29, 0.32);
  overflow: hidden;
}

.ppgl-meeting-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.ppgl-meeting-header,
.ppgl-main-video-card,
.ppgl-mini-call-grid,
.ppgl-call-controls {
  position: relative;
  z-index: 2;
}

.ppgl-meeting-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: #ffffff;
}

.ppgl-meeting-header span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.ppgl-meeting-header i {
  color: var(--blue-500);
}

.ppgl-meeting-header b {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.13);
  color: #22c55e;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ppgl-main-video-card {
  position: relative;
  min-height: 340px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.ppgl-portrait-popout,
.ppgl-portrait-popout img {
  width: 100%;
  height: 100%;
}

.ppgl-portrait-popout {
  position: absolute;
  inset: 0;
}

.ppgl-portrait-popout img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02);
}

.ppgl-main-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 17, 29, 0.06),
    rgba(7, 17, 29, 0.64)
  );
}

.ppgl-video-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 950;
  backdrop-filter: blur(16px);
}

.ppgl-smile {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-500);
  color: #07111d;
  font-weight: 950;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.ppgl-smile-one {
  left: 22px;
  top: 22px;
}
.ppgl-smile-two {
  right: 24px;
  top: 70px;
}
.ppgl-smile-three {
  right: 86px;
  bottom: 64px;
}

.ppgl-mini-call-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.ppgl-mini-call-grid article {
  position: relative;
  min-height: 138px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ppgl-mini-call-grid img {
  width: 100%;
  height: 100%;
  min-height: 138px;
  object-fit: cover;
}

.ppgl-mini-call-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 29, 0.72));
}

.ppgl-mini-call-grid span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 950;
}

.ppgl-call-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.ppgl-call-controls span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 900;
}

.ppgl-call-controls i {
  color: var(--gold-500);
}

.ppgl-trust-strip {
  padding: 24px 0 !important;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ppgl-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ppgl-trust-grid article {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.92),
    rgba(241, 245, 249, 0.72)
  );
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

html[data-theme="dark"] .ppgl-trust-grid article {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.025)
  );
}

.ppgl-trust-grid strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.ppgl-trust-grid span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.ppgl-service-lane,
.ppgl-process-flow,
.ppgl-dashboard-grid,
.ppgl-split-grid {
  display: grid;
  gap: 18px;
}

.ppgl-service-lane {
  grid-template-columns: repeat(3, 1fr);
}

.ppgl-clean-card,
.ppgl-process-flow article,
.ppgl-dashboard-panel,
.ppgl-division-stack article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--panel), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-soft);
  transition: 0.24s ease;
}

html[data-theme="light"] .ppgl-clean-card,
html[data-theme="light"] .ppgl-process-flow article,
html[data-theme="light"] .ppgl-dashboard-panel,
html[data-theme="light"] .ppgl-division-stack article {
  background: linear-gradient(145deg, #ffffff, rgba(241, 245, 249, 0.78));
}

.ppgl-clean-card {
  min-height: 300px;
  padding: 26px;
}

.ppgl-clean-card:hover,
.ppgl-process-flow article:hover,
.ppgl-division-stack article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 210, 0, 0.36);
}

.ppgl-clean-card > i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: #07111d;
  font-size: 1.14rem;
}

.ppgl-clean-card > span {
  display: inline-flex;
  color: var(--blue-500);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.ppgl-clean-card h3,
.ppgl-process-flow h3,
.ppgl-division-stack h3 {
  color: var(--text);
  line-height: 1.13;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.ppgl-clean-card p,
.ppgl-process-flow p,
.ppgl-division-stack p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.ppgl-clean-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 950;
}

.ppgl-split-grid,
.ppgl-dashboard-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 34px;
}

.ppgl-split-copy h2 {
  color: var(--text);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.ppgl-split-copy p {
  color: var(--muted);
  margin-top: 14px;
  max-width: 680px;
}

.ppgl-division-stack {
  display: grid;
  gap: 16px;
}

.ppgl-division-stack article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.ppgl-division-stack img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.ppgl-division-stack span {
  display: inline-flex;
  color: var(--gold-500);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.ppgl-process-flow {
  grid-template-columns: repeat(4, 1fr);
}

.ppgl-process-flow article {
  min-height: 250px;
  padding: 24px;
}

.ppgl-process-flow b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: #07111d;
  font-size: 0.76rem;
  font-weight: 950;
}

.ppgl-dashboard-panel {
  padding: 24px;
}

.ppgl-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.ppgl-panel-top span {
  color: var(--text);
  font-weight: 950;
}

.ppgl-panel-top b {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ppgl-panel-bars {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.ppgl-panel-bars span {
  height: 11px;
  width: var(--w);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-500), var(--gold-500));
}

.upgraded-service-grid .service-card {
  min-height: 285px;
}

.final-cta-section .cta-box {
  border-radius: 30px;
}

.footer-contact-stack {
  display: grid;
  gap: 11px;
}

.footer-contact-card {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.72) !important;
}

.footer-contact-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 210, 0, 0.08);
  border: 1px solid rgba(255, 210, 0, 0.18);
  color: var(--gold-500) !important;
}

.footer-contact-card span {
  margin: 0 !important;
  width: auto !important;
  font-size: 0.8rem;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .ppgl-hero-layout,
  .ppgl-split-grid,
  .ppgl-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .ppgl-meeting-visual {
    justify-self: start;
    width: min(100%, 680px);
  }

  .ppgl-service-lane,
  .ppgl-process-flow,
  .ppgl-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .ppgl-modern-hero {
    padding: 58px 0 52px !important;
  }

  .ppgl-modern-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.75rem);
  }

  .ppgl-hero-proof,
  .ppgl-service-lane,
  .ppgl-process-flow,
  .ppgl-trust-grid,
  .ppgl-mini-call-grid,
  .ppgl-call-controls {
    grid-template-columns: 1fr;
  }

  .ppgl-main-video-card {
    min-height: 280px;
  }

  .ppgl-division-stack article {
    grid-template-columns: 1fr;
  }

  .ppgl-division-stack img {
    height: 220px;
  }
}
