:root {
  --pgg-brand: #1f9c5a;
  --pgg-brand-dark: #177945;
  --pgg-logo-green: #4e8f26;
  --pgg-logo-green-dark: #3f7b20;
  --pgg-navy: #182d66;
  --pgg-blue: #2461b6;
  --pgg-orange: #f97316;
  --pgg-text: #263042;
  --pgg-muted: #667085;
  --pgg-border: #e7e9ef;
  --pgg-accent: #eaf8ef;
  --pgg-shadow: 0 18px 46px rgba(24, 45, 102, 0.12);
}

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

.pgg,
.pgg * {
  box-sizing: border-box;
}

.pgg {
  margin: 0;
  color: var(--pgg-text);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.pgg button,
.pgg input {
  font: inherit;
}

.pgg-wrap {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.pgg-narrow {
  max-width: 980px;
}

.pgg-icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}

.pgg-anchor-target {
  display: block;
  width: 0;
  height: 0;
  pointer-events: none;
}

.pgg-header {
  position: sticky;
  top: var(--wp-admin--admin-bar--height, 0px);
  z-index: 80;
  border-bottom: 1px solid rgba(231, 233, 239, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(24, 45, 102, 0.035);
}

.pgg-header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.pgg-logo {
  display: inline-flex;
  align-items: center;
}

.pgg-logo-img {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.pgg-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(38, 48, 66, 0.8);
  font-size: 14px;
  white-space: nowrap;
}

.pgg-nav a:hover {
  color: var(--pgg-brand);
}

.pgg-header-phone {
  text-align: right;
  white-space: nowrap;
}

.pgg-header-phone a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pgg-brand);
  font-size: 17px;
  font-weight: 750;
}

.pgg-header-phone small {
  display: block;
  margin-top: 2px;
  color: var(--pgg-muted);
  font-size: 10.5px;
  line-height: 1.35;
}

.pgg-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pgg-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(24, 45, 102, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--pgg-navy);
  box-shadow: 0 12px 24px rgba(24, 45, 102, 0.08);
  cursor: pointer;
}

.pgg-menu-toggle-box {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.pgg-menu-toggle-box span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.pgg-header.is-menu-open .pgg-menu-toggle-box span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.pgg-header.is-menu-open .pgg-menu-toggle-box span:nth-child(2) {
  opacity: 0;
}

.pgg-header.is-menu-open .pgg-menu-toggle-box span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.pgg-mobile-menu[hidden] {
  display: none !important;
}

.pgg-mobile-menu {
  display: none;
  border-top: 1px solid rgba(231, 233, 239, 0.85);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.pgg-mobile-menu-inner {
  display: grid;
  gap: 18px;
  padding: 10px 0 18px;
}

.pgg-mobile-nav {
  display: grid;
}

.pgg-mobile-nav a {
  padding: 13px 0;
  border-bottom: 1px solid rgba(231, 233, 239, 0.85);
  color: var(--pgg-text);
  font-size: 15px;
  font-weight: 700;
}

.pgg-mobile-menu-meta {
  display: grid;
  gap: 14px;
}

.pgg-social-links-mobile .pgg-social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 45, 102, 0.1);
  border-radius: 999px;
  background: #f7fafc;
  color: var(--pgg-navy);
}

.pgg-social-links-mobile .pgg-social-link span {
  display: none;
}

.pgg-mobile-menu-contact {
  display: grid;
  gap: 4px;
}

.pgg-mobile-menu-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pgg-brand);
  font-size: 15px;
  font-weight: 750;
}

.pgg-mobile-menu-contact small {
  color: var(--pgg-muted);
  font-size: 12px;
}

.pgg-hero {
  position: relative;
  padding: 34px 0 58px;
  background: #fff;
}

.pgg-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 418px);
  column-gap: 34px;
  row-gap: 26px;
  align-items: start;
}

.pgg-hero-sticky {
  position: sticky;
  top: calc(var(--wp-admin--admin-bar--height, 0px) + 106px);
  align-self: start;
}

.pgg-hero-main-top {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 668px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 44%, rgba(255, 255, 255, 0.42) 100%),
    var(--pgg-hero-photo) 120% 8% / 70% no-repeat;
  padding: 56px 46px 44px;
}

.pgg-hero-main-top::before {
  content: none;
}

.pgg-hero-main-top::after {
  content: none;
}

.pgg-hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 380px;
  padding-top: 12px;
}

.pgg h1,
.pgg h2,
.pgg h3,
.pgg p {
  margin: 0;
}

.pgg h1 {
  color: var(--pgg-text);
  font-size: 35px;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
}

.pgg h1 span {
  color: var(--pgg-brand);
}

.pgg-lead {
  max-width: 370px;
  margin-top: 16px;
  color: var(--pgg-muted);
  font-size: 13px;
  line-height: 1.68;
}

.pgg-check-list,
.pgg-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pgg-check-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.pgg-check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(38, 48, 66, 0.86);
  font-size: 12px;
  font-weight: 700;
}

.pgg-check {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--pgg-brand);
  color: #fff;
}

.pgg-check .pgg-icon {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

.pgg-script-note {
  display: block;
  margin-top: 20px;
}

.pgg-note-img {
  width: min(230px, 100%);
  height: auto;
  object-fit: contain;
}

.pgg-team-photo {
  overflow: hidden;
  border-radius: 18px;
}

.pgg-contact-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 90px;
}

.pgg-contact-card {
  min-height: 158px;
  border: 1px solid var(--pgg-border);
  border-radius: 14px;
  background: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(24, 45, 102, 0.08);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.pgg-form-card {
  will-change: transform;
}

.pgg-contact-card:hover {
  border-color: rgba(31, 156, 90, 0.55);
  box-shadow: 0 14px 26px rgba(24, 45, 102, 0.09);
  transform: translateY(-2px);
}

.pgg-contact-card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--pgg-accent);
  color: var(--pgg-brand);
}

.pgg-contact-card strong,

.pgg-contact-card small {
  display: block;
}

.pgg-contact-card strong {
  color: var(--pgg-brand);
  font-size: 14px;
  line-height: 1.25;
}

.pgg-contact-card-big strong {
  color: var(--pgg-brand);
  font-size: 18px;
}

.pgg-contact-card span {
  margin-top: 6px;
  color: var(--pgg-navy);
  font-size: 12px;
}

.pgg-contact-card small {
  color: var(--pgg-navy);
  font-size: 11px;
  opacity: 0.72;
}

.pgg-form-card {
  align-self: start;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--pgg-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(24, 45, 102, 0.16);
}

.pgg-form-head {
  /*background: rgba(24, 45, 102, 0.5);
  background: color-mix(in srgb, var(--pgg-navy) 50%, transparent);*/
  color: var(--pgg-navy);
  padding: 15px 22px;
  text-align: center;
  font-size: 18px;
  font-weight: 750;
}

.pgg-form-head::after {
  content: none;
}

.pgg-form-body {
  padding: 20px 22px 22px;
}

.pgg-fieldset + .pgg-fieldset,
.pgg-input-list {
  margin-top: 20px;
}

.pgg-form-label {
  margin-bottom: 12px;
  color: var(--pgg-navy);
  font-size: 14px;
  font-weight: 750;
}

.pgg-choice-list {
  display: grid;
  gap: 9px;
}

.pgg-choice,
.pgg-channel {
  cursor: pointer;
}

.pgg-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--pgg-border);
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color 160ms ease, background 160ms ease;
}

.pgg-choice input,
.pgg-channel input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pgg-choice > span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 2px solid rgba(102, 112, 133, 0.45);
  border-radius: 50%;
}

.pgg-choice > span::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pgg-brand);
  content: "";
  opacity: 0;
}

.pgg-choice:has(input:checked) {
  border-color: var(--pgg-brand);
  background: var(--pgg-accent);
}

.pgg-choice:has(input:checked) > span {
  border-color: var(--pgg-brand);
}

.pgg-choice:has(input:checked) > span::after {
  opacity: 1;
}

.pgg-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.pgg-channel {
  display: grid;
  min-height: 82px;
  place-items: center;
  border: 1px solid var(--pgg-border);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  font-size: 12px;
  transition: border-color 160ms ease, background 160ms ease;
}

.pgg-channel .pgg-icon {
  color: var(--pgg-brand);
  width: 25px;
  height: 25px;
}

.pgg-channel:has(input:checked) {
  border-color: var(--pgg-brand);
  background: var(--pgg-accent);
}

.pgg-input-list {
  display: grid;
  gap: 10px;
}

.pgg-input-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--pgg-border);
  border-radius: 10px;
  padding: 11px 12px;
  transition: border-color 160ms ease;
}

.pgg-input-list label:focus-within {
  border-color: var(--pgg-brand);
}

.pgg-input-icon {
  display: inline-flex;
  color: var(--pgg-muted);
}

.pgg-input-list input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--pgg-text);
  outline: 0;
  font-size: 13px;
}

.pgg-submit {
  width: 100%;
  margin-top: 22px;
  border: 0;
  border-radius: 10px;
  background: var(--pgg-brand);
  color: #fff;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 750;
  transition: background 160ms ease;
}

.pgg-submit:hover {
  background: var(--pgg-brand-dark);
}

.pgg-form-shortcode {
  margin-bottom: 22px;
}

.pgg-benefits {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: rgba(38, 48, 66, 0.86);
  font-size: 13px;
}

.pgg-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.pgg-benefits .pgg-icon {
  margin-top: 2px;
  color: var(--pgg-brand);
}

.pgg-steps,
.pgg-people,
.pgg-trust {
  padding: 62px 0;
}

.pgg-people {
  padding: 84px 0;
  background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--pgg-accent) 34%, white) 100%);
}

.pgg-steps h2 {
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
}

.pgg-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  margin-top: 40px;
}

.pgg-step-grid article {
  position: relative;
  text-align: center;
}

.pgg-step-grid article:not(:last-child)::after {
  position: absolute;
  top: 48px;
  right: -34px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--pgg-brand) 14%, white);
  color: var(--pgg-brand);
  content: "\2192";
  font-size: 30px;
  font-weight: 800;
  line-height: 0;
  box-shadow: 0 8px 20px rgba(31, 156, 90, 0.14);
}

.pgg-step-grid strong {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--pgg-brand);
  color: #fff;
  font-size: 14px;
}

.pgg-step-grid .pgg-icon {
  width: 48px;
  height: 48px;
  color: var(--pgg-brand);
}

.pgg-step-grid h3 {
  margin-top: 14px;
  font-size: 15px;
}

.pgg-step-grid p,
.pgg-family-note,
.pgg-people p,
.pgg-trust p {
  color: var(--pgg-muted);
  font-size: 13px;
  line-height: 1.72;
}

.pgg-step-grid p {
  margin-top: 8px;
}

.pgg-family-strip {
  background: #fff;
  padding: 10px 0 42px;
}

.pgg-family-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--pgg-brand) 22%, var(--pgg-border));
  border-radius: 14px;
  background: color-mix(in srgb, var(--pgg-accent) 56%, white);
  padding: 18px 24px;
  text-align: center;
  color: var(--pgg-navy);
  box-shadow: 0 12px 30px rgba(24, 45, 102, 0.06);
}

.pgg-family-note .pgg-icon {
  color: var(--pgg-brand);
  fill: currentColor;
}

.pgg-people-grid,
.pgg-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.pgg-team-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 18%;
  filter: brightness(1.03) saturate(1.04) sepia(0.06) hue-rotate(-4deg);
}

.pgg-people h2,
.pgg-trust h2 {
  font-size: 26px;
  line-height: 1.2;
}

.pgg-people p,
.pgg-trust p {
  max-width: 540px;
  margin-top: 12px;
}

.pgg-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.pgg-value-grid .pgg-icon {
  width: 28px;
  height: 28px;
  color: var(--pgg-brand);
}

.pgg-value-grid h3 {
  margin-top: 10px;
  font-size: 14px;
}

.pgg-value-grid p {
  margin-top: 4px;
  font-size: 12px;
}

.pgg-partners {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1fr;
  gap: 22px;
  align-items: center;
}

.pgg-partner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.pgg-partner-jp {
  background: #000;
  padding: 10px 14px;
}

.pgg-partner-rufa {
  border: 1px solid var(--pgg-border);
  background: #fff;
  padding: 10px 12px;
}

.pgg-partner-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pgg-partner-logo-jp {
  max-width: 260px;
}

.pgg-partner-logo-rufa {
  max-width: 174px;
  image-rendering: auto;
}

.pgg-trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  font-size: 12px;
}

.pgg-trust-points span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pgg-trust-points .pgg-icon {
  color: var(--pgg-brand);
  stroke-width: 3;
}

.pgg-badges {
  border-top: 1px solid var(--pgg-border);
  border-bottom: 1px solid var(--pgg-border);
  background: color-mix(in srgb, var(--pgg-accent) 42%, white);
  padding: 32px 0;
}

.pgg-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.pgg-badge-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.pgg-badge-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--pgg-border);
  border-radius: 50%;
  background: #fff;
  color: var(--pgg-brand);
}

.pgg-badge-grid .pgg-icon {
  width: 24px;
  height: 24px;
}

.pgg-badge-grid h3 {
  margin: 0;
  color: var(--pgg-text);
  font-size: 13px;
}

.pgg-badge-grid p {
  margin: 0;
  color: var(--pgg-muted);
  font-size: 11px;
  line-height: 1.35;
}

.pgg-cta {
  background: var(--pgg-navy);
  color: #fff;
  padding: 42px 0;
}

.pgg-cta h2 {
  font-size: 20px;
}

.pgg-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.pgg-cta-button {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 10px;
  padding: 15px 20px;
  color: #fff;
  font-weight: 750;
  transition: transform 160ms ease, filter 160ms ease;
}

.pgg-cta-button:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.pgg-cta-button small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
}

.pgg-cta-green {
  background: var(--pgg-brand);
}

.pgg-cta-blue {
  background: var(--pgg-blue);
}

.pgg-cta-orange {
  background: var(--pgg-orange);
}

.pgg-cta p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.pgg-faq {
  padding: 64px 0;
}

.pgg-faq-wrap {
  max-width: 1120px;
}

.pgg-faq h2 {
  color: var(--pgg-text);
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
}

.pgg-faq > .pgg-wrap > p {
  margin-top: 8px;
  color: var(--pgg-muted);
  text-align: center;
  font-size: 13px;
}

.pgg-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
  margin-top: 32px;
}

.pgg-faq details {
  overflow: hidden;
  border: 1px solid var(--pgg-border);
  border-radius: 12px;
  background: #fff;
}

.pgg-faq summary {
  position: relative;
  display: flex;
  min-height: 58px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 52px 16px 20px;
  color: var(--pgg-text);
  font-size: 14px;
  font-weight: 750;
  list-style: none;
  transition: background 160ms ease;
}

.pgg-faq summary::-webkit-details-marker {
  display: none;
}

.pgg-faq summary:hover {
  background: color-mix(in srgb, var(--pgg-accent) 40%, white);
}

.pgg-faq summary::after {
  position: absolute;
  right: 20px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--pgg-brand) 12%, white);
  color: var(--pgg-brand);
  content: "+";
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
}

.pgg-faq details[open] summary::after {
  content: "-";
}

.pgg-faq details > div {
  padding: 0 20px 18px;
  color: var(--pgg-muted);
  font-size: 13px;
  line-height: 1.7;
}

.pgg-footer {
  border-top: 1px solid var(--pgg-border);
  background: #fff;
  padding-top: 40px;
}

.pgg-footer-grid {
  display: grid;
  grid-template-columns: minmax(190px, 1.05fr) minmax(200px, 1fr) minmax(200px, 1fr) minmax(270px, 1.15fr);
  gap: 30px;
  padding-bottom: 38px;
  font-size: 13px;
}

.pgg-footer h3 {
  margin: 0 0 12px;
  font-size: 13px;
}

.pgg-footer p,
.pgg-footer address {
  margin: 0 0 10px;
  color: var(--pgg-muted);
  font-style: normal;
  line-height: 1.65;
}

.pgg-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pgg-muted);
}

.pgg-footer a:hover {
  color: var(--pgg-brand);
}

.pgg-footer small {
  display: block;
  margin-left: 24px;
  color: var(--pgg-muted);
  font-size: 11px;
}

.pgg-footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, max-content));
  align-items: start;
  justify-content: flex-start;
  gap: 26px;
}

.pgg-footer-links a {
  display: flex;
  margin-bottom: 9px;
}

.pgg-cookie-button {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  white-space: nowrap;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--pgg-muted);
  padding: 0;
  font: inherit;
  line-height: 1.45;
  text-align: left;
}

.pgg-cookie-button:hover {
  color: var(--pgg-brand);
}

.pgg-footer-bottom {
  border-top: 1px solid var(--pgg-border);
}

.pgg-footer-bottom .pgg-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--pgg-muted);
  font-size: 12px;
}

.pgg-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pgg-footer-bottom .pgg-cookie-button {
  color: var(--pgg-muted);
  font-size: inherit;
}

@media (max-width: 1200px) and (min-width: 821px) {
  .pgg-footer-grid {
    grid-template-columns: minmax(190px, 1fr) minmax(220px, 1fr) minmax(210px, 1fr);
    column-gap: 44px;
    row-gap: 30px;
  }

  .pgg-footer-links {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: clamp(42px, 8vw, 96px);
  }
}

.pgg-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  gap: 12px;
}

.pgg-floating a {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  background: var(--pgg-brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 156, 90, 0.28);
}

.pgg-floating a + a {
  background: var(--pgg-navy);
  box-shadow: 0 14px 28px rgba(24, 45, 102, 0.22);
}

.pgg-toast {
  position: fixed;
  top: 96px;
  left: 50%;
  z-index: 60;
  border-radius: 12px;
  background: var(--pgg-navy);
  color: #fff;
  padding: 12px 18px;
  box-shadow: var(--pgg-shadow);
  transform: translateX(-50%);
}

.pgg-toast[hidden] {
  display: none;
}

.pgg-animate {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

.pgg-contact-card.pgg-animate,
.pgg-badge-grid article.pgg-animate,
.pgg-value-grid article.pgg-animate {
  transition-duration: 420ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pgg-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1120px) {
  .pgg-nav {
    display: none;
  }

  .pgg-header-inner {
    min-height: 72px;
    gap: 16px;
    padding: 12px 0;
  }

  .pgg-header-meta {
    margin-left: auto;
    gap: 10px;
  }

  .pgg-social-links-header {
    display: none;
  }

  .pgg-header-phone small {
    display: none;
  }

  .pgg-header-phone a {
    font-size: 14px;
    gap: 6px;
  }

  .pgg-menu-toggle,
  .pgg-mobile-menu {
    display: block;
  }

  .pgg-menu-toggle {
    display: inline-flex;
  }

  .pgg-people-grid,
  .pgg-trust-grid {
    grid-template-columns: 1fr;
  }

  .pgg-hero-grid {
    grid-template-columns: 1fr;
  }

  .pgg-hero-sticky {
    position: static;
  }

  .pgg-hero-main-top {
    background:
      radial-gradient(ellipse 48% 48% at 70% 44%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(255, 255, 255, 0.72) 76%, rgba(255, 255, 255, 0.92) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 24%, rgba(255, 255, 255, 0.42) 44%, rgba(255, 255, 255, 0.14) 64%, rgba(255, 255, 255, 0.88) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 44%, rgba(255, 255, 255, 0.9) 100%),
      var(--pgg-hero-photo) center / cover no-repeat;
    min-height: 600px;
    padding: 44px 28px 34px;
  }

  .pgg-badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pgg-form-card {
    width: 100%;
    max-width: 560px;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .pgg-wrap {
    width: min(100% - 28px, 1240px);
  }

  .pgg-header-inner {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding: 10px 0;
  }

  .pgg-header-phone {
    text-align: right;
  }

  .pgg-logo-img {
    height: 42px;
  }

  .pgg-contact-cards,
  .pgg-step-grid,
  .pgg-value-grid,
  .pgg-partners,
  .pgg-trust-points,
  .pgg-badge-grid,
  .pgg-cta-grid,
  .pgg-faq-list,
  .pgg-footer-grid,
  .pgg-footer-links {
    grid-template-columns: 1fr;
  }

  .pgg-footer-links {
    display: grid;
  }

  .pgg-hero {
    padding: 42px 0 58px;
  }

  .pgg-hero-grid {
    grid-template-columns: 1fr;
  }

  .pgg-hero-main-top {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.42) 46%, rgba(255, 255, 255, 0.9) 100%),
      var(--pgg-hero-photo) center / cover no-repeat;
    min-height: auto;
    padding: 34px 22px;
  }

  .pgg-contact-cards {
    grid-column: auto;
  }

  .pgg h1 {
    font-size: 34px;
  }

  .pgg-step-grid article:not(:last-child)::after {
    display: none;
  }

  .pgg-team-photo img {
    height: 340px;
  }

  .pgg-channel-grid {
    grid-template-columns: 1fr;
  }

  .pgg-cta p {
    align-items: flex-start;
    text-align: center;
  }

  .pgg-footer-bottom .pgg-wrap {
    flex-direction: column;
    text-align: center;
  }

  .pgg-footer-bottom .pgg-cookie-button {
    justify-content: center;
  }

  .pgg-floating {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 480px) {
  .pgg-logo-img {
    height: 44px;
  }

  .pgg h1 {
    font-size: 30px;
  }

  .pgg-form-body {
    padding: 20px;
  }

  .pgg-hero-main-top {
    padding: 28px 18px;
  }

  .pgg-cookie-button {
    white-space: normal;
  }
}

/* v1.0.15 visual hierarchy and trust refinements */
.pgg h1,
.pgg h2,
.pgg h3 {
  color: var(--pgg-navy);
  font-weight: 780;
  letter-spacing: -0.02em;
}

.pgg h1 {
  font-size: 36px;
  line-height: 1.08;
}

.pgg h2 {
  line-height: 1.16;
}

.pgg h3 {
  line-height: 1.26;
}

.pgg-lead,
.pgg-check-list li,
.pgg-benefits,
.pgg p,
.pgg-faq-list details div {
  color: rgba(38, 48, 66, 0.82);
}

.pgg-hero-main-top {
  min-height: 668px;
  padding: 56px 46px 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 44%, rgba(255, 255, 255, 0.42) 100%),
    var(--pgg-hero-photo) 120% 8% / 70% no-repeat;
}

.pgg-hero-main-top::before {
  content: "";
  position: absolute;
  inset: 0 40% 0 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 54%, rgba(255, 255, 255, 0.76) 78%, rgba(255, 255, 255, 0) 100%);
}

.pgg-hero-main-top::after {
  content: none;
}

.pgg-hero-copy {
  max-width: 404px;
  padding-top: 6px;
  padding-right: 34px;
}

.pgg-lead {
  max-width: 390px;
  font-size: 16px;
  line-height: 1.62;
}

.pgg-check-list li,
.pgg-benefits {
  font-size: 15px;
}

.pgg-contact-cards {
  gap: 16px;
  margin-top: 102px;
}

.pgg-contact-card {
  border: 1px solid rgba(24, 45, 102, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(24, 45, 102, 0.07);
}

.pgg-contact-card strong,
.pgg-contact-card-big strong {
  color: var(--pgg-navy);
  font-weight: 740;
  line-height: 1.28;
}

.pgg-contact-card strong {
  font-size: 16px;
}

.pgg-contact-card-big strong {
  font-size: 18px;
}

.pgg-contact-card span {
  margin-top: 6px;
  color: var(--pgg-navy);
  font-size: 13.5px;
  line-height: 1.45;
}

.pgg-contact-card small {
  color: rgba(38, 48, 66, 0.7);
  font-size: 12.5px;
  line-height: 1.45;
  opacity: 1;
}

.pgg-form-card {
  border: 1px solid rgba(31, 156, 90, 0.16);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(24, 45, 102, 0.14);
}

.pgg-form-head {
  padding: 20px 24px 12px;
  color: var(--pgg-navy);
  font-size: 24px;
  font-weight: 780;
  line-height: 1.15;
}

.pgg-form-body {
  padding: 14px 24px 26px;
}

.pgg-form-label {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 740;
}

.pgg-choice,
.pgg-channel {
  border-width: 1px;
}

.pgg-choice {
  font-size: 15px;
  line-height: 1.45;
}

.pgg-channel-grid {
  gap: 12px;
}

.pgg-channel {
  min-height: 104px;
  padding: 14px 12px;
  font-size: 14px;
  font-weight: 700;
}

.pgg-channel .pgg-icon {
  width: 28px;
  height: 28px;
}

.pgg-input-list input {
  font-size: 15px;
}

.pgg-consent {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 10px;
  margin-top: 16px;
  border: 1px solid rgba(24, 45, 102, 0.08);
  border-radius: 16px;
  background: #fbfcfd;
  padding: 13px 14px;
  color: rgba(38, 48, 66, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

.pgg-consent input {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--pgg-brand);
}

.pgg-consent-copy {
  min-width: 0;
}

.pgg-consent-label {
  display: block;
  color: rgba(38, 48, 66, 0.74);
  cursor: pointer;
}

.pgg-consent a {
  color: var(--pgg-navy);
  text-decoration: underline;
}

.pgg-consent-details {
  margin-top: 6px;
}

.pgg-consent-details summary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: var(--pgg-brand);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.pgg-consent-details summary::-webkit-details-marker {
  display: none;
}

.pgg-consent-less {
  display: none;
}

.pgg-consent-details[open] .pgg-consent-more {
  display: none;
}

.pgg-consent-details[open] .pgg-consent-less {
  display: inline;
}

.pgg-consent-details > div {
  margin-top: 6px;
  color: rgba(38, 48, 66, 0.74);
}

.pgg-whatsapp-note,
.pgg-form-notice {
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.55;
}

.pgg-whatsapp-note {
  display: none;
  margin-top: 14px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  background: #fff7ed;
  color: rgba(38, 48, 66, 0.82);
}

.pgg-fallback-form:has(input[value="whatsapp"]:checked) .pgg-whatsapp-note {
  display: block;
}

.pgg-form-notice {
  margin-top: 16px;
  background: color-mix(in srgb, var(--pgg-accent) 72%, white);
  color: var(--pgg-navy);
  font-weight: 650;
}

.pgg-submit {
  margin-top: 18px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 780;
}

.pgg-steps h2,
.pgg-people h2,
.pgg-trust h2,
.pgg-faq h2,
.pgg-cta h2 {
  font-size: 32px;
  line-height: 1.16;
}

.pgg-people p,
.pgg-trust p,
.pgg-faq > .pgg-wrap > p {
  font-size: 15px;
  line-height: 1.72;
}

.pgg-step-grid article {
  border: 1px solid rgba(24, 45, 102, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfa 100%);
  padding: 30px 26px;
  box-shadow: 0 10px 30px rgba(24, 45, 102, 0.05);
}

.pgg-step-grid article strong {
  width: 48px;
  height: 48px;
  font-size: 18px;
}

.pgg-step-grid article .pgg-icon {
  width: 34px;
  height: 34px;
}

.pgg-step-grid article h3 {
  font-size: 22px;
}

.pgg-step-grid article p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(38, 48, 66, 0.88);
}

.pgg-step-grid article:not(:last-child)::after {
  top: 50%;
  box-shadow: 0 8px 20px rgba(31, 156, 90, 0.12);
}

.pgg-badges {
  border-top: 1px solid var(--pgg-border);
  border-bottom: 0;
  background: color-mix(in srgb, var(--pgg-accent) 28%, white);
  padding: 28px 0 14px;
}

.pgg-badge-grid {
  gap: 18px;
}

.pgg-badge-grid article {
  gap: 12px;
  padding: 24px 18px 20px;
  border: 1px solid rgba(24, 45, 102, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(24, 45, 102, 0.04);
}

.pgg-badge-grid article > span {
  border-color: rgba(31, 156, 90, 0.18);
  background: color-mix(in srgb, var(--pgg-accent) 60%, white);
  color: var(--pgg-brand);
}

.pgg-badge-grid h3 {
  color: var(--pgg-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.pgg-badge-grid p,
.pgg-faq > .pgg-wrap > p {
  color: rgba(38, 48, 66, 0.78);
}

.pgg-badge-grid p {
  font-size: 13px;
  line-height: 1.55;
}

.pgg-family-strip {
  background: color-mix(in srgb, var(--pgg-accent) 28%, white);
  padding: 0 0 34px;
  border-bottom: 1px solid var(--pgg-border);
}

.pgg-family-note {
  border: 1px solid rgba(31, 156, 90, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  padding: 15px 20px;
  color: rgba(24, 45, 102, 0.9);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
  box-shadow: none;
}

.pgg-family-note .pgg-icon {
  color: var(--pgg-brand);
}

.pgg-cta-grid {
  gap: 16px;
  align-items: stretch;
}

.pgg-cta-button {
  min-height: 102px;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 760;
  box-shadow: none;
}

.pgg-cta-button .pgg-icon {
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.pgg-cta-button span {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.pgg-cta-button small {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 1;
}

.pgg-cta-primary {
  box-shadow: 0 18px 34px rgba(31, 156, 90, 0.28);
}

.pgg-cta-primary:hover {
  transform: translateY(-3px);
}

.pgg-cta-blue {
  border-color: rgba(255, 255, 255, 0.12);
  background: #3c4f87;
  color: #fff;
  box-shadow: 0 18px 34px rgba(24, 45, 102, 0.22);
}

.pgg-cta-blue:hover {
  background: #33467b;
}

.pgg-cta-blue span {
  color: #fff;
}

.pgg-cta-blue .pgg-icon {
  color: #fff;
}

.pgg-cta-blue small {
  color: rgba(255, 255, 255, 0.82);
}

.pgg-cta-orange {
  border-color: rgba(31, 156, 90, 0.12);
  background: var(--pgg-brand);
  color: #fff;
  box-shadow: 0 18px 34px rgba(31, 156, 90, 0.24);
}

.pgg-cta-orange span {
  color: #fff;
}

.pgg-cta-orange .pgg-icon {
  color: #fff;
}

.pgg-cta-orange small {
  color: rgba(255, 255, 255, 0.82);
}

.pgg-cta-orange:hover {
  background: #239f5d;
}

.pgg-cta-button.pgg-cta-green {
  border-color: rgba(31, 156, 90, 0.3);
  background: #f6fbf7;
  color: #236845;
  box-shadow: 0 10px 24px rgba(31, 156, 90, 0.08);
}

.pgg-cta-button.pgg-cta-green span,
.pgg-cta-button.pgg-cta-green small,
.pgg-cta-button.pgg-cta-green .pgg-icon {
  color: #236845;
}

.pgg-cta-button.pgg-cta-green small {
  color: rgba(35, 104, 69, 0.78);
}

.pgg-cta-button.pgg-cta-green:hover {
  background: #eef8f1;
}

.pgg-cta-button.pgg-cta-green.pgg-cta-primary {
  box-shadow: 0 10px 24px rgba(31, 156, 90, 0.08);
}

.pgg-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.pgg-cta p .pgg-icon {
  color: #84d8a0;
}

@media (max-width: 1120px) {
  .pgg-hero-main-top {
    min-height: 620px;
    padding: 48px 32px 38px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 46%, rgba(255, 255, 255, 0.42) 100%),
      var(--pgg-hero-photo) 88% center / 56% no-repeat;
  }

  .pgg-hero-main-top::before {
    inset: 0 28% 0 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.5) 78%, rgba(255, 255, 255, 0) 100%);
  }

  .pgg-hero-copy {
    max-width: 440px;
    padding-right: 20px;
  }
}

@media (max-width: 820px) {
  .pgg h1 {
    font-size: 34px;
  }

  .pgg-steps h2,
  .pgg-people h2,
  .pgg-trust h2,
  .pgg-faq h2,
  .pgg-cta h2 {
    font-size: 28px;
  }

  .pgg-hero-main-top {
    min-height: auto;
    padding: 34px 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.58) 46%, rgba(255, 255, 255, 0.92) 100%),
      var(--pgg-hero-photo) center / cover no-repeat;
  }

  .pgg-hero-main-top::before {
    content: none;
  }

  .pgg-hero-copy {
    max-width: none;
    padding-right: 0;
  }

  .pgg-contact-cards {
    gap: 14px;
    margin-top: 36px;
  }

  .pgg-form-head {
    font-size: 22px;
  }

  .pgg-step-grid article {
    padding: 26px 20px;
  }

  .pgg-family-note {
    justify-content: flex-start;
    text-align: left;
  }

  .pgg-cta-button {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .pgg h1 {
    font-size: 30px;
  }

  .pgg-steps h2,
  .pgg-people h2,
  .pgg-trust h2,
  .pgg-faq h2,
  .pgg-cta h2 {
    font-size: 25px;
  }

  .pgg-lead {
    font-size: 15px;
    line-height: 1.58;
  }

  .pgg-consent {
    padding: 12px 13px;
    font-size: 12.5px;
  }

  .pgg-badge-grid article {
    padding: 20px 16px 18px;
  }
}

.pgg-footer-note,
.pgg-footer-company-meta,
.pgg-footer-links p {
  margin-top: 12px;
  color: rgba(38, 48, 66, 0.74);
  font-size: 14px;
  line-height: 1.6;
}

.pgg-footer h3,
.pgg-footer-links a,
.pgg-footer-company-meta,
.pgg-footer-note,
.pgg-footer p,
.pgg-footer address {
  letter-spacing: 0;
}

@media (max-width: 820px) {
  .pgg-form-head {
    font-size: 24px;
  }

  .pgg-step-grid article {
    padding: 26px 22px;
  }
}

/* v1.0.20 mobile hero, social links and WhatsApp refinements */
.pgg-header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.pgg-social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pgg-social-link {
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.pgg-social-link:hover {
  transform: translateY(-1px);
}

.pgg-social-links-header .pgg-social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 45, 102, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--pgg-navy);
  box-shadow: 0 10px 22px rgba(24, 45, 102, 0.08);
}

.pgg-social-links-header .pgg-social-link span {
  display: none;
}

.pgg-social-links-header .pgg-icon,
.pgg-social-links-footer .pgg-icon {
  width: 18px;
  height: 18px;
}

.pgg-social-links-footer {
  margin-top: 16px;
}

.pgg-social-links-footer .pgg-social-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(24, 45, 102, 0.1);
  border-radius: 999px;
  background: #f7fafc;
  padding: 0 14px;
  color: var(--pgg-navy);
}

.pgg-footer-links > div:last-child .pgg-social-links-footer {
  margin-top: 10px;
}

.pgg-social-links-header .pgg-social-link:hover,
.pgg-social-links-footer .pgg-social-link:hover {
  border-color: rgba(31, 156, 90, 0.28);
  color: var(--pgg-brand);
}

.pgg-hero-photo-mobile {
  display: none;
}

.pgg-floating {
  gap: 10px;
}

.pgg-floating a {
  width: 58px;
  height: 58px;
}

.pgg-floating-call {
  background: var(--pgg-navy);
  box-shadow: 0 16px 30px rgba(24, 45, 102, 0.24);
}

.pgg-floating-whatsapp {
  background: var(--pgg-brand);
  box-shadow: 0 16px 30px rgba(31, 156, 90, 0.3);
}

@media (max-width: 820px) {
  .pgg-header-meta {
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .pgg-header-phone a {
    font-size: 13px;
  }

  .pgg-hero-main-top {
    background: linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
    padding: 34px 22px;
  }

  .pgg-hero-photo-mobile {
    display: block;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 22px;
    background: color-mix(in srgb, var(--pgg-accent) 80%, white);
    box-shadow: 0 18px 34px rgba(24, 45, 102, 0.1);
  }

  .pgg-hero-photo-mobile img {
    width: 100%;
    aspect-ratio: 5 / 6;
    object-fit: cover;
    object-position: center 18%;
  }

  .pgg-contact-cards {
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .pgg-logo-img {
    height: 38px;
  }

  .pgg-header-inner {
    min-height: 64px;
  }

  .pgg-header-phone a {
    font-size: 12px;
  }

  .pgg-menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .pgg-social-links-footer .pgg-social-link {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .pgg-floating {
    right: 12px;
    bottom: 12px;
  }

  .pgg-floating a {
    width: 54px;
    height: 54px;
  }
}

.pgg-page,
.pgg-page * {
  box-sizing: border-box;
}

.pgg-page {
  min-height: 100vh;
  padding: 48px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(31, 156, 90, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 24%);
  color: var(--pgg-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pgg-page a {
  color: var(--pgg-blue);
}

.pgg-page a:hover {
  color: var(--pgg-brand);
}

.pgg-page__shell {
  gap: 24px;
}

.pgg-page__header {
  padding: 0 4px;
}

.pgg-page__eyebrow {
  margin: 0 0 10px;
  color: var(--pgg-brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pgg-page__site-title {
  margin: 0;
  color: var(--pgg-navy);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 800;
  line-height: 1.1;
}

.pgg-page__site-title a {
  color: inherit;
  text-decoration: none;
}

.pgg-page__card {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(24, 45, 102, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 48px rgba(24, 45, 102, 0.1);
}

.pgg-page__title {
  margin: 0 0 18px;
  color: var(--pgg-text);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.pgg-page__content {
  color: rgba(38, 48, 66, 0.92);
  font-size: 18px;
  line-height: 1.75;
}

.pgg-page__content > * + * {
  margin-block-start: 1.15em;
}

.pgg-page__content h2,
.pgg-page__content h3,
.pgg-page__content h4 {
  margin: 1.6em 0 0.5em;
  color: var(--pgg-navy);
  font-weight: 800;
  line-height: 1.18;
}

.pgg-page__content h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.pgg-page__content h3 {
  font-size: clamp(22px, 2.5vw, 28px);
}

.pgg-page__content p,
.pgg-page__content ul,
.pgg-page__content ol,
.pgg-page__content blockquote {
  margin: 0;
}

.pgg-page__content ul,
.pgg-page__content ol {
  padding-left: 1.3em;
}

.pgg-page__content li + li {
  margin-top: 0.4em;
}

.pgg-page__content strong {
  color: var(--pgg-text);
}

.pgg-page__content blockquote {
  padding: 18px 22px;
  border-left: 4px solid var(--pgg-brand);
  border-radius: 16px;
  background: rgba(31, 156, 90, 0.07);
  color: var(--pgg-text);
}

.pgg-page__content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.4em;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--pgg-border);
}

.pgg-page__content th,
.pgg-page__content td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--pgg-border);
  text-align: left;
  vertical-align: top;
}

.pgg-page__content th {
  background: #f8fbff;
  color: var(--pgg-navy);
  font-weight: 700;
}

.pgg-page__content hr {
  margin: 2em 0;
  border: 0;
  border-top: 1px solid var(--pgg-border);
}

@media (max-width: 782px) {
  .pgg-page {
    padding: 30px 0 46px;
  }

  .pgg-page__content {
    font-size: 16px;
    line-height: 1.65;
  }

  .pgg-page__content table,
  .pgg-page__content tbody,
  .pgg-page__content tr,
  .pgg-page__content td,
  .pgg-page__content th {
    display: block;
    width: 100%;
  }

  .pgg-page__content th,
  .pgg-page__content td {
    padding: 12px 14px;
  }
}

/* v1.0.26 landing palette and hierarchy refresh */
:root {
  --pgg-cream: #f7efe4;
  --pgg-cream-strong: #f2e8db;
  --pgg-soft-green: #f6fbf8;
  --pgg-shadow-soft: 0 16px 34px rgba(24, 45, 102, 0.08);
  --pgg-shadow-card: 0 12px 28px rgba(24, 45, 102, 0.07);
}

.pgg-hero,
.pgg-trust,
.pgg-family-strip,
.pgg-badges,
.pgg-faq {
  background: var(--pgg-cream);
}

.pgg-steps {
  background: #fff;
}

.pgg-people {
  background: var(--pgg-soft-green);
}

.pgg-hero {
  padding: 42px 0 72px;
}

.pgg-hero-grid {
  column-gap: 42px;
  row-gap: 34px;
}

.pgg-hero-main-top {
  padding: 64px 52px 50px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 44%, rgba(255, 255, 255, 0.42) 100%),
    var(--pgg-hero-photo) 120% 8% / 70% no-repeat,
    var(--pgg-cream);
}

.pgg-hero-copy {
  max-width: 430px;
  padding-top: 20px;
}

.pgg h1 {
  color: var(--pgg-navy);
}

.pgg-lead {
  max-width: 410px;
  margin-top: 20px;
  color: var(--pgg-text);
  font-size: 14px;
  line-height: 1.72;
}

.pgg-check-list {
  margin-top: 22px;
  gap: 12px;
}

.pgg-check-list li {
  color: var(--pgg-text);
  font-size: 13px;
}

.pgg-script-note {
  margin-top: 28px;
}

.pgg-contact-cards {
  gap: 20px;
  margin-top: 104px;
}

.pgg-contact-card {
  min-height: 164px;
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: var(--pgg-shadow-card);
}

.pgg-contact-card:hover {
  border-color: rgba(24, 45, 102, 0.16);
  box-shadow: 0 18px 34px rgba(24, 45, 102, 0.08);
}

.pgg-contact-card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border: 1px solid rgba(31, 156, 90, 0.24);
  background: #fff;
  color: var(--pgg-navy);
}

.pgg-contact-card strong,
.pgg-contact-card-big strong {
  color: var(--pgg-navy);
}

.pgg-contact-card span,
.pgg-contact-card small {
  color: var(--pgg-muted);
  opacity: 1;
}

.pgg-form-card {
  border-color: rgba(24, 45, 102, 0.08);
  border-radius: 26px;
  box-shadow: var(--pgg-shadow-soft);
}

.pgg-form-head {
  padding: 24px 26px 14px;
  color: var(--pgg-navy);
  font-size: 20px;
}

.pgg-form-body {
  padding: 0 26px 28px;
}

.pgg-form-card .pge-crm-frontend-form {
  border: 0;
  box-shadow: none;
  padding: 0;
  background: transparent;
}

.pgg-benefits {
  gap: 12px;
  margin-top: 22px;
  color: var(--pgg-muted);
}

.pgg-benefits li {
  gap: 12px;
}

.pgg-steps,
.pgg-people,
.pgg-trust,
.pgg-faq {
  padding: 82px 0;
}

.pgg-steps h2,
.pgg-people h2,
.pgg-trust h2,
.pgg-faq h2 {
  color: var(--pgg-navy);
}

.pgg-steps h2 {
  font-size: 30px;
}

.pgg-step-grid {
  gap: 28px;
  margin-top: 44px;
}

.pgg-step-grid article {
  min-height: 100%;
  border: 1px solid rgba(24, 45, 102, 0.08);
  border-radius: 24px;
  background: #fff;
  padding: 28px 24px 30px;
  box-shadow: 0 10px 24px rgba(24, 45, 102, 0.04);
}

.pgg-step-grid article:not(:last-child)::after {
  top: 76px;
  right: -20px;
  width: 38px;
  height: 38px;
  background: var(--pgg-cream-strong);
  color: var(--pgg-navy);
  font-size: 20px;
  box-shadow: none;
}

.pgg-step-grid strong {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  background: var(--pgg-cream-strong);
  color: var(--pgg-navy);
  font-size: 16px;
}

.pgg-step-grid .pgg-icon {
  width: 42px;
  height: 42px;
  color: var(--pgg-navy);
}

.pgg-step-grid h3 {
  margin-top: 16px;
  color: var(--pgg-navy);
  font-size: 17px;
}

.pgg-step-grid p {
  margin-top: 10px;
  color: var(--pgg-text);
  font-size: 14px;
  line-height: 1.75;
}

.pgg-people-grid,
.pgg-trust-grid {
  gap: 72px;
}

.pgg-people p,
.pgg-trust p {
  color: var(--pgg-text);
  font-size: 15px;
}

.pgg-people-kicker {
  margin-top: 14px;
  color: var(--pgg-navy);
  font-size: 15px;
  font-weight: 700;
}

.pgg-value-grid {
  gap: 20px;
  margin-top: 34px;
}

.pgg-value-grid article {
  border: 1px solid rgba(24, 45, 102, 0.08);
  border-radius: 20px;
  background: #fff;
  padding: 20px 18px;
  box-shadow: 0 10px 20px rgba(24, 45, 102, 0.04);
}

.pgg-value-grid .pgg-icon {
  color: var(--pgg-navy);
}

.pgg-value-grid h3 {
  color: var(--pgg-navy);
  font-size: 15px;
}

.pgg-value-grid p {
  color: var(--pgg-muted);
  font-size: 13px;
  line-height: 1.7;
}

.pgg-partners {
  gap: 16px;
  border: 1px solid rgba(24, 45, 102, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  padding: 26px;
}

.pgg-partner {
  min-height: 68px;
}

.pgg-partner-jp {
  background: #fff6d2;
}

.pgg-partner-logo {
  opacity: 0.94;
}

.pgg-partner-logo-jp {
  max-width: 220px;
}

.pgg-partner-logo-rufa {
  max-width: 150px;
  opacity: 0.78;
}

.pgg-trust-points {
  gap: 14px;
  margin-top: 24px;
  font-size: 14px;
}

.pgg-trust-points span {
  padding: 12px 14px;
  border: 1px solid rgba(24, 45, 102, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--pgg-navy);
}

.pgg-badges {
  border-top-color: rgba(24, 45, 102, 0.08);
  border-bottom-color: rgba(24, 45, 102, 0.08);
  padding: 40px 0 44px;
}

.pgg-badge-grid {
  gap: 22px;
}

.pgg-badge-grid article {
  min-height: 154px;
  justify-content: center;
  border: 1px solid rgba(24, 45, 102, 0.08);
  border-radius: 22px;
  background: #fff;
  padding: 26px 18px 22px;
  box-shadow: 0 12px 24px rgba(24, 45, 102, 0.04);
}

.pgg-badge-grid article > span {
  width: 52px;
  height: 52px;
  border-color: rgba(31, 156, 90, 0.24);
  color: var(--pgg-navy);
}

.pgg-badge-grid h3 {
  color: var(--pgg-navy);
  font-size: 16px;
}

.pgg-badge-grid p {
  color: var(--pgg-muted);
  font-size: 13px;
  line-height: 1.6;
}

.pgg-family-strip {
  padding: 0 0 48px;
}

.pgg-family-note {
  border-radius: 18px;
  border-color: rgba(31, 156, 90, 0.18);
  background: rgba(255, 255, 255, 0.78);
  padding: 18px 26px;
  color: var(--pgg-navy);
  font-size: 15px;
  box-shadow: none;
}

.pgg-family-note .pgg-icon {
  color: var(--pgg-brand);
}

.pgg-cta {
  background: var(--pgg-navy);
  padding: 54px 0 48px;
}

.pgg-cta h2 {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
}

.pgg-cta-grid {
  gap: 18px;
  margin-top: 28px;
}

.pgg-cta-button {
  min-height: 108px;
  border: 1px solid transparent;
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: none;
}

.pgg-cta-button .pgg-icon {
  width: 24px;
  height: 24px;
}

.pgg-cta-button span {
  font-size: 16px;
}

.pgg-cta-button small {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.88;
}

.pgg-cta-orange {
  background: var(--pgg-brand);
  color: #fff;
}

.pgg-cta-orange:hover {
  background: var(--pgg-brand-dark);
}

.pgg-cta-blue {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.pgg-cta-blue .pgg-icon,
.pgg-cta-blue span,
.pgg-cta-blue small {
  color: #fff;
}

.pgg-cta-button.pgg-cta-green,
.pgg-cta-button.pgg-cta-green.pgg-cta-primary {
  border-color: rgba(31, 156, 90, 0.22);
  background: #f4fbf6;
  color: var(--pgg-navy);
}

.pgg-cta-button.pgg-cta-green .pgg-icon {
  color: var(--pgg-brand);
}

.pgg-cta-button.pgg-cta-green span,
.pgg-cta-button.pgg-cta-green small {
  color: var(--pgg-navy);
}

.pgg-cta-button.pgg-cta-green:hover {
  background: #edf7f0;
}

.pgg-cta p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.pgg-cta p .pgg-icon {
  color: #7be0a1;
}

.pgg-faq-wrap > p {
  margin-top: 12px;
  color: var(--pgg-text);
  text-align: center;
  font-size: 15px;
}

.pgg-faq-list {
  gap: 18px;
  margin-top: 38px;
}

.pgg-faq details {
  border-radius: 18px;
  box-shadow: none;
}

.pgg-faq summary {
  min-height: 72px;
  padding: 20px 58px 20px 22px;
  background: #fff;
  color: var(--pgg-navy);
  font-size: 15px;
}

.pgg-faq summary:hover {
  background: #fffaf4;
}

.pgg-faq summary::after {
  width: 30px;
  height: 30px;
  background: rgba(31, 156, 90, 0.12);
  color: var(--pgg-brand);
  font-size: 22px;
}

.pgg-faq details > div {
  padding: 0 22px 22px;
  background: #fff;
  color: var(--pgg-text);
  font-size: 14px;
  line-height: 1.75;
}

.pgg-footer {
  border-top-color: rgba(24, 45, 102, 0.08);
  background: #fbf6ef;
  padding-top: 48px;
}

.pgg-footer-grid {
  gap: 36px;
  padding-bottom: 42px;
}

.pgg-footer h3 {
  color: var(--pgg-navy);
  font-size: 14px;
}

.pgg-footer p,
.pgg-footer address,
.pgg-footer a,
.pgg-footer small {
  color: #4f5b6f;
}

.pgg-social-links-footer {
  gap: 10px;
  margin-top: 14px;
}

.pgg-social-links-footer .pgg-social-link {
  min-height: 44px;
  border-color: rgba(24, 45, 102, 0.1);
  background: #fff;
  padding: 0 16px;
  box-shadow: none;
}

.pgg-social-links-footer .pgg-social-link:hover {
  background: #f6fbf8;
}

@media (min-width: 961px) {
  .pgg-footer-grid > *:not(:last-child) {
    border-right: 1px solid rgba(24, 45, 102, 0.08);
    padding-right: 20px;
  }
}

@media (max-width: 1100px) {
  .pgg-hero-grid,
  .pgg-people-grid,
  .pgg-trust-grid {
    grid-template-columns: 1fr;
  }

  .pgg-form-card {
    justify-self: stretch;
  }

  .pgg-step-grid article:not(:last-child)::after {
    display: none;
  }

  .pgg-badge-grid,
  .pgg-cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  .pgg-hero {
    padding: 28px 0 46px;
  }

  .pgg-hero-main-top {
    padding: 38px 24px 30px;
  }

  .pgg-contact-cards,
  .pgg-step-grid,
  .pgg-value-grid,
  .pgg-trust-points,
  .pgg-badge-grid,
  .pgg-cta-grid,
  .pgg-faq-list {
    grid-template-columns: 1fr;
  }

  .pgg-steps,
  .pgg-people,
  .pgg-trust,
  .pgg-faq {
    padding: 62px 0;
  }

  .pgg-cta h2 {
    font-size: 26px;
  }

  .pgg-footer-grid > * {
    border-right: 0;
    padding-right: 0;
  }
}

/* v1.0.27 visual mockup fine-tuning */
.pgg h1 {
  font-weight: 760;
}

.pgg-steps h2,
.pgg-people h2,
.pgg-trust h2,
.pgg-faq h2,
.pgg-cta h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pgg-contact-card {
  box-shadow: 0 10px 20px rgba(24, 45, 102, 0.05);
}

.pgg-contact-card-icon,
.pgg-badge-grid article > span {
  border-color: rgba(242, 232, 219, 0.92);
  background: rgba(247, 239, 228, 0.86);
  color: var(--pgg-brand-dark);
}

.pgg-contact-card strong,
.pgg-step-grid h3,
.pgg-value-grid h3,
.pgg-badge-grid h3,
.pgg-faq summary {
  font-weight: 700;
}

.pgg-contact-card span,
.pgg-contact-card small,
.pgg-step-grid p,
.pgg-value-grid p,
.pgg-badge-grid p,
.pgg-faq-wrap > p {
  color: #4f5b6f;
}

.pgg-form-head {
  padding: 22px 26px 12px;
  font-size: 19px;
  font-weight: 700;
}

.pgg-partners {
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.85fr) minmax(150px, 0.85fr);
  gap: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 2px 0 0;
}

.pgg-partners > .pgg-logo-img {
  width: 100%;
  max-width: 230px;
  height: auto;
  margin-inline: auto;
}

.pgg-partner {
  min-height: 62px;
  border: 1px solid rgba(24, 45, 102, 0.08);
  border-radius: 18px;
  background: #fff;
  padding: 12px 16px;
}

.pgg-partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.pgg-partner-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(24, 45, 102, 0.08);
}

.pgg-partner-jp {
  border-color: rgba(16, 16, 16, 0.08);
  background: #111;
}

.pgg-partner-rufa {
  background: rgba(255, 255, 255, 0.82);
}

.pgg-partner-logo-jp {
  max-width: 188px;
}

.pgg-partner-logo-rufa {
  max-width: 138px;
  opacity: 0.68;
}

.pgg-trust-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 18px;
  font-size: 12px;
}

.pgg-trust-points span {
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #4f5b6f;
}

.pgg-trust-points .pgg-icon {
  color: var(--pgg-brand-dark);
}

.pgg-badge-grid article {
  box-shadow: 0 10px 18px rgba(24, 45, 102, 0.04);
}

.pgg-family-strip {
  padding: 8px 0 42px;
}

.pgg-family-note {
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
}

.pgg-family-note .pgg-icon {
  color: var(--pgg-brand-dark);
}

@media (max-width: 1100px) {
  .pgg-partners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pgg-trust-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  .pgg-partners,
  .pgg-trust-points {
    grid-template-columns: 1fr;
  }

  .pgg-family-note {
    justify-content: center;
    text-align: center;
  }
}

/* v1.0.28 team photo and mobile floating controls */
.pgg-people {
  background: var(--pgg-cream);
}

.pgg-team-photo img {
  object-position: center center;
  filter: brightness(1.02) saturate(0.96) sepia(0.02);
}

@media (max-width: 820px) {
  .pgg-floating {
    display: grid;
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .pgg-floating-call {
    display: none;
  }

  .pgg-floating a {
    width: 56px;
    height: 56px;
  }
}

/* v1.0.29 logo-green alignment for phone and WhatsApp */
.pgg-header-phone a,
.pgg-header-phone a .pgg-icon {
  color: var(--pgg-logo-green);
}

.pgg-floating-whatsapp {
  background: var(--pgg-logo-green);
  box-shadow: 0 16px 30px rgba(78, 143, 38, 0.28);
}

.pgg-floating-whatsapp:hover {
  background: var(--pgg-logo-green-dark);
}

/* v1.0.32 mobile footer spacing near chat/WhatsApp */
@media (max-width: 820px) {
  .pgg-footer-links > div:last-child,
  .pgg-footer-bottom .pgg-wrap {
    padding-right: 84px;
  }

  .pgg-footer-bottom .pgg-wrap {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .pgg-footer-links > div:last-child,
  .pgg-footer-bottom .pgg-wrap {
    padding-right: 74px;
  }

  .pgg-footer-bottom .pgg-wrap {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }
}

/* v1.0.33 stronger mobile footer safe area near chat/WhatsApp */
@media (max-width: 820px) {
  .pgg-footer-grid {
    padding-right: 92px;
    padding-bottom: 26px;
  }

  .pgg-footer-links > div:last-child {
    padding-right: 0;
  }

  .pgg-footer-bottom .pgg-wrap {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding-right: 92px;
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .pgg-footer-bottom nav {
    justify-content: flex-start;
    gap: 12px 18px;
  }
}

@media (max-width: 480px) {
  .pgg-footer-grid,
  .pgg-footer-bottom .pgg-wrap {
    padding-right: 82px;
  }

  .pgg-footer-bottom .pgg-wrap {
    padding-bottom: calc(90px + env(safe-area-inset-bottom));
  }
}

/* v1.0.34 footer reset and floating/footer collision fix */
.pgg-floating {
  bottom: 104px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.pgg-floating.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

@media (max-width: 820px) {
  .pgg-footer-grid {
    padding-right: 0;
    padding-bottom: 42px;
  }

  .pgg-footer-links > div:last-child {
    padding-right: 0;
  }

  .pgg-footer-bottom .pgg-wrap {
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding-right: 0;
    padding-bottom: 16px;
  }

  .pgg-footer-bottom nav {
    justify-content: center;
    gap: 16px;
  }

  .pgg-floating {
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(104px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .pgg-footer-grid,
  .pgg-footer-bottom .pgg-wrap {
    padding-right: 0;
  }

  .pgg-footer-bottom .pgg-wrap {
    padding-bottom: 16px;
  }

  .pgg-floating {
    right: 30px;
    bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

button.pgg-contact-card,
button.pgg-cta-button {
  width: 100%;
  border: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

button.pgg-contact-card {
  color: inherit;
}

.pgg-modal-open {
  overflow: hidden;
}

.pgg-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.pgg-modal[hidden] {
  display: none;
}

.pgg-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.58);
  backdrop-filter: blur(10px);
}

.pgg-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  border: 1px solid rgba(231, 233, 239, 0.86);
  border-radius: 28px;
  background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
  padding: 32px;
  box-shadow: 0 34px 80px rgba(24, 45, 102, 0.26);
}

.pgg-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(24, 45, 102, 0.08);
  color: var(--pgg-navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.pgg-modal-copy {
  max-width: 540px;
  margin-bottom: 22px;
}

.pgg-modal-kicker {
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(31, 156, 90, 0.12);
  padding: 7px 12px;
  color: var(--pgg-brand-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pgg-modal-copy h2 {
  margin: 0;
  color: var(--pgg-navy);
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.05;
}

.pgg-modal-copy p {
  margin: 12px 0 0;
  color: #4f5b6f;
  font-size: 15px;
  line-height: 1.65;
}

.pgg-modal-form .pge-crm-frontend-form,
.pgg-modal-form .pge-crm-success {
  max-width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.pgg-booking-form-unavailable {
  border-radius: 20px;
  background: #f8ede0;
  padding: 18px 20px;
  color: var(--pgg-navy);
  font-weight: 700;
}

@media (max-width: 782px) {
  .pgg-modal {
    padding: 14px;
    align-items: end;
  }

  .pgg-modal-dialog {
    width: 100%;
    max-height: min(88vh, 820px);
    overflow: auto;
    border-radius: 24px;
    padding: 24px 20px 20px;
  }

  .pgg-modal-close {
    top: 14px;
    right: 14px;
  }

  .pgg-modal-copy {
    margin-bottom: 18px;
    padding-right: 36px;
  }

  .pgg-modal-copy h2 {
    font-size: 30px;
  }
}
