@font-face {
  font-family: 'ManropeLocal';
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: 'SourceSerifLocal';
  src: url('../fonts/source-serif-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}
:root {
  --font-sans: 'ManropeLocal', Arial, sans-serif;
  --font-serif: 'SourceSerifLocal', Georgia, serif;
}


:root {
  --navy: #08233f;
  --navy-2: #0d3358;
  --teal: #087d86;
  --teal-light: #dff1f1;
  --gold: #c18b2a;
  --ink: #172331;
  --muted: #5d6876;
  --line: #dbe2e8;
  --paper: #f5f7f8;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  width: min(1280px, calc(100% - 48px));
  min-height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1.15; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 5px 15px 5px 5px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.brand strong { display: block; color: var(--navy); font-size: 14px; letter-spacing: .09em; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }

.site-header nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 700; }
.site-header nav a { color: #41505f; transition: color .2s ease; }
.site-header nav a:hover { color: var(--teal); }

.header-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 70px;
  padding-block: 74px 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.light { color: #77d2d2; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--font-serif), Georgia, serif; letter-spacing: -.025em; }
h1 { margin-bottom: 24px; color: var(--navy); font-size: clamp(45px, 5.25vw, 72px); line-height: .99; }
h2 { margin-bottom: 18px; color: var(--navy); font-size: clamp(36px, 4vw, 52px); line-height: 1.08; }
h3 { color: var(--navy); line-height: 1.25; }

.hero-lead { max-width: 610px; margin-bottom: 32px; color: #485766; font-size: 19px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.button {
  min-height: 50px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--teal); box-shadow: 0 10px 30px rgba(8,125,134,.2); }
.button-primary:hover { background: #076d75; box-shadow: 0 14px 34px rgba(8,125,134,.28); }
.button-secondary { color: var(--navy); border: 1px solid #cfd8df; background: var(--white); }
.button-gold { width: 100%; margin-top: 20px; color: var(--navy); background: #e6b34e; }

.hero-points { display: flex; flex-wrap: wrap; gap: 18px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 12px; font-weight: 700; }
.hero-points li::before { content: "✓"; margin-right: 7px; color: var(--teal); font-weight: 900; }

.hero-visual { position: relative; padding: 18px; background: #eaf1f3; border: 1px solid #d4e0e4; border-radius: 18px 18px 18px 70px; box-shadow: 0 28px 70px rgba(8,35,63,.14); }
.hero-visual img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; border-radius: 10px; box-shadow: 0 15px 35px rgba(8,35,63,.15); }
.visual-label { min-height: 32px; padding: 0 4px 12px; display: flex; justify-content: space-between; color: #5f7180; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.status-dot { color: #356958; }
.status-dot::before { content: ""; width: 7px; height: 7px; margin-right: 6px; display: inline-block; background: #55a37f; border-radius: 50%; }
.visual-caption { margin: 16px 8px 2px; display: flex; justify-content: space-between; gap: 18px; font-size: 12px; }
.visual-caption strong { color: var(--navy); }
.visual-caption span { color: var(--muted); text-align: right; }

.trust-bar {
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  color: var(--white);
  background: var(--navy);
}
.trust-bar div { padding-left: 22px; border-left: 2px solid var(--gold); }
.trust-bar strong { display: block; font-size: 14px; }
.trust-bar span { display: block; color: #b9c8d5; font-size: 11px; }

.problem-section { padding-block: 120px; }
.section-heading.narrow { max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.outcome-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.outcome-grid article { padding: 34px; background: var(--paper); border: 1px solid transparent; border-radius: 10px; transition: border .2s ease, transform .2s ease; }
.outcome-grid article:hover { transform: translateY(-4px); border-color: #bdd9db; }
.outcome-icon { width: 40px; height: 40px; margin-bottom: 28px; display: grid; place-items: center; color: var(--teal); background: var(--teal-light); border-radius: 50%; font-size: 11px; font-weight: 800; }
.outcome-grid h3 { margin-bottom: 10px; font-size: 20px; }
.outcome-grid p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.modules-section { padding-block: 110px; color: var(--white); background: var(--navy); }
.modules-section h2, .showcase-section h2, .implementation-section h2 { color: var(--white); }
.heading-row { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.heading-row > p { margin-bottom: 24px; color: #b5c6d4 !important; font-size: 15px !important; }
.module-grid { margin-top: 55px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #36536c; border-left: 1px solid #36536c; }
.module-grid article { min-height: 235px; padding: 34px; border-right: 1px solid #36536c; border-bottom: 1px solid #36536c; }
.module-grid article > span { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.module-grid h3 { margin: 22px 0 11px; color: var(--white); font-size: 20px; }
.module-grid p { margin-bottom: 0; color: #b9c8d5; font-size: 13px; }

.workflow { padding-block: 120px; }
.workflow-list { margin: 66px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; counter-reset: steps; }
.workflow-list li { position: relative; padding-right: 25px; }
.workflow-list li:not(:last-child)::after { content: ""; position: absolute; top: 20px; left: 48px; right: 12px; height: 1px; background: #cbd6dd; }
.workflow-list li > span { position: relative; z-index: 1; width: 40px; height: 40px; display: grid; place-items: center; color: var(--white); background: var(--teal); border: 6px solid var(--white); outline: 1px solid #9dc9cc; border-radius: 50%; font-size: 10px; font-weight: 800; }
.workflow-list strong { display: block; margin: 22px 0 8px; color: var(--navy); font-size: 15px; }
.workflow-list p { margin: 0; color: var(--muted); font-size: 12px; }

.showcase-section { padding-block: 105px; background: var(--navy-2); }
.showcase-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.showcase-copy > p:not(.eyebrow) { color: #bdcad5; }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { padding: 13px 0; color: var(--white); border-bottom: 1px solid #45617a; font-size: 13px; }
.check-list li::before { content: "✓"; margin-right: 10px; color: #79d2d1; }
.screenshot-card { margin: 0; padding: 14px; background: #edf3f4; border-radius: 10px; box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.screenshot-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top; border-radius: 5px; }
.screenshot-card figcaption { padding: 12px 5px 0; color: #64727f; font-size: 10px; }

.detail-gallery { padding-block: 120px; }
.gallery-grid { margin-top: 55px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-grid figure { margin: 0; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
.gallery-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.gallery-grid figcaption { padding: 22px; }
.gallery-grid strong, .gallery-grid span { display: block; }
.gallery-grid strong { margin-bottom: 5px; color: var(--navy); font-size: 15px; }
.gallery-grid span { color: var(--muted); font-size: 12px; }

.video-section { padding-block: 30px 120px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.video-copy > p:not(.eyebrow) { color: var(--muted); }
.text-link { color: var(--teal); font-size: 13px; font-weight: 800; }
.video-frame { padding: 12px; background: var(--navy); border-radius: 13px; box-shadow: 0 25px 60px rgba(8,35,63,.18); }
.video-frame video { width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: 6px; }

.implementation-section { padding-block: 110px; color: var(--white); background: var(--teal); }
.implementation-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.implementation-list { border-top: 1px solid rgba(255,255,255,.35); }
.implementation-list article { padding: 24px 0; display: grid; grid-template-columns: 48px 1fr; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.35); }
.implementation-list article > strong { color: #d8b66f; font-size: 11px; }
.implementation-list h3 { margin-bottom: 4px; color: var(--white); font-size: 16px; }
.implementation-list p { margin: 0; color: #d3eeee; font-size: 13px; }

.faq-section { padding-block: 120px; }
.faq-list { max-width: 880px; margin: 55px auto 0; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 24px 4px; display: flex; justify-content: space-between; gap: 20px; color: var(--navy); cursor: pointer; font-size: 15px; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--teal); font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; padding: 0 4px 24px; color: var(--muted); font-size: 14px; }

.final-cta { padding-block: 95px; color: var(--white); background: var(--navy); }
.final-cta-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: center; }
.final-cta h2 { color: var(--white); }
.final-cta-grid > div > p:not(.eyebrow) { max-width: 650px; color: #bdcad5; }
.contact-card { padding: 36px; background: var(--white); border-radius: 10px; color: var(--ink); }
.contact-card a { display: block; }
.contact-label { margin-bottom: 8px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-main { color: var(--navy); font-family: var(--font-serif), Georgia, serif; font-size: 32px; font-weight: 700; }
.contact-card > a:not(.contact-main):not(.button) { color: var(--teal); font-size: 13px; font-weight: 700; }
.contact-card small { display: block; margin-top: 12px; color: var(--muted); font-size: 10px; text-align: center; }

footer { padding-block: 48px; background: #f2f5f6; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; }
.footer-grid > p { margin: 0; color: var(--muted); font-size: 11px; }
.footer-links { display: flex; gap: 18px; color: #4d5d6b; font-size: 11px; font-weight: 700; }

:focus-visible { outline: 3px solid rgba(193,139,42,.65); outline-offset: 3px; }

@media (max-width: 980px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: 760px; }
  .heading-row, .showcase-grid, .video-section, .implementation-grid, .final-cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-list { grid-template-columns: 1fr; gap: 0; max-width: 650px; margin-inline: auto; }
  .workflow-list li { min-height: 125px; display: grid; grid-template-columns: 64px 1fr; }
  .workflow-list li:not(:last-child)::after { top: 48px; left: 19px; right: auto; width: 1px; height: 64px; }
  .workflow-list strong { margin-top: 7px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .section-shell, .site-header { width: min(100% - 30px, 1180px); }
  .site-header { min-height: 76px; }
  .site-header .brand small, .header-cta { display: none; }
  .hero { min-height: auto; padding-block: 56px 70px; }
  h1 { font-size: 46px; }
  h2 { font-size: 36px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-points { flex-direction: column; gap: 6px; }
  .hero-visual { padding: 10px; border-radius: 14px 14px 14px 42px; }
  .visual-caption { display: block; }
  .visual-caption span { margin-top: 3px; display: block; text-align: left; }
  .trust-bar { grid-template-columns: 1fr; gap: 18px; }
  .problem-section, .workflow, .detail-gallery, .faq-section { padding-block: 85px; }
  .outcome-grid, .module-grid, .gallery-grid { grid-template-columns: 1fr; }
  .modules-section, .showcase-section, .implementation-section { padding-block: 80px; }
  .module-grid article { min-height: 205px; }
  .video-section { padding-bottom: 85px; }
  .contact-card { padding: 26px; }
  .contact-main { font-size: 27px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}


.pgsl-page {
  --pgsl-navy: #082844;
  --pgsl-navy-deep: #061c31;
  --pgsl-blue: #0d3b63;
  --pgsl-gold: #d69a32;
  --pgsl-paper: #f2f0eb;
  --pgsl-ink: #17304a;
  --pgsl-muted: #667689;
  --pgsl-line: #d2d7db;
  color: var(--pgsl-ink);
  background: #fff;
  font-family: var(--font-sans), Arial, sans-serif;
}

.pgsl-page * { box-sizing: border-box; }
.pgsl-page h1, .pgsl-page h2, .pgsl-page h3, .pgsl-page p { margin-top: 0; }
.pgsl-page h1, .pgsl-page h2 { font-family: var(--font-serif), Georgia, serif; font-weight: 500; letter-spacing: -.045em; }
.pgsl-page h1 { margin-bottom: 26px; font-size: clamp(58px, 6.1vw, 91px); line-height: .95; }
.pgsl-page h2 { margin-bottom: 22px; color: var(--pgsl-navy); font-size: clamp(42px, 4.7vw, 67px); line-height: 1.02; }
.pgsl-page h3 { color: var(--pgsl-navy); }
.pgsl-page img, .pgsl-page video { display: block; max-width: 100%; }
.pgsl-page a { color: inherit; text-decoration: none; }

.pgsl-topline {
  min-height: 36px;
  padding: 0 max(34px, calc((100vw - 1420px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ccd8e3;
  background: var(--pgsl-navy-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pgsl-topline a { color: #fff; }

.pgsl-header {
  width: min(1420px, calc(100% - 68px));
  min-height: 102px;
  margin: auto;
  display: grid;
  grid-template-columns: 360px 1fr auto;
  gap: 36px;
  align-items: center;
  background: #fff;
}
.pgsl-brand { width: 350px; display: block; }
.pgsl-brand img { width: 100%; height: auto; }
.pgsl-header nav { display: flex; justify-content: flex-end; gap: 34px; color: #273c50; font-size: 12px; font-weight: 800; }
.pgsl-header nav a:hover { color: #976715; }
.pgsl-header-cta {
  min-height: 48px;
  padding: 12px 22px;
  display: grid;
  place-items: center;
  color: var(--pgsl-navy);
  border: 1px solid #aebac4;
  font-size: 11px;
  font-weight: 900;
}

.pgsl-eyebrow {
  margin-bottom: 18px;
  color: var(--pgsl-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.pgsl-hero {
  position: relative;
  min-height: 800px;
  padding: 90px max(34px, calc((100vw - 1360px) / 2));
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 74px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #07243f, #0b385e);
}
.pgsl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: linear-gradient(rgba(255,255,255,.75) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.75) 1px, transparent 1px);
  background-size: 72px 72px;
}
.pgsl-hero > * { position: relative; z-index: 1; }
.pgsl-hero h1 { color: #fff; }
.pgsl-lead { max-width: 620px; margin-bottom: 34px; color: #c9d7e3; font-size: 17px; line-height: 1.7; }
.pgsl-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.pgsl-button {
  min-height: 55px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  font-size: 12px;
  font-weight: 900;
}
.pgsl-button-gold { color: #102842; background: var(--pgsl-gold); }
.pgsl-button:hover { transform: translateY(-2px); }
.pgsl-text-link { color: var(--pgsl-gold); font-size: 12px; font-weight: 900; }
.pgsl-text-link span { margin-left: 10px; }
.pgsl-proof { margin-top: 62px; padding-top: 25px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.23); }
.pgsl-proof span { padding-right: 16px; color: #c5d1dc; font-size: 9px; line-height: 1.5; }
.pgsl-proof b { margin-bottom: 7px; display: block; color: var(--pgsl-gold); font-size: 10px; }

.pgsl-device-stage { position: relative; min-height: 560px; }
.pgsl-web-device { position: absolute; top: 15px; right: 0; width: 88%; overflow: hidden; background: #e8eef2; border: 14px solid #d6a74f; box-shadow: 28px 28px 0 rgba(1,16,29,.38); }
.pgsl-device-bar { height: 38px; padding: 0 14px; display: flex; align-items: center; gap: 7px; color: #667789; background: #f0f3f5; font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.pgsl-device-bar i { width: 7px; height: 7px; border-radius: 50%; background: #9ba8b4; }
.pgsl-device-bar i:first-child { background: var(--pgsl-gold); }
.pgsl-device-bar span { margin-left: auto; }
.pgsl-web-body { min-height: 345px; display: grid; grid-template-columns: 145px 1fr; background: #fff; }
.pgsl-web-body > img { width: 145px; height: auto; align-self: start; object-fit: contain; object-position: top; }
.pgsl-web-panel { padding: 35px; color: var(--pgsl-ink); }
.pgsl-web-panel > span { color: #6e7c8a; font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.pgsl-web-panel h2 { margin: 8px 0 25px; font-size: 32px; }
.pgsl-web-alerts { padding: 18px; display: grid; gap: 10px; background: #edf3f6; }
.pgsl-web-alerts b { font-size: 11px; }
.pgsl-web-alerts i { height: 7px; background: #c7d6e0; }
.pgsl-web-alerts i:nth-child(2) { width: 75%; }
.pgsl-web-alerts i:nth-child(3) { width: 54%; }
.pgsl-web-metrics { margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.pgsl-web-metrics span { padding: 14px 10px; color: #6a7783; background: #f7f5f1; font-size: 7px; }
.pgsl-web-metrics b { display: block; color: var(--pgsl-navy); font-size: 9px; }
.pgsl-phone-device, .pgsl-tablet-device { position: absolute; z-index: 3; overflow: hidden; background: #071f37; box-shadow: 15px 18px 32px rgba(1,14,26,.38); }
.pgsl-phone-device { left: 0; bottom: 0; width: 150px; padding: 9px; border-radius: 24px; }
.pgsl-phone-device img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; border-radius: 17px; display: block; }
.pgsl-tablet-device { right: 25px; bottom: -2px; width: 280px; padding: 10px; border-radius: 12px; }
.pgsl-tablet-device img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; border-radius: 5px; display: block; }

.pgsl-trust { padding: 32px max(34px, calc((100vw - 1260px) / 2)); display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; background: var(--pgsl-paper); }
.pgsl-trust div { padding-left: 24px; border-left: 3px solid var(--pgsl-gold); }
.pgsl-trust strong { display: block; color: var(--pgsl-navy); font-size: 13px; }
.pgsl-trust span { color: var(--pgsl-muted); font-size: 10px; }

.pgsl-intro { width: min(1120px, calc(100% - 68px)); margin: auto; padding: 130px 0; }
.pgsl-intro h2 { max-width: 970px; }
.pgsl-intro-columns { margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 82px; }
.pgsl-intro-columns p { color: var(--pgsl-muted); font-size: 16px; line-height: 1.8; }

.pgsl-platforms { padding: 115px max(34px, calc((100vw - 1320px) / 2)); color: #fff; background: var(--pgsl-navy); }
.pgsl-section-heading { max-width: 960px; margin-bottom: 64px; }
.pgsl-platforms h2, .pgsl-flow h2, .pgsl-contact h2 { color: #fff; }
.pgsl-platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #3d5871; border-left: 1px solid #3d5871; }
.pgsl-platform-grid article { min-height: 330px; padding: 36px; border-right: 1px solid #3d5871; border-bottom: 1px solid #3d5871; }
.pgsl-platform-number { color: var(--pgsl-gold); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.pgsl-platform-type { margin: 62px 0 8px; color: #9fb1c1; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.pgsl-platform-grid h3 { margin-bottom: 14px; color: #fff; font-family: var(--font-serif), Georgia, serif; font-size: 30px; font-weight: 500; }
.pgsl-platform-grid article > p:last-child { color: #b9c7d3; font-size: 12px; }

.pgsl-platform-detail { padding: 125px max(34px, calc((100vw - 1260px) / 2)); display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.pgsl-detail-copy > p:not(.pgsl-eyebrow) { max-width: 680px; color: var(--pgsl-muted); font-size: 15px; }
.pgsl-function-list { margin-top: 45px; border-top: 1px solid var(--pgsl-line); }
.pgsl-function-list article { padding: 22px 0; display: grid; grid-template-columns: 55px 1fr; gap: 20px; border-bottom: 1px solid var(--pgsl-line); }
.pgsl-function-list article > span { padding-top: 3px; color: var(--pgsl-gold); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.pgsl-function-list h3 { margin: 0 0 5px; font-family: var(--font-serif), Georgia, serif; font-size: 22px; font-weight: 600; }
.pgsl-function-list p { margin: 0; color: var(--pgsl-muted); font-size: 11px; }
.pgsl-web-gallery { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pgsl-web-gallery figure { margin: 0; padding: 9px; background: #edf1f4; border: 1px solid #d5dde3; }
.pgsl-web-gallery img { width: 100%; height: 285px; object-fit: contain; object-position: top; background: #fff; }
.pgsl-web-gallery figcaption { padding: 9px 2px 2px; color: var(--pgsl-muted); font-size: 9px; font-weight: 800; }

.pgsl-android-detail { background: var(--pgsl-paper); }
.pgsl-app-visual { position: sticky; top: 30px; min-height: 760px; display: grid; place-items: center; background: linear-gradient(145deg, #0b3153, #0c466d); }
.pgsl-device-label { position: absolute; top: 22px; left: 24px; color: var(--pgsl-gold); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.pgsl-phone-large { width: 270px; padding: 13px; overflow: hidden; background: #061c31; border-radius: 38px; box-shadow: 25px 30px 0 rgba(1,17,31,.25); }
.pgsl-phone-large img { width: 100%; height: auto; object-fit: contain; border-radius: 26px; display: block; }
.pgsl-tablet-detail { background: #fff; }
.pgsl-tablet-visual { min-height: 690px; background: linear-gradient(145deg, #0c365d, #16698c); }
.pgsl-tablet-large { width: 430px; padding: 15px; overflow: hidden; background: #061c31; border-radius: 18px; box-shadow: 25px 30px 0 rgba(1,17,31,.25); }
.pgsl-tablet-large img { width: 100%; height: auto; object-fit: contain; border-radius: 8px; display: block; }

.pgsl-flow { padding: 120px max(34px, calc((100vw - 1260px) / 2)); color: #fff; background: var(--pgsl-navy); }
.pgsl-flow ol { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid #3d5871; border-left: 1px solid #3d5871; }
.pgsl-flow li { min-height: 270px; padding: 32px; border-right: 1px solid #3d5871; border-bottom: 1px solid #3d5871; }
.pgsl-flow li > span { color: var(--pgsl-gold); font-size: 10px; font-weight: 900; }
.pgsl-flow strong { margin: 58px 0 10px; display: block; color: #fff; font-family: var(--font-serif), Georgia, serif; font-size: 23px; }
.pgsl-flow li p { color: #b9c7d3; font-size: 11px; }

.pgsl-video { padding: 125px max(34px, calc((100vw - 1260px) / 2)); display: grid; grid-template-columns: .72fr 1.28fr; gap: 85px; align-items: center; background: var(--pgsl-paper); }
.pgsl-video-copy > p:not(.pgsl-eyebrow) { color: var(--pgsl-muted); }
.pgsl-video-frame { padding: 14px; background: var(--pgsl-navy); border: 1px solid #244c6f; box-shadow: 27px 27px 0 #d6a74f; }
.pgsl-video-frame video { width: 100%; aspect-ratio: 16/9; object-fit: contain; background: #041525; }

.pgsl-benefits { padding: 125px max(34px, calc((100vw - 1260px) / 2)); }
.pgsl-benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--pgsl-line); border-left: 1px solid var(--pgsl-line); }
.pgsl-benefit-grid article { min-height: 280px; padding: 32px; border-right: 1px solid var(--pgsl-line); border-bottom: 1px solid var(--pgsl-line); }
.pgsl-benefit-grid span { color: var(--pgsl-gold); font-size: 10px; font-weight: 900; }
.pgsl-benefit-grid h3 { margin: 50px 0 12px; font-family: var(--font-serif), Georgia, serif; font-size: 23px; }
.pgsl-benefit-grid p { color: var(--pgsl-muted); font-size: 11px; }

.pgsl-faq { padding: 120px max(34px, calc((100vw - 1160px) / 2)); background: #f8f8f6; }
.pgsl-faq-list { border-top: 1px solid var(--pgsl-line); }
.pgsl-faq-list article { padding: 34px 0; display: grid; grid-template-columns: .75fr 1.25fr; gap: 65px; border-bottom: 1px solid var(--pgsl-line); }
.pgsl-faq-list h3 { margin: 0; font-family: var(--font-serif), Georgia, serif; font-size: 24px; }
.pgsl-faq-list p { margin: 0; color: var(--pgsl-muted); font-size: 13px; }

.pgsl-contact { min-height: 620px; padding: 105px max(34px, calc((100vw - 1260px) / 2)); display: grid; grid-template-columns: 1.08fr .92fr; gap: 100px; align-items: center; color: #fff; background: linear-gradient(110deg, rgba(5,55,91,.97), rgba(31,23,91,.9)), url("/wordpress/gn-productos-assets/brand/it-services-04.jpg") center/cover no-repeat; }
.pgsl-contact-copy > p:last-child { max-width: 650px; color: #d4e0e9; }
.pgsl-contact-card { padding: 42px; color: var(--pgsl-ink); background: #fff; border-top: 6px solid var(--pgsl-gold); box-shadow: 0 26px 70px rgba(0,0,0,.26); }
.pgsl-contact-card > span { margin-bottom: 20px; display: block; color: var(--pgsl-gold); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.pgsl-contact-card > a:not(.pgsl-button) { display: block; color: var(--pgsl-navy); font-size: 12px; font-weight: 700; }
.pgsl-contact-card .pgsl-phone { margin-bottom: 5px; font-family: var(--font-serif), Georgia, serif; font-size: 40px !important; }
.pgsl-contact-card .pgsl-button { margin-top: 30px; }

.pgsl-footer { min-height: 150px; padding: 30px max(34px, calc((100vw - 1360px) / 2)); display: grid; grid-template-columns: 300px 1fr auto; gap: 50px; align-items: center; color: #6e7a87; background: #f1f3f4; font-size: 10px; }
.pgsl-footer .pgsl-brand { width: 280px; }
.pgsl-footer p { margin: 0; }
.pgsl-footer > div { display: flex; gap: 24px; }

.pgsl-page :focus-visible { outline: 3px solid rgba(214,154,50,.72); outline-offset: 3px; }

@media (max-width: 1380px) {
  .pgsl-header { grid-template-columns: 320px 1fr; }
  .pgsl-header nav { display: none; }
  .pgsl-header-cta { justify-self: end; }
  .pgsl-hero, .pgsl-platform-detail, .pgsl-video, .pgsl-contact { grid-template-columns: 1fr; }
  .pgsl-device-stage { min-height: 600px; }
  .pgsl-app-visual { position: relative; top: 0; }
  .pgsl-flow ol, .pgsl-benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .pgsl-topline { display: none; }
  .pgsl-header { width: calc(100% - 30px); min-height: 80px; grid-template-columns: 1fr; }
  .pgsl-brand { width: 265px; }
  .pgsl-header-cta { display: none; }
  .pgsl-hero { min-height: auto; padding: 64px 20px 82px; }
  .pgsl-page h1 { font-size: 55px; }
  .pgsl-page h2 { font-size: 41px; }
  .pgsl-proof, .pgsl-trust, .pgsl-intro-columns, .pgsl-platform-grid, .pgsl-flow ol, .pgsl-benefit-grid, .pgsl-faq-list article { grid-template-columns: 1fr; }
  .pgsl-proof { gap: 18px; }
  .pgsl-device-stage { min-height: 420px; }
  .pgsl-web-device { width: 100%; border-width: 8px; }
  .pgsl-web-body { min-height: 240px; grid-template-columns: 90px 1fr; }
  .pgsl-web-body > img { width: 90px; }
  .pgsl-web-panel { padding: 20px; }
  .pgsl-web-metrics { display: none; }
  .pgsl-phone-device { width: 105px; }
  .pgsl-tablet-device { width: 190px; right: 5px; }
  .pgsl-intro, .pgsl-platforms, .pgsl-platform-detail, .pgsl-flow, .pgsl-video, .pgsl-benefits, .pgsl-faq, .pgsl-contact { padding: 82px 20px; }
  .pgsl-platform-grid article { min-height: 250px; }
  .pgsl-web-gallery { grid-template-columns: repeat(3, 1fr); }
  .pgsl-web-gallery img { height: 205px; }
  .pgsl-app-visual { min-height: 620px; }
  .pgsl-tablet-large { width: 310px; }
  .pgsl-footer { grid-template-columns: 1fr; }
  .pgsl-footer > div { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  .pgsl-page *, .pgsl-page *::before, .pgsl-page *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Integración visual con la web corporativa de Grupo Noroeste. */
.pgsl-page .pgsl-topline { display: none; }
.pgsl-page .pgsl-header {
  width: min(1460px, calc(100% - 64px));
  min-height: 124px;
  margin: 0 auto;
  padding: 0;
  grid-template-columns: minmax(290px, 390px) 1fr auto;
  gap: 42px;
  border-bottom: 1px solid #e4e9ee;
  background: #fff;
}
.pgsl-page .pgsl-brand { width: min(100%, 370px); }
.pgsl-page .pgsl-nav { gap: 34px; }
.pgsl-page .pgsl-nav a { font-size: 15px; }
.pgsl-page .pgsl-header-cta {
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid #b9c6d1;
  background: #fff;
}
.pgsl-page .pgsl-footer {
  min-height: 190px;
  padding: 42px max(32px, calc((100% - 1460px) / 2));
  grid-template-columns: minmax(260px, 330px) 1fr auto;
  gap: 42px;
  background: #fff;
  border-top: 1px solid #e4e9ee;
}
.pgsl-page .pgsl-footer .pgsl-brand { width: min(100%, 310px); }

@media (max-width: 1150px) {
  .pgsl-page .pgsl-header { grid-template-columns: 1fr auto; }
  .pgsl-page .pgsl-nav { display: none; }
}

@media (max-width: 720px) {
  .pgsl-page .pgsl-header { width: min(100% - 32px, 1460px); grid-template-columns: 1fr; }
  .pgsl-page .pgsl-header-cta { display: none; }
  .pgsl-page .pgsl-footer { grid-template-columns: 1fr; padding: 36px 24px; }
}
