/* ============================================
   Permis-Go Design System
   ============================================ */

/* ----- Design Tokens ----- */
:root {
  --pg-ink: #101820;
  --pg-muted: #667085;
  --pg-soft: #f5f7fb;
  --pg-line: #d9e1ea;
  --pg-white: #ffffff;
  --pg-blue: #1d7afc;
  --pg-teal: #2f80ed;
  --pg-coral: #ff7a3d;
  --pg-violet: #7357ff;
  --pg-gold: #d9b300;
  --pg-dark: #0c131d;
  --pg-shadow: 0 18px 55px rgba(16, 24, 32, 0.14);

  --pg-font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pg-font-display: var(--pg-font-sans);
  --pg-radius: 8px;
  --pg-transition: 0.2s ease;
  --pg-title-hero: clamp(2rem, 3.8vw, 3rem);
  --pg-title-page: clamp(1.65rem, 2.8vw, 2.25rem);
  --pg-title-section: clamp(1.35rem, 2.2vw, 1.85rem);
  --pg-title-card: clamp(1rem, 1.2vw, 1.12rem);

  --hero-image: none;
  --hero-position: center;
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--pg-ink);
  background: var(--pg-soft);
  font-family: var(--pg-font-sans);
  /* font-size: 16px; */
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }
main { overflow: hidden; }

/* ----- Typography ----- */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pg-blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.section-kicker::before {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: var(--pg-coral);
}

.section-title {
  margin: 10px 0 0;
  font-family: var(--pg-font-display);
  font-size: var(--pg-title-section);
  line-height: 1.16;
  font-weight: 700;
}

.section-lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--pg-muted);
}

h1, h2, h3, h4 {
  font-family: var(--pg-font-display);
  font-weight: 700;
  line-height: 1.16;
}

/* h1 { font-size: var(--pg-title-page); }
h2 { font-size: var(--pg-title-section); }
h3 { font-size: var(--pg-title-card); }

.h1, h1.h1 { font-size: clamp(1.55rem, 2.5vw, 2.05rem); }
.h2, h2.h2 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
.h3, h2.h3, h3.h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); }
.h4, h3.h4, h4.h4 { font-size: clamp(1.08rem, 1.35vw, 1.25rem); }
.h5, h3.h5, h4.h5 { font-size: 1rem; }
.display-6 { font-size: clamp(1.65rem, 2.5vw, 2.15rem); } */

.pg-home-hero-copy h1 { font-size: var(--pg-title-hero); }
.pg-page-hero .section-title,
.pg-detail-hero h1 { font-size: var(--pg-title-page); }

.pg-home-hero-copy h1,
.pg-page-hero .section-title,
.pg-detail-hero h1,
.pg-service-card h3,
.pg-value-card h3,
.pg-proof-card h3,
.pg-step h3,
.pg-testimonial h3,
.pg-info-panel h3,
.pg-program-card h3,
.pg-price-card h3,
.pg-shop-card h3,
.pg-faq-help h3,
.pg-faq-group-head h2,
.pg-source-card h3,
.pg-section-gallery-card h3,
.pg-video-card-body h3,
.pg-footer h3,
.pg-legal-card h2 {
  font-weight: 700;
}

/* ----- Layout ----- */
.section-padding { padding: clamp(48px, 8vw, 96px) 0; }
.section-padding-sm { padding: clamp(32px, 5vw, 64px) 0; }

.pg-band { background: var(--pg-white); }
.pg-soft-band { background: var(--pg-soft); }
.pg-dark-band { color: var(--pg-white); background: var(--pg-dark); }

.pg-grid { display: grid; gap: 22px; }
.pg-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pg-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pg-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ----- Site Header ----- */
.pg-site-header {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 12px 32px rgba(16,24,32,0.06);
}

/* ----- Navigation ----- */
.pg-topbar {
  color: rgba(255,255,255,0.84);
  background: var(--pg-dark);
  font-size: 0.9rem;
  font-weight: 750;
}
.pg-topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pg-topbar a, .pg-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.84);
}
.pg-topbar a:hover { color: var(--pg-coral); }
.pg-topbar-phones { display: inline-flex; gap: 14px; }

.pg-navbar {
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(217,225,234,0.72);
  transition: background var(--pg-transition), box-shadow var(--pg-transition);
}
.pg-navbar.is-scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 12px 32px rgba(16,24,32,0.08);
}

.pg-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pg-ink);
  font-family: var(--pg-font-display);
  font-size: 1.35rem;
  font-weight: 800;
}
.pg-brand:hover { color: var(--pg-ink); }

.pg-brand-mark {
  width: 40px; height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--pg-radius);
  color: var(--pg-white);
  background: #0b0b0b;
  box-shadow: 0 10px 25px rgba(16,24,32,0.16);
  overflow: hidden;
}
.pg-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-navbar .nav-link {
  color: #253142;
  font-weight: 700;
  padding: 14px;
}
.pg-navbar .nav-link:hover,
.pg-navbar .nav-link.active,
.pg-navbar .show > .nav-link { color: var(--pg-blue); }

.pg-dropdown {
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  box-shadow: var(--pg-shadow);
  padding: 8px;
}
.pg-dropdown .dropdown-item {
  border-radius: 6px;
  font-weight: 650;
  padding: 10px 12px;
}
.pg-dropdown .dropdown-item:hover { background: #eef5ff; color: var(--pg-blue); }

.pg-toggler { border: 0; }
.pg-nav-actions { display: flex; align-items: center; gap: 12px; }

.pg-mobile-menu-contact {
  display: grid;
  gap: 8px;
  margin: 10px 0 14px;
  padding: 14px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: #f7f9fc;
}
.pg-mobile-menu-contact a,
.pg-mobile-menu-contact span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #344054;
  font-size: 0.92rem;
  font-weight: 750;
}
.pg-mobile-menu-contact i { color: var(--pg-blue); }

/* ----- Buttons ----- */
.btn {
  border-radius: var(--pg-radius);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
}

.btn-pg-primary {
  color: var(--pg-white);
  background: var(--pg-blue);
  border: 1px solid var(--pg-blue);
  box-shadow: 0 14px 28px rgba(29,122,252,0.24);
}
.btn-pg-primary:hover { color: var(--pg-white); background: #0c63d5; border-color: #0c63d5; }

.btn-pg-dark { color: var(--pg-white); background: var(--pg-dark); border: 1px solid var(--pg-dark); }
.btn-pg-dark:hover { color: var(--pg-white); background: #202b37; }

.btn-pg-light { color: var(--pg-white); background: var(--pg-coral); border: 1px solid var(--pg-coral); }
.btn-pg-light:hover { color: var(--pg-white); background: #e8652d; border-color: #e8652d; }

.btn-pg-outline {
  color: #000;
  background: transparent;
  border: 1px solid var(--pg-line);
}
.btn-pg-outline:hover { color: #000; background: var(--pg-soft); border-color: var(--pg-line); }
.btn-pg-outline-light { color: var(--pg-white); border-color: rgba(255,255,255,0.4); }
.btn-pg-outline-light:hover { color: var(--pg-dark); background: var(--pg-white); }

/* ----- Hero Sections ----- */
.pg-home-hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 150px 0 42px;
  color: var(--pg-ink);
  background: #f7f9fc;
}
.pg-home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,0.92fr) minmax(420px,0.78fr);
  gap: 54px;
  align-items: center;
}
.pg-home-hero-copy {
  max-width: 720px;
  padding-left: 22px;
  border-left: 4px solid var(--pg-coral);
}
.pg-home-hero-copy h1 { margin: 14px 0 0; }
.pg-home-hero-copy p {
  max-width: 610px;
  margin: 20px 0 0;
  color: #475467;
  font-size: 1.08rem;
}
.pg-home-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pg-home-hero-tags span {
  padding: 8px 12px;
  border: 1px solid #d9e1ea;
  border-radius: 999px;
  color: #253142;
  background: var(--pg-white);
  font-size: 0.84rem;
  font-weight: 850;
}
.pg-home-hero-media { position: relative; min-height: 440px; }
.pg-home-hero-media img {
  width: 100%;
  height: 560px;
  border-radius: var(--pg-radius);
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}
.pg-home-hero-card {
  position: absolute;
  left: -34px; bottom: 34px;
  width: min(340px, calc(100% - 24px));
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--pg-radius);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 48px rgba(0,0,0,0.2);
}
.pg-home-hero-card > span {
  color: var(--pg-blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.pg-home-hero-card ol {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.pg-home-hero-card li {
  display: grid;
  gap: 2px;
  padding-left: 14px;
  border-left: 3px solid var(--pg-coral);
}
.pg-home-hero-card li:not(:first-child) { margin-top: 12px; }
.pg-home-hero-card strong { color: var(--pg-ink); line-height: 1.2; }
.pg-home-hero-card small { color: var(--pg-muted); font-weight: 750; }
.pg-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.pg-home-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}
.pg-home-hero-stats div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-white);
}
.pg-home-hero-stats strong { display: block; color: var(--pg-coral); font-size: 1.55rem; line-height: 1; }
.pg-home-hero-stats span { display: block; margin-top: 8px; color: var(--pg-muted); font-size: 0.86rem; font-weight: 800; }

.pg-stats-section { padding: 48px 0; color: var(--pg-white); background: var(--pg-dark); }
.pg-stats-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.pg-stats-head h2 { max-width: 760px; margin: 8px 0 0; }
.pg-stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.pg-stat-tile {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--pg-radius);
  background: #101b28;
}
.pg-stat-tile span { color: rgba(255,255,255,0.42); font-size: 0.78rem; font-weight: 950; }
.pg-stat-tile strong { display: block; margin-top: 18px; color: var(--pg-coral); font-size: 2.35rem; line-height: 1; }
.pg-stat-tile p { margin: 14px 0 0; color: rgba(255,255,255,0.74); font-weight: 700; }

/* ----- Page Hero (inner pages) ----- */
.pg-page-hero {
  padding: 142px 0 80px;
  color: var(--pg-white);
  background: linear-gradient(115deg, var(--pg-dark), #162334 58%, #0c3535);
}
.pg-page-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.62fr);
  gap: 44px;
  align-items: center;
}
.pg-page-hero .section-kicker { color: #ffd166; }
.pg-page-hero .section-title, .pg-detail-hero h1 { max-width: 850px; color: var(--pg-white); }
.pg-page-hero .section-lead { color: rgba(255,255,255,0.75); }

.pg-page-hero-media {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--pg-radius);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}
.pg-page-hero-media img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }

.pg-detail-hero { padding: 130px 0 70px; color: var(--pg-white); background: var(--pg-dark); }
.pg-detail-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr minmax(340px, 0.95fr);
  gap: 48px;
  align-items: center;
}
.pg-detail-hero h1 { margin: 14px 0 0; }
.pg-detail-hero p { max-width: 720px; margin: 20px 0 0; color: rgba(255,255,255,0.78); font-size: 1.08rem; }

.pg-detail-media {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--pg-radius);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 26px 80px rgba(0,0,0,0.3);
}
.pg-detail-media img { width: 100%; height: 440px; object-fit: cover; }

/* ----- Cards ----- */
.pg-service-card, .pg-program-card, .pg-value-card, .pg-proof-card,
.pg-contact-panel, .pg-form-panel, .pg-info-panel, .pg-legal-card,
.pg-step, .pg-testimonial, .pg-stat-card {
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-white);
  box-shadow: 0 12px 34px rgba(16,24,32,0.06);
}
.pg-service-card, .pg-value-card, .pg-proof-card,
.pg-contact-panel, .pg-form-panel, .pg-info-panel, .pg-legal-card,
.pg-step, .pg-testimonial, .pg-stat-card { padding: 28px; }

.pg-service-card i, .pg-value-card i, .pg-proof-card i {
  width: 48px; height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--pg-radius);
  color: var(--pg-white);
  background: var(--pg-dark);
  font-size: 1.25rem;
}
.pg-proof-card:nth-child(2) i { background: var(--pg-blue); }
.pg-proof-card:nth-child(3) i { background: var(--pg-coral); }
.pg-proof-card:nth-child(4) i { background: var(--pg-violet); }

.pg-service-card h3, .pg-value-card h3, .pg-proof-card h3,
.pg-step h3, .pg-testimonial h3, .pg-info-panel h3 {
  margin: 18px 0 8px;
  font-size: var(--pg-title-card);
  font-weight: 700;
}
.pg-service-card p, .pg-program-card p, .pg-value-card p,
.pg-proof-card p, .pg-step p, .pg-testimonial p,
.pg-info-panel p, .pg-legal-card p { color: var(--pg-muted); margin-bottom: 0; }
.pg-proof-card { min-height: 100%; }

.pg-program-card { overflow: hidden; display: flex; flex-direction: column; min-height: 100%; }
.pg-program-card-media {
  position: relative;
  height: 220px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eaf0f6;
}
.pg-program-card-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.pg-program-badge {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 10px; border-radius: 6px;
  color: var(--pg-white); background: var(--pg-coral);
  font-size: 0.76rem; font-weight: 900; text-transform: uppercase;
}
.pg-program-card-body { padding: 24px; display: flex; flex: 1; flex-direction: column; }
.pg-program-card h3 { margin: 0; font-size: var(--pg-title-card); font-weight: 700; }
.pg-program-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.pg-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 9px; border: 1px solid var(--pg-line); border-radius: 6px;
  color: #354456; background: #f9fbfd; font-size: 0.86rem; font-weight: 750;
}
.pg-program-card .btn { margin-top: auto; }

.pg-step { position: relative; min-height: 100%; counter-increment: process; }
.pg-step::before {
  content: "0" counter(process);
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--pg-radius);
  color: var(--pg-white); background: var(--pg-coral);
  font-weight: 950;
}
.pg-process { counter-reset: process; }

.pg-feature-line {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--pg-line);
}
.pg-feature-line:last-child { border-bottom: 0; }
.pg-feature-line i { color: var(--pg-blue); font-size: 1.15rem; }

.pg-visual-panel {
  position: relative; min-height: 480px;
  border-radius: var(--pg-radius); overflow: hidden;
  background: var(--pg-dark); box-shadow: var(--pg-shadow);
}
.pg-visual-panel img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.pg-visual-caption {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  padding: 20px; border-radius: var(--pg-radius);
  color: var(--pg-white);
  background: rgba(12,19,29,0.82);
  backdrop-filter: blur(14px);
}
.pg-visual-caption strong { display: block; font-size: 1.4rem; }
.pg-visual-caption span { color: rgba(255,255,255,0.76); }

.pg-panel-image { overflow: hidden; margin: -28px -28px 24px; border-radius: var(--pg-radius) var(--pg-radius) 0 0; background: #eaf0f6; }
.pg-panel-image img { width: 100%; height: 220px; object-fit: cover; }

.pg-image-row { display: grid; grid-template-columns: 1.1fr 0.9fr 1fr; gap: 16px; }
.pg-image-row figure {
  position: relative; min-height: 260px; margin: 0;
  overflow: hidden; border-radius: var(--pg-radius);
  background: var(--pg-dark); box-shadow: 0 12px 34px rgba(16,24,32,0.08);
}
.pg-image-row img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.pg-image-row figcaption {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  padding: 12px 14px; border-radius: var(--pg-radius);
  color: var(--pg-white); background: rgba(12,19,29,0.78);
  backdrop-filter: blur(12px); font-weight: 850;
}

.pg-brand-identity {
  color: var(--pg-white);
  background: #090b0f;
}
.pg-brand-identity .section-title { color: var(--pg-white); }
.pg-brand-identity .section-lead { color: rgba(255,255,255,0.72); }
.pg-brand-identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.pg-whatsapp-strip,
.pg-contact-whatsapp {
  display: block;
  margin-top: 24px;
  overflow: hidden;
  border-radius: var(--pg-radius);
  background: #050607;
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
}
.pg-whatsapp-strip img,
.pg-contact-whatsapp img {
  width: 100%;
  height: auto;
}
.pg-brand-identity .pg-whatsapp-strip {
  width: min(360px, 100%);
}
.pg-identity-poster {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--pg-radius);
  background: #050607;
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
}
.pg-identity-poster img {
  width: 100%;
  aspect-ratio: 904 / 1280;
  object-fit: cover;
}
.pg-contact-whatsapp { margin-top: 18px; }

.pg-section-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.pg-section-gallery-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-white);
  box-shadow: 0 12px 34px rgba(16,24,32,0.06);
}
.pg-section-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eaf0f6;
}
.pg-section-gallery-card div { padding: 18px; }
.pg-section-gallery-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 900;
}
.pg-section-gallery-card p {
  margin: 0;
  color: var(--pg-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.pg-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.pg-video-card {
  overflow: hidden;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-white);
  box-shadow: 0 12px 34px rgba(16,24,32,0.06);
}
.pg-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: var(--pg-dark);
}
.pg-video-card-body { padding: 22px; }
.pg-video-card-body h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 900;
}
.pg-video-card-body p {
  margin: 0;
  color: var(--pg-muted);
}

/* ----- Tabs & Tables ----- */
.pg-tabs .nav-link {
  border: 1px solid var(--pg-line); border-radius: var(--pg-radius);
  color: var(--pg-ink); font-weight: 850; background: var(--pg-white);
}
.pg-tabs .nav-link.active { color: var(--pg-white); background: var(--pg-dark); border-color: var(--pg-dark); }

.pg-table { overflow: hidden; border: 1px solid var(--pg-line); border-radius: var(--pg-radius); background: var(--pg-white); }
.pg-table table { margin-bottom: 0; }
.pg-table th { color: var(--pg-white); background: var(--pg-dark); }

/* ----- Price Cards ----- */
.pg-price-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.pg-price-summary div,
.pg-price-card {
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-white);
  box-shadow: 0 12px 34px rgba(16,24,32,0.06);
}
.pg-price-summary div { padding: 20px; }
.pg-price-summary span {
  display: block;
  color: var(--pg-muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}
.pg-price-summary strong {
  display: block;
  margin-top: 6px;
  color: var(--pg-coral);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1;
}
.pg-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.pg-price-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.pg-price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.pg-price-card-head span,
.pg-price-card-head i {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--pg-radius);
  color: var(--pg-white);
  background: var(--pg-dark);
  font-weight: 950;
}
.pg-price-card-head i { background: var(--pg-coral); }
.pg-price-card h3 {
  margin: 18px 0 12px;
  font-size: 1.08rem;
  font-weight: 900;
}
.pg-price-card > strong {
  display: block;
  margin-bottom: 22px;
  color: var(--pg-blue);
  font-size: 2rem;
  line-height: 1;
}
.pg-price-card .btn { margin-top: auto; }

/* ----- Shop Cards ----- */
.pg-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.pg-shop-card {
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-white);
  box-shadow: 0 12px 34px rgba(16,24,32,0.06);
  transition: transform var(--pg-transition), box-shadow var(--pg-transition), border-color var(--pg-transition);
}
.pg-shop-card:hover {
  border-color: rgba(29,122,252,0.38);
  box-shadow: 0 18px 48px rgba(16,24,32,0.12);
  transform: translateY(-3px);
}
.pg-shop-card-media {
  position: relative;
  display: block;
  height: 160px;
  overflow: hidden;
  background: #eaf0f6;
}
.pg-shop-card-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform var(--pg-transition);
}
.pg-shop-card:hover .pg-shop-card-media img { transform: scale(1.04); }
.pg-shop-card-media span,
.pg-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--pg-white);
  background: var(--pg-coral);
  font-weight: 950;
}
.pg-shop-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}
.pg-shop-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 950;
}
.pg-shop-card h3 a:hover { color: var(--pg-blue); }
.pg-shop-card p {
  margin: 9px 0 0;
  color: var(--pg-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.pg-shop-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.pg-shop-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid var(--pg-line);
  border-radius: 6px;
  color: #354456;
  background: #f9fbfd;
  font-size: 0.78rem;
  font-weight: 800;
}
.pg-shop-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.pg-shop-card-bottom strong {
  color: var(--pg-blue);
  font-size: 1.32rem;
  line-height: 1;
  white-space: nowrap;
}
.pg-shop-card-bottom .btn {
  min-height: 40px;
  padding: 8px 10px;
  font-size: 0.86rem;
}

/* ----- Product Detail ----- */
.pg-product-hero {
  padding: 40px 54px;
  background: #f4f7fb;
}
.pg-product-hero .pg-breadcrumb {
  margin-bottom: 18px;
  color: #667085;
}
.pg-product-hero .pg-breadcrumb a {
  color: var(--pg-blue);
}
.pg-product-page {
  padding: 18px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-white);
  box-shadow: 0 18px 55px rgba(16,24,32,0.1);
}
.pg-product-gallery,
.pg-product-buybox {
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-white);
}
.pg-product-gallery {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 45vw, 560px);
  box-shadow: none;
}
.pg-product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pg-product-buybox {
  display: flex;
  flex-direction: column;
  min-height: clamp(360px, 45vw, 560px);
  padding: clamp(22px, 4vw, 38px);
  box-shadow: none;
}
.pg-product-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--pg-blue);
  font-size: 0.9rem;
  font-weight: 850;
}
.pg-product-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--pg-coral);
  font-size: 0.9rem;
}
.pg-product-rating span {
  display: inline-flex;
  gap: 2px;
}
.pg-product-rating strong {
  color: #344054;
  font-weight: 850;
}
.pg-product-buybox h1 {
  margin: 12px 0 0;
  color: var(--pg-ink);
  font-size: var(--pg-title-page);
}
.pg-product-excerpt {
  margin: 14px 0 0;
  color: var(--pg-muted);
  font-size: 1.05rem;
}
.pg-product-price {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: linear-gradient(180deg, #f9fbfd, #eef5ff);
}
.pg-product-price span {
  display: block;
  color: var(--pg-muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.pg-product-price strong {
  display: block;
  margin-top: 6px;
  color: var(--pg-blue);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}
.pg-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.pg-product-actions .btn-pg-primary {
  flex: 1 1 220px;
}
.pg-product-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: #475467;
  font-weight: 750;
}
.pg-product-note i {
  color: var(--pg-coral);
  font-size: 1.1rem;
}
.pg-product-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.pg-product-assurance div {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: #f9fbfd;
}
.pg-product-assurance i {
  color: var(--pg-blue);
  font-size: 1.1rem;
}
.pg-product-assurance span {
  color: #344054;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.25;
}
.pg-product-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* ----- Breadcrumbs ----- */
.pg-breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
  color: rgba(255,255,255,0.78); font-weight: 750;
}
.pg-breadcrumb a { color: var(--pg-white); }

/* ----- Specs ----- */
.pg-specs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 30px; }
.pg-spec {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--pg-radius);
  background: rgba(255,255,255,0.08);
}
.pg-spec span { display: block; color: rgba(255,255,255,0.62); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; }
.pg-spec strong { display: block; margin-top: 6px; color: var(--pg-white); font-size: 1rem; }
.pg-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.pg-list li { display: flex; gap: 10px; align-items: flex-start; color: #344054; }
.pg-list i { color: var(--pg-blue); }
.pg-checklist-grid, .pg-doc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

/* ----- FAQ ----- */
.pg-faq-toolbar { display: grid; grid-template-columns: 1fr minmax(280px,460px); gap: 24px; align-items: end; margin-bottom: 28px; }
.pg-faq-toolbar h2 { max-width: 760px; margin: 8px 0 0; }

.pg-faq-search { position: relative; display: block; }
.pg-faq-search i { position: absolute; left: 16px; top: 50%; color: var(--pg-blue); transform: translateY(-50%); }
.pg-faq-search input {
  width: 100%; min-height: 56px; padding: 0 18px 0 46px;
  border: 1px solid var(--pg-line); border-radius: var(--pg-radius);
  background: var(--pg-white); box-shadow: 0 12px 34px rgba(16,24,32,0.06);
  color: var(--pg-ink); font-weight: 750;
}
.pg-faq-search input:focus {
  outline: 0; border-color: var(--pg-blue);
  box-shadow: 0 0 0 0.2rem rgba(29,122,252,0.14);
}

.pg-faq-topic-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.pg-faq-topic-list button {
  display: inline-flex; align-items: center; gap: 8px; min-height: 42px;
  padding: 8px 13px; border: 1px solid var(--pg-line); border-radius: var(--pg-radius);
  color: #354456; background: var(--pg-white); font-weight: 850;
}
.pg-faq-topic-list button:hover,
.pg-faq-topic-list button.is-active { color: var(--pg-white); background: var(--pg-dark); border-color: var(--pg-dark); }

.pg-faq-layout { display: grid; grid-template-columns: minmax(250px, 0.32fr) 1fr; gap: 28px; align-items: start; }
.pg-faq-aside { position: sticky; top: 98px; display: grid; gap: 14px; }
.pg-faq-help, .pg-faq-mini, .pg-source-card {
  border: 1px solid var(--pg-line); border-radius: var(--pg-radius);
  background: var(--pg-white); box-shadow: 0 12px 34px rgba(16,24,32,0.06);
}
.pg-faq-help { padding: 24px; }
.pg-faq-help h3 { margin: 10px 0 8px; font-weight: 900; }
.pg-faq-help p { color: var(--pg-muted); }
.pg-faq-mini { display: grid; grid-template-columns: auto 1fr; gap: 8px 12px; padding: 18px; }
.pg-faq-mini strong { color: var(--pg-blue); font-size: 1.6rem; line-height: 1; }
.pg-faq-mini span { color: var(--pg-muted); font-weight: 800; }

.pg-faq-groups { display: grid; gap: 24px; }
.pg-faq-group { scroll-margin-top: 110px; }
.pg-faq-group-head {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius) var(--pg-radius) 0 0;
  color: var(--pg-white);
  background: linear-gradient(115deg, var(--pg-dark), #152538);
}
.pg-faq-group-head > i {
  width: 48px; height: 48px; flex: 0 0 48px;
  display: inline-grid; place-items: center;
  border-radius: var(--pg-radius);
  color: var(--pg-white); background: var(--pg-coral);
}
.pg-faq-group-head h2 { margin: 0; font-weight: 900; }
.pg-faq-group-head p { margin: 6px 0 0; color: rgba(255,255,255,0.72); }

.pg-faq-item, .pg-faq-accordion .accordion-item { border-top: 0; border-radius: 0; }
.pg-faq-item:last-child, .pg-faq-accordion .accordion-item:last-child { border-radius: 0 0 var(--pg-radius) var(--pg-radius); }
.pg-faq-accordion .accordion-button { padding: 18px 22px; font-size: 1rem; }
.pg-faq-accordion .accordion-body { padding: 0 22px 22px; color: #344054; }
.pg-faq-accordion .accordion-body p { margin: 0; }

.pg-faq-tips { margin-top: 16px; padding: 16px; border-radius: var(--pg-radius); background: #f7faff; }
.pg-faq-tips strong { display: block; margin-bottom: 8px; color: var(--pg-ink); }
.pg-faq-tips ul { display: grid; gap: 6px; margin: 0; padding-left: 18px; color: var(--pg-muted); }
.pg-faq-empty {
  padding: 22px; border: 1px dashed var(--pg-line);
  border-radius: var(--pg-radius); color: var(--pg-muted);
  background: var(--pg-white); font-weight: 800;
}

.pg-source-card {
  position: relative; display: block; min-height: 100%;
  padding: 24px 54px 24px 24px;
}
.pg-source-card span { color: var(--pg-blue); font-size: 0.78rem; font-weight: 950; text-transform: uppercase; }
.pg-source-card h3 { margin: 10px 0 8px; color: var(--pg-ink); font-weight: 900; }
.pg-source-card p { margin: 0; color: var(--pg-muted); }
.pg-source-card > i { position: absolute; right: 20px; top: 22px; color: var(--pg-coral); font-size: 1.2rem; }
.pg-source-card:hover { border-color: rgba(29,122,252,0.45); transform: translateY(-2px); }

/* ----- Checklist / Doc Items ----- */
.pg-checklist-item, .pg-doc-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius); background: var(--pg-white);
  box-shadow: 0 10px 24px rgba(16,24,32,0.05);
}
.pg-checklist-item i, .pg-doc-item i {
  width: 42px; height: 42px; flex: 0 0 42px;
  display: inline-grid; place-items: center;
  border-radius: var(--pg-radius); color: var(--pg-white); background: var(--pg-blue);
}
.pg-checklist-item span, .pg-doc-item span { color: #3d4a5c; font-weight: 700; }
.pg-doc-item { flex-direction: column; gap: 10px; }
.pg-doc-item strong { display: block; font-size: 1.05rem; font-weight: 900; }
.pg-doc-item span { font-weight: 600; color: var(--pg-muted); }

/* ----- Application Progress ----- */
/* ----- Forms ----- */
.form-label { color: #273447; font-weight: 800; }
.form-control, .form-select {
  min-height: 48px; border-radius: var(--pg-radius); border-color: var(--pg-line); font-weight: 650;
}
.form-control:focus, .form-select:focus {
  border-color: var(--pg-blue); box-shadow: 0 0 0 0.2rem rgba(29,122,252,0.14);
}

.pg-alert { border-radius: var(--pg-radius); border: 0; font-weight: 750; }

.pg-consent {
  padding: 16px 16px 16px 44px;
  border: 1px solid var(--pg-line); border-radius: var(--pg-radius);
  background: #f9fbfd; color: #475467; font-weight: 650;
}
.pg-consent .form-check-input { margin-left: -28px; }
.pg-consent a { color: var(--pg-blue); font-weight: 850; }

.pg-honeypot {
  position: absolute; left: -10000px; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}

.accordion {
  --bs-accordion-border-radius: var(--pg-radius);
  --bs-accordion-inner-border-radius: var(--pg-radius);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(29,122,252,0.14);
}
.accordion-item { border-color: var(--pg-line); }
.accordion-button { font-weight: 850; }
.accordion-button:not(.collapsed) { color: var(--pg-ink); background: #eef5ff; }

/* ----- Testimonials ----- */
.pg-testimonial { min-height: 100%; }
.pg-testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

.pg-testimonial-card {
  min-height: 100%; display: flex; flex-direction: column;
  padding: 24px; border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius); background: var(--pg-white);
  box-shadow: 0 12px 34px rgba(16,24,32,0.06);
}
.pg-testimonial-stars { display: flex; gap: 4px; color: var(--pg-coral); }
.pg-testimonial-card p { margin: 18px 0 22px; color: #344054; font-size: 1rem; }
.pg-testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.pg-testimonial-author > span {
  width: 44px; height: 44px; flex: 0 0 44px;
  display: inline-grid; place-items: center;
  border-radius: var(--pg-radius); color: var(--pg-white);
  background: var(--pg-blue); font-weight: 900;
}
.pg-testimonial-author strong, .pg-testimonial-author small { display: block; }
.pg-testimonial-author strong { font-weight: 950; }
.pg-testimonial-author small { color: var(--pg-muted); font-weight: 750; }

.pg-testimonial-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.pg-avatar {
  width: 46px; height: 46px; display: inline-grid; place-items: center;
  border-radius: var(--pg-radius); color: var(--pg-white);
  background: var(--pg-coral); font-weight: 900;
}

/* ----- Pagination ----- */
.pg-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 34px; }
.pg-pagination a {
  width: 42px; height: 42px; display: inline-grid; place-items: center;
  border: 1px solid var(--pg-line); border-radius: var(--pg-radius);
  color: var(--pg-ink); background: var(--pg-white); font-weight: 900;
}
.pg-pagination a:hover, .pg-pagination a.is-active { color: var(--pg-white); border-color: var(--pg-blue); background: var(--pg-blue); }

/* ----- Stat Cards ----- */
.pg-stat-card strong { display: block; color: var(--pg-blue); font-size: 2.1rem; line-height: 1; }
.pg-stat-card span { display: block; margin-top: 8px; color: var(--pg-muted); font-weight: 750; }

/* ----- Footer ----- */
.pg-footer { color: rgba(255,255,255,0.76); background: #0a111a; }
.pg-footer-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 42px; transform: translateY(-48px);
  border: 1px solid rgba(255,255,255,0.14); border-radius: var(--pg-radius);
  color: var(--pg-white);
  background: linear-gradient(115deg, #102033, #075b5b);
  box-shadow: 0 24px 70px rgba(0,0,0,0.26);
}
.pg-footer-cta h2 { max-width: 720px; margin: 8px 0 0; }
.pg-footer-newsletter {
  display: grid; grid-template-columns: 1fr minmax(320px,520px); gap: 24px; align-items: center;
  padding: 28px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--pg-radius); background: rgba(255,255,255,0.06);
}
.pg-footer-newsletter h3 { margin: 8px 0 6px; color: var(--pg-white); font-weight: 850; line-height: 1.15; }
.pg-footer-newsletter p { margin: 0; color: rgba(255,255,255,0.68); }

.pg-newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.pg-newsletter-form input {
  min-height: 46px; width: 100%; padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--pg-radius);
  color: var(--pg-white); background: rgba(255,255,255,0.08); font-weight: 750;
}
.pg-newsletter-form input::placeholder { color: rgba(255,255,255,0.56); }
.pg-newsletter-form input:focus { outline: 0; border-color: var(--pg-blue); box-shadow: 0 0 0 0.2rem rgba(29,122,252,0.16); }

.pg-brand-footer, .pg-footer .pg-brand { color: var(--pg-white) !important; }
.pg-brand-footer:hover, .pg-footer .pg-brand:hover { color: var(--pg-white) !important; }
.pg-footer .pg-brand-footer span { display: inline-flex; margin: 0; color: var(--pg-white); }
.pg-footer .pg-brand-footer .pg-brand-mark { display: inline-grid; color: var(--pg-white); }
.pg-footer h3 { color: var(--pg-white); font-weight: 900; margin-bottom: 16px; }
.pg-footer h3 ~ a { display: block; }
.pg-footer a, .pg-footer span { margin: 9px 0; color: rgba(255,255,255,0.74); }
.pg-footer a:hover { color: var(--pg-coral); }
.pg-footer-text { max-width: 370px; }
.pg-footer-contact { display: grid; gap: 8px; margin-top: 18px; }
.pg-footer-contact a, .pg-footer-contact span { display: flex; align-items: flex-start; gap: 10px; margin: 0; }
.pg-footer-contact i { color: var(--pg-coral); }

.pg-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.pg-footer-bottom span { margin: 0; }
.pg-footer-contact-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 0 28px;
}
.pg-footer-contact-strip a {
  width: min(560px, 100%);

}
.pg-footer-contact-strip img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.pg-footer-legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 16px; }
.pg-footer-legal a { display: inline-flex; margin: 0; color: rgba(255,255,255,0.68); font-size: 0.92rem; font-weight: 750; }
.pg-footer-cookie-link {
  display: inline-flex; margin: 9px 0; padding: 0; border: 0;
  color: rgba(255,255,255,0.68); background: transparent; font: inherit; font-size: 0.92rem; font-weight: 750;
}
.pg-footer-cookie-link:hover { color: var(--pg-coral); }

/* ----- Legal Pages ----- */
.pg-legal-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.pg-legal-toc {
  position: sticky; top: 96px; display: grid; gap: 8px;
  padding: 22px; border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius); background: var(--pg-white);
  box-shadow: 0 12px 34px rgba(16,24,32,0.06);
}
.pg-legal-toc > span { color: var(--pg-ink); font-weight: 950; }
.pg-legal-toc a { padding: 9px 0; border-bottom: 1px solid var(--pg-line); color: #4a5568; font-weight: 750; }
.pg-legal-toc a:hover { color: var(--pg-blue); }
.pg-legal-date { display: flex; align-items: center; gap: 10px; margin-top: 12px; padding: 14px; border-radius: var(--pg-radius); color: var(--pg-white); background: var(--pg-coral); }
.pg-legal-date i { font-size: 1.2rem; }
.pg-legal-content { display: grid; gap: 18px; }
.pg-legal-card { scroll-margin-top: 110px; }
.pg-legal-card h2 { margin-top: 0; font-weight: 900; }
.pg-legal-card p + p { margin-top: 12px; }
.pg-legal-table { display: grid; gap: 0; margin-top: 18px; overflow: hidden; border: 1px solid var(--pg-line); border-radius: var(--pg-radius); }
.pg-legal-table div { display: grid; grid-template-columns: minmax(180px, 0.42fr) 1fr; gap: 16px; padding: 14px 16px; border-bottom: 1px solid var(--pg-line); background: #fbfcfe; }
.pg-legal-table div:last-child { border-bottom: 0; }
.pg-legal-table span { color: var(--pg-muted); font-weight: 800; }
.pg-legal-table strong { color: var(--pg-ink); font-weight: 850; }
.pg-legal-alert { display: flex; align-items: flex-start; gap: 14px; padding: 18px; border: 1px solid rgba(217,179,0,0.32); border-radius: var(--pg-radius); background: #fff9df; color: #4f3f00; }
.pg-legal-alert i { font-size: 1.25rem; }
.pg-legal-alert strong, .pg-legal-alert span { display: block; }

.pg-compliance-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.pg-compliance-strip h2 { max-width: 760px; margin: 8px 0 0; }

/* ----- Cookie Banner ----- */
.pg-cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1080;
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px;
  align-items: center; width: 100%;
  min-height: 86px; padding: 14px clamp(16px, 4vw, 44px);
  border: 0; border-top: 1px solid rgba(217,225,234,0.92);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 22px 70px rgba(16,24,32,0.2);
  opacity: 0; pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.pg-cookie-banner.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.pg-cookie-preferences { grid-column: 2 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.pg-cookie-preferences[hidden] { display: none !important; }
.pg-cookie-icon { width: 42px; height: 42px; display: inline-grid; place-items: center; border-radius: var(--pg-radius); color: var(--pg-white); background: var(--pg-coral); font-size: 1.18rem; }
.pg-cookie-copy strong { display: block; color: var(--pg-ink); font-weight: 950; }
.pg-cookie-copy p { margin: 3px 0 0; color: var(--pg-muted); font-size: 0.9rem; line-height: 1.35; }
.pg-cookie-copy a { display: inline-flex; margin-top: 4px; color: var(--pg-blue); font-weight: 850; }
.pg-cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.pg-cookie-option { display: flex; gap: 10px; align-items: flex-start; padding: 10px; border: 1px solid var(--pg-line); border-radius: var(--pg-radius); background: #f9fbfd; }
.pg-cookie-option input { margin-top: 4px; accent-color: var(--pg-blue); }
.pg-cookie-option strong, .pg-cookie-option small { display: block; }
.pg-cookie-option strong { color: var(--pg-ink); font-weight: 900; }
.pg-cookie-option small { color: var(--pg-muted); font-size: 0.84rem; font-weight: 650; }
.pg-cookie-option.is-locked { opacity: 0.82; }

/* ----- Floating Widget ----- */
.pg-floating-widget { position: fixed; right: 24px; bottom: 24px; z-index: 1090; }
.pg-floating-widget::before, .pg-floating-widget::after {
  content: ""; position: absolute; right: 0; bottom: 0;
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(29,122,252,0.24);
  pointer-events: none;
  animation: pg-floating-pulse 2.4s ease-out infinite;
}
.pg-floating-widget::after { animation-delay: 0.8s; }
.has-cookie-banner .pg-floating-widget { bottom: var(--pg-cookie-offset, 112px); }

.pg-floating-toggle {
  width: 62px; height: 62px; position: relative; z-index: 1;
  display: inline-grid; place-items: center;
  border: 0; border-radius: 50%;
  color: var(--pg-white); background: var(--pg-blue);
  box-shadow: 0 18px 42px rgba(29,122,252,0.34);
  font-size: 1.45rem;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  animation: pg-floating-bob 3.2s ease-in-out infinite;
}
.pg-floating-toggle:hover { background: #0c63d5; box-shadow: 0 20px 46px rgba(29,122,252,0.42); transform: translateY(-2px) scale(1.04); }
.pg-floating-widget.is-open::before, .pg-floating-widget.is-open::after, .pg-floating-widget.is-open .pg-floating-toggle { animation-play-state: paused; }
.pg-floating-widget.is-open .pg-floating-toggle { background: var(--pg-coral); transform: rotate(8deg) scale(1.02); }

.pg-floating-panel {
  position: absolute; right: 0; bottom: 76px;
  width: min(320px, calc(100vw - 32px));
  display: grid; gap: 10px; padding: 10px;
  border: 1px solid var(--pg-line); border-radius: var(--pg-radius);
  background: var(--pg-white); box-shadow: 0 22px 70px rgba(16,24,32,0.18);
  opacity: 0; pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.pg-floating-widget.is-open .pg-floating-panel { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }

@keyframes pg-floating-pulse {
  0% { opacity: 0.7; transform: scale(1); }
  70% { opacity: 0; transform: scale(1.7); }
  100% { opacity: 0; transform: scale(1.7); }
}
@keyframes pg-floating-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.pg-floating-panel a { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: var(--pg-radius); color: var(--pg-ink); background: #f9fbfd; }
.pg-floating-panel a:hover { background: #eef5ff; color: var(--pg-blue); }
.pg-floating-panel i { width: 42px; height: 42px; flex: 0 0 42px; display: inline-grid; place-items: center; border-radius: var(--pg-radius); color: var(--pg-white); background: var(--pg-dark); font-size: 1.15rem; }
.pg-floating-panel a:last-child i { background: var(--pg-blue); }
.pg-floating-panel strong, .pg-floating-panel small { display: block; }
.pg-floating-panel strong { font-weight: 950; }
.pg-floating-panel small { margin-top: 2px; color: var(--pg-muted); font-weight: 700; }

.pg-delivery-widget { position: fixed; left: 24px; bottom: 24px; z-index: 1090; }
.pg-delivery-widget::before, .pg-delivery-widget::after {
  content: ""; position: absolute; inset: 0; width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255, 122, 61, 0.24); animation: pg-floating-pulse 2.4s ease-out infinite;
}
.pg-delivery-widget::after { animation-delay: 0.8s; }
.has-cookie-banner .pg-delivery-widget { bottom: var(--pg-cookie-offset, 112px); }
.pg-delivery-toggle {
  position: relative; z-index: 2; width: 62px; height: 62px; border: 0; border-radius: 50%;
  display: grid; place-items: center; color: var(--pg-white); background: var(--pg-coral);
  box-shadow: 0 18px 40px rgba(255, 122, 61, 0.34); cursor: pointer; font-size: 1.55rem;
  animation: pg-floating-bob 3.2s ease-in-out infinite;
}
.pg-delivery-toggle:hover { background: var(--pg-dark); transform: translateY(-2px) scale(1.04); }
.pg-delivery-panel {
  position: absolute; left: 0; bottom: 78px; width: min(310px, calc(100vw - 48px)); padding: 16px;
  border: 1px solid rgba(255, 122, 61, 0.28); border-radius: var(--pg-radius-lg); background: var(--pg-white);
  box-shadow: var(--pg-shadow); opacity: 0; pointer-events: none; transform: translateY(12px) scale(0.96);
  transform-origin: bottom left; transition: opacity 0.18s ease, transform 0.18s ease;
}
.pg-delivery-widget.is-open::before, .pg-delivery-widget.is-open::after, .pg-delivery-widget.is-open .pg-delivery-toggle { animation-play-state: paused; }
.pg-delivery-widget.is-open .pg-delivery-panel { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.pg-delivery-kicker { display: inline-flex; margin-bottom: 8px; color: var(--pg-blue); font-size: 0.68rem; font-weight: 950; text-transform: uppercase; }
.pg-delivery-panel h2 { margin: 0 0 10px; font-size: 0.95rem; font-weight: 400; color: var(--pg-ink); }
.pg-delivery-panel p { margin: 0 0 10px; color: var(--pg-muted); font-size: 0.82rem; font-weight: 400; line-height: 1.45; }
.pg-delivery-panel strong { font-weight: 400; }
.pg-delivery-panel p:last-child { margin-bottom: 0; }



/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1199px) {
  .pg-topbar-inner { align-items: flex-start; flex-direction: column; padding-top: 9px; padding-bottom: 9px; }
  .pg-nav-actions { align-items: flex-start; flex-direction: column; padding: 16px 0 8px; }
  .pg-grid-4, .pg-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pg-section-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pg-price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pg-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .pg-home-hero-grid { grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr); gap: 34px; }
  .pg-home-hero-copy h1 { font-size: clamp(1.95rem, 3.4vw, 2.75rem); }
  .pg-home-hero-media img { height: 500px; }
}

@media (max-width: 991px) {
  .section-padding { padding: 76px 0; }

  .pg-home-hero { padding: 150px 0 46px; }
  .pg-home-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .pg-home-hero-copy { max-width: 680px; }
  .pg-home-hero-copy h1 { font-size: clamp(1.85rem, 4.4vw, 2.35rem); }
  .pg-home-hero-media { min-height: auto; }
  .pg-home-hero-media img { height: 420px; }
  .pg-home-hero-card { left: 24px; bottom: 24px; }
  .pg-home-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .pg-grid-3, .pg-grid-4, .pg-testimonial-grid,
  .pg-page-hero-grid, .pg-image-row, .pg-detail-hero-grid,
  .pg-brand-identity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pg-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pg-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pg-detail-hero-grid { gap: 30px; }
  .pg-detail-hero h1 { font-size: clamp(1.55rem, 3.8vw, 2.05rem); }

  .pg-footer-cta { align-items: flex-start; flex-direction: column; transform: translateY(-34px); }
  .pg-legal-layout { grid-template-columns: 1fr; }
  .pg-legal-toc { position: static; }
  .pg-faq-toolbar, .pg-faq-layout { grid-template-columns: 1fr; }
  .pg-faq-aside { position: static; }
  .pg-compliance-strip { align-items: flex-start; flex-direction: column; }

  .pg-page-hero { padding: 142px 0 60px; }
  .pg-page-hero-grid { gap: 28px; }
}

@media (max-width: 767px) {
  body { font-size: 15px; }
  .pg-topbar { display: none; }

  .pg-grid-2, .pg-grid-3, .pg-grid-4,
  .pg-page-hero-grid, .pg-image-row, .pg-checklist-grid, .pg-doc-grid,
  .pg-detail-hero-grid, .pg-specs,
  .pg-price-grid, .pg-price-summary, .pg-product-grid,
  .pg-product-feature-grid, .pg-product-assurance,
  .pg-section-gallery, .pg-video-grid,
  .pg-brand-identity-grid { grid-template-columns: 1fr; }

  .pg-home-hero { padding: 150px 0 36px; }
  .pg-home-hero-copy { padding-left: 14px; border-left-width: 3px; }
  .pg-home-hero-copy h1 { font-size: 1.9rem; }
  .pg-home-hero-copy p { font-size: 0.98rem; }
  .pg-home-hero-media img { height: 340px; }
  .pg-home-hero-card { position: relative; left: auto; bottom: auto; width: 100%; margin-top: 12px; }
  .pg-home-hero-stats { grid-template-columns: 1fr; margin-top: 22px; }

  .pg-stats-head { align-items: flex-start; flex-direction: column; }
  .pg-stats-grid, .pg-testimonial-grid { grid-template-columns: 1fr; }

  .pg-page-hero, .pg-detail-hero { padding-top: 150px; }
  .pg-detail-media img, .pg-page-hero-media,
  .pg-page-hero-media img, .pg-visual-panel,
  .pg-visual-panel img { min-height: 300px; height: 300px; }
  .pg-product-hero { padding-top: 178px !important; }
  .pg-product-page { padding: 12px; }
  .pg-product-gallery, .pg-product-gallery img { min-height: 320px; height: 320px; }
  .pg-product-buybox { min-height: auto; padding: 22px; }
  .pg-shop-card-bottom { align-items: stretch; flex-direction: column; }
  .pg-shop-card-bottom .btn { width: 100%; }

  .pg-footer-cta { padding: 28px; }
  .pg-footer-cta h2 { font-size: 1.35rem; }
  .pg-footer .row > [class*="col-"] { flex: 0 0 100%; max-width: 100%; }
  .pg-footer-newsletter, .pg-newsletter-form { grid-template-columns: 1fr; }
  .pg-footer-bottom { align-items: flex-start; flex-direction: column; }
  .pg-footer-legal { justify-content: flex-start; }

  .pg-legal-table div { grid-template-columns: 1fr; gap: 4px; }
  .pg-compliance-strip h2, .pg-faq-toolbar h2 { font-size: 1.35rem; }
  .pg-faq-topic-list { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .pg-faq-topic-list button { flex: 0 0 auto; }
  .pg-faq-group-head { padding: 18px; }
  .pg-faq-group-head > i { width: 42px; height: 42px; flex-basis: 42px; }

  .pg-cookie-banner {
    left: 0; right: 0; bottom: 0;
    grid-template-columns: 1fr; max-height: 58vh; overflow-y: auto;
    padding: 12px 14px;
  }
  .pg-cookie-preferences { grid-column: auto; grid-template-columns: 1fr; }
  .pg-cookie-icon { display: none; }
  .pg-cookie-actions { justify-content: stretch; }
  .pg-cookie-actions .btn { flex: 1 1 130px; }

  .pg-floating-widget { right: 14px; bottom: 14px; }
  .pg-floating-toggle, .pg-floating-widget::before, .pg-floating-widget::after { width: 56px; height: 56px; }
  .pg-delivery-widget { left: 14px; bottom: 14px; }
  .pg-delivery-toggle, .pg-delivery-widget::before, .pg-delivery-widget::after { width: 56px; height: 56px; }
  .pg-delivery-panel { width: min(290px, calc(100vw - 28px)); }

  .pg-hero-content { max-width: 100%; padding-left: 14px; border-left-width: 3px; }
  .pg-hero-panel { left: 14px; right: 14px; bottom: 46px; width: auto; }
  .pg-hero-panel div { min-height: 72px; padding: 10px 8px; }
  .pg-hero-panel strong { font-size: 1.18rem; }
  .pg-hero-panel span { font-size: 0.68rem; }
  .pg-hero-dots { bottom: 18px; }
}

/* ----- Utility Overrides ----- */
.pg-candidate-section .section-title,
.pg-candidate-section .pg-step h3 { color: var(--pg-ink); }
