/* ============ DESIGN TOKENS — PGP brand, Shopee-style ============ */
:root{
  --pgp-orange: #FF5A1F;        /* primary */
  --pgp-orange-dark: #C2410C;   /* deep orange */
  --pgp-orange-bright: #FF7A33; /* bright accent */
  --pgp-orange-soft: #FFB088;
  --pgp-orange-tint: #FFD2B8;
  --pgp-cream: #FFF4EC;
  --pgp-cream-2: #FFF9F4;

  --pgp-ink: #2B2B2B;       /* main text, was navy */
  --pgp-ink-2: #222222;     /* headings (slightly darker) */
  --pgp-grey: #555555;
  --pgp-mute: #5F6368;
  --pgp-line: #EFE6DE;      /* warm soft divider */
  --pgp-line-2: #F2F2F2;
  --pgp-bg: #ffffff;
  --pgp-bg-soft: #FAFAFA;

  --pgp-yellow: #FFB800;
  --pgp-green: #16a34a;

  --pgp-shadow-sm: 0 1px 2px rgba(43,43,43,.06);
  --pgp-shadow: 0 2px 12px rgba(255,90,31,.10), 0 1px 3px rgba(43,43,43,.06);
  --pgp-shadow-md: 0 6px 24px -6px rgba(43,43,43,.18);
  --pgp-shadow-orange: 0 6px 20px -4px rgba(255,90,31,.35);

  --pgp-radius: 12px;
  --pgp-radius-sm: 8px;
  --pgp-radius-lg: 20px;

  --font-display: 'Futura PT', 'Futura', 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: var(--font-body);
  color: var(--pgp-ink);
  background: var(--pgp-bg-soft);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  line-height: 1.55;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
p{ margin: 0; text-wrap: pretty; }
button{ font-family: inherit; cursor: pointer; }
a{ color: inherit; text-decoration: none; }

/* ============ LAYOUT ============ */
.container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section{ padding: 72px 0; }
.section-tight{ padding: 40px 0; }

/* ============ STAMPS / RIBBONS ============ */
.stamp{
  display:inline-flex; align-items:center; gap:6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--pgp-cream);
  color: var(--pgp-orange-dark);
}
.stamp.orange{
  background: var(--pgp-orange);
  color: #fff;
}
.stamp.yellow{
  background: var(--pgp-yellow);
  color: #2B2B2B;
}
.stamp.green{
  background: #dcfce7;
  color: #166534;
}
.stamp.ghost{
  background: #fff;
  color: var(--pgp-orange);
  border: 1px solid var(--pgp-orange);
}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary{
  background: var(--pgp-orange);
  color: #fff;
  box-shadow: var(--pgp-shadow-orange);
}
.btn-primary:hover{ background: var(--pgp-orange-dark); transform: translateY(-1px); }
.btn-primary:active{ transform: translateY(0); }

.btn-dark{
  background: var(--pgp-ink);
  color: #fff;
}
.btn-dark:hover{ background: var(--pgp-ink-2); }

.btn-ghost{
  background: #fff;
  color: var(--pgp-orange);
  border-color: var(--pgp-orange);
}
.btn-ghost:hover{ background: var(--pgp-cream); }

.btn-wa{
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px -2px rgba(37,211,102,.4);
}
.btn-wa:hover{ background: #1ebd5b; transform: translateY(-1px); }
.btn-sm{ padding: 8px 14px; font-size: 12px; border-radius: 6px; }
.btn-lg{ padding: 16px 28px; font-size: 15px; }

/* ============ CARDS ============ */
.card{
  background: #fff;
  border: 1px solid var(--pgp-line);
  border-radius: var(--pgp-radius);
  box-shadow: var(--pgp-shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card-hover:hover{
  transform: translateY(-2px);
  box-shadow: var(--pgp-shadow-md);
  border-color: var(--pgp-orange-soft);
}

/* ============ PRODUCT IMAGE PLACEHOLDER ============ */
.img-ph{
  position: relative;
  background:
    repeating-linear-gradient(45deg, #fff 0 8px, #FAF1E8 8px 16px);
  border: 1px dashed #E5D5C5;
  border-radius: var(--pgp-radius-sm);
  display:flex; align-items:center; justify-content:center;
  color: #8B7B6B;
  font-family: 'JetBrains Mono','SF Mono',ui-monospace,monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-align:center;
  padding: 12px;
  overflow: hidden;
}
.img-ph.orange{
  background: repeating-linear-gradient(45deg, #fff 0 8px, var(--pgp-orange-tint) 8px 16px);
  border-color: var(--pgp-orange-soft);
  color: var(--pgp-orange-dark);
}

/* ============ MARQUEE ============ */
.marquee{
  overflow: hidden;
  background: var(--pgp-orange-dark);
  color: #fff;
}
.marquee-track{
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll-x 40s linear infinite;
  padding: 10px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.marquee-track span{ display:inline-flex; align-items:center; gap:10px; }
.marquee-track .dot{
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--pgp-orange);
  display: inline-block;
}
@keyframes scroll-x{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ============ TICKER NUMBERS ============ */
.big-num{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* ============ DIAGONAL DIVIDER ============ */
.diagonal-bottom{
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%);
}
.diagonal-top{
  clip-path: polygon(0 32px, 100% 0, 100% 100%, 0 100%);
}

/* ============ HELPERS ============ */
.muted{ color: var(--pgp-mute); }
.ink{ color: var(--pgp-ink); }
.orange{ color: var(--pgp-orange); }
.grid{ display:grid; gap: 16px; }
.flex{ display:flex; }
.center{ display:flex; align-items:center; justify-content:center; }
.row{ display:flex; align-items:center; gap: 12px; }

/* ============ HEADER ============ */
.header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pgp-line);
  box-shadow: 0 1px 0 rgba(43,43,43,.04);
}
.topbar{
  background: linear-gradient(90deg, var(--pgp-orange-dark) 0%, var(--pgp-orange) 100%);
  color: #fff;
  font-size: 12px;
}
.topbar .container{ display:flex; justify-content:space-between; padding: 8px 24px; gap: 24px; flex-wrap:wrap; }
.topbar-left{ display:flex; gap: 16px; align-items:center; flex-wrap: wrap; }
.topbar-right{ display:flex; gap: 16px; align-items:center; }
.topbar a{ color: #fff; opacity: .85; }
.topbar a:hover{ opacity: 1; color: var(--pgp-orange); }

/* hamburger + nav actions */
.brand-link{ cursor: pointer; flex-shrink: 0; }
.nav-actions{ display:flex; gap: 10px; align-items: center; }
.hamburger{
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  border: 1.5px solid var(--pgp-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0 11px;
}
.hamburger span{
  display: block; height: 2.5px; width: 100%;
  background: var(--pgp-ink); border-radius: 2px;
}

/* mobile drawer */
.mobile-drawer{ position: fixed; inset: 0; z-index: 90; visibility: hidden; }
.mobile-drawer.open{ visibility: visible; }
.mobile-drawer-backdrop{
  position: absolute; inset: 0; background: rgba(43,43,43,.5);
  opacity: 0; transition: opacity .25s ease;
}
.mobile-drawer.open .mobile-drawer-backdrop{ opacity: 1; }
.mobile-drawer-panel{
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 30px rgba(43,43,43,.18);
}
.mobile-drawer.open .mobile-drawer-panel{ transform: translateX(0); }
.mobile-drawer-head{
  display:flex; align-items:center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--pgp-line);
}
.drawer-close{
  width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--pgp-line);
  background: #fff; font-size: 24px; line-height: 1; cursor: pointer; color: var(--pgp-ink);
}
.mobile-nav{ flex: 1; overflow-y: auto; padding: 12px; display:flex; flex-direction: column; gap: 2px; }
.mobile-nav-link{
  display:flex; align-items:center; justify-content: space-between;
  padding: 15px 16px; border-radius: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  color: var(--pgp-ink); text-decoration: none;
  transition: background .15s ease;
}
.mobile-nav-link:hover, .mobile-nav-link:active{ background: var(--pgp-cream); }
.mobile-nav-link.active{ background: var(--pgp-orange); color: #fff; }
.mobile-nav-arrow{ opacity: .4; }
.mobile-nav-link.active .mobile-nav-arrow{ opacity: 1; }
.mobile-drawer-foot{ padding: 20px; border-top: 1px solid var(--pgp-line); }
.mobile-drawer-contact{
  display:flex; flex-direction: column; gap: 8px;
  margin-top: 16px; font-size: 12.5px; color: var(--pgp-grey);
}
.mobile-drawer-contact span{ display:flex; align-items:center; gap: 8px; color: var(--pgp-grey); }
.mobile-drawer-contact span svg{ color: var(--pgp-orange); flex-shrink: 0; }

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand{
  display:flex; align-items:center; gap:10px;
}
/* PGP 3-square logo mark */
.brand-mark{
  display:flex; gap: 3px; align-items:center;
}
.brand-mark .sq{
  width: 30px; height: 30px;
  background: var(--pgp-orange);
  border-radius: 6px;
  display:flex; align-items:center; justify-content:center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
}
.brand-mark.lg .sq{
  width: 42px; height: 42px;
  font-size: 28px;
  border-radius: 8px;
}
.brand-text{
  display:flex; flex-direction: column;
  line-height: 1;
}
.brand-name{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-tag{
  font-size: 10px;
  color: var(--pgp-orange);
  font-weight: 600;
  margin-top: 2px;
  display: flex; gap: 6px; align-items: center;
}
.brand-tag .check{
  display:inline-block;
  color: var(--pgp-ink);
  font-weight: 900;
}

.nav-links{
  display:flex; gap: 6px; align-items:center;
  flex: 1;
  justify-content: center;
}
.nav-link{
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--pgp-ink);
  transition: background .15s ease;
  cursor: pointer;
  text-decoration: none;
}
.nav-link:hover{ background: var(--pgp-cream); }
.nav-link.active{ background: var(--pgp-orange); color: #fff; }

.search-wrap{
  flex: 1;
  max-width: 420px;
  position: relative;
}
.search-input{
  width: 100%;
  padding: 11px 18px 11px 44px;
  border: 1.5px solid var(--pgp-line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.search-input:focus{ border-color: var(--pgp-orange); box-shadow: 0 0 0 3px var(--pgp-cream); }
.search-icon{
  position:absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--pgp-mute);
}

/* ============ HERO ============ */
.hero{
  position: relative;
  background:
    radial-gradient(900px 500px at 95% 0%, var(--pgp-orange-tint) 0%, transparent 55%),
    radial-gradient(700px 400px at 5% 100%, var(--pgp-cream) 0%, transparent 60%),
    var(--pgp-cream-2);
  overflow: hidden;
  padding: 64px 0 96px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1{
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 900;
}
.hero h1 .word-orange{
  color: var(--pgp-orange);
  display: inline-block;
  position: relative;
}
.hero h1 .word-orange::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 14px;
  background: var(--pgp-orange-tint);
  z-index: -1;
  border-radius: 4px;
}
.hero-lede{
  margin-top: 20px;
  font-size: 17px;
  color: var(--pgp-grey);
  max-width: 520px;
}
.hero-ctas{
  margin-top: 28px;
  display:flex; gap: 12px; flex-wrap: wrap;
}
.hero-bullets{
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  max-width: 520px;
}
.hero-bullet{
  display:flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pgp-ink);
}
.hero-bullet .checkmark{
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 6px;
  background: var(--pgp-orange);
  color: #fff;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  font-size: 13px;
}

.hero-visual{
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 70px;
  gap: 12px;
}
.hv-card{
  background: #fff;
  border: 1px solid var(--pgp-line);
  border-radius: 14px;
  box-shadow: var(--pgp-shadow);
  padding: 14px;
  display:flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hv-card-orange{ background: var(--pgp-orange); color: #fff; border-color: var(--pgp-orange); box-shadow: var(--pgp-shadow-orange); }
.hv-card-yellow{ background: var(--pgp-cream); border-color: var(--pgp-orange-soft); }
.hv-card-dark{ background: var(--pgp-ink); color: #fff; border-color: var(--pgp-ink); }
.hv-tag{
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: .9;
}
.hv-title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.1;
}
.hv-num{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
}

/* ============ CATEGORY GRID ============ */
.cat-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.cat-card{
  background: #fff;
  border: 1px solid var(--pgp-line);
  border-radius: 12px;
  padding: 18px 14px 16px;
  display:flex; flex-direction:column; gap: 12px; align-items: flex-start;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow: var(--pgp-shadow-sm);
  min-height: 150px;
}
.cat-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--pgp-shadow-md);
  border-color: var(--pgp-orange);
}
.cat-card:hover .cat-icon{ background: var(--pgp-orange); color: #fff; }
.cat-icon{
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--pgp-cream);
  color: var(--pgp-orange);
  display:flex; align-items:center; justify-content:center;
  transition: background .15s ease, color .15s ease;
}
.cat-name{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}
.cat-count{
  font-size: 11px;
  color: var(--pgp-mute);
  font-weight: 500;
  margin-top: auto;
}
.cat-pill{
  font-size: 10px;
  background: var(--pgp-cream);
  color: var(--pgp-orange-dark);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  margin-top: auto;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============ PRODUCT CARD ============ */
.prod-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.prod-card{
  background: #fff;
  border: 1px solid var(--pgp-line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display:flex; flex-direction:column;
}
.prod-card:hover{
  border-color: var(--pgp-orange);
  transform: translateY(-3px);
  box-shadow: var(--pgp-shadow-md);
}
.prod-img{
  aspect-ratio: 1 / 1;
  position: relative;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--pgp-line);
}
.prod-img img{
  width: 92%; height: 92%; object-fit: contain;
}
.prod-badge{
  position: absolute;
  top: 8px; left: 8px;
  background: var(--pgp-orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.prod-badge.dark{ background: var(--pgp-ink); color: #fff; }
.prod-discount{
  position: absolute;
  top: 8px; right: 8px;
  background: var(--pgp-orange-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 4px;
}
.prod-body{
  padding: 12px 14px 14px;
  display:flex; flex-direction:column; gap: 6px;
  flex: 1;
}
.prod-cat{
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pgp-mute);
  font-weight: 600;
}
.prod-name{
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  color: var(--pgp-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-price-row{
  display:flex; align-items: baseline; gap: 8px;
  margin-top: 4px;
}
.prod-price{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--pgp-orange);
}
.prod-old{
  font-size: 12px;
  text-decoration: line-through;
  color: var(--pgp-mute);
}
.prod-meta{
  display:flex; justify-content: space-between; align-items:center;
  font-size: 11px;
  color: var(--pgp-mute);
  border-top: 1px solid var(--pgp-line);
  padding-top: 8px;
  margin-top: 4px;
}
.stock-bar{
  height: 6px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}
.stock-fill{
  height: 100%;
  background: linear-gradient(90deg, var(--pgp-orange) 0%, #ff8a4c 100%);
  border-radius: 999px;
}

/* ============ SERVICES ============ */
.svc-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-card{
  background: #fff;
  border: 1px solid var(--pgp-line);
  border-radius: 14px;
  padding: 22px 20px;
  display:flex; flex-direction: column; gap: 12px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--pgp-shadow-sm);
}
.svc-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--pgp-shadow-md);
  border-color: var(--pgp-orange);
}
.svc-card.featured{
  background: linear-gradient(135deg, var(--pgp-orange-dark) 0%, var(--pgp-orange) 100%);
  color: #fff;
  border-color: var(--pgp-orange);
  box-shadow: var(--pgp-shadow-orange);
}
.svc-card.featured:hover{ filter: brightness(1.05); }
.svc-card.featured .svc-num{ color: #FFD2B8; }
.svc-num{
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--pgp-orange);
}
.svc-name{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.15;
}
.svc-desc{
  font-size: 13px;
  color: var(--pgp-grey);
  line-height: 1.5;
}
.svc-card.featured .svc-desc{ color: rgba(255,255,255,.9); }
.svc-foot{
  margin-top: auto;
  display:flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px dashed currentColor;
  opacity: .9;
  font-size: 12px;
}
.svc-arrow{
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--pgp-orange);
  color: #fff;
  display:flex; align-items:center; justify-content:center;
  font-weight: 800;
}

/* ============ USP STRIP ============ */
.usp-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.usp-card{
  background: #fff;
  border: 1px solid var(--pgp-line);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--pgp-shadow-sm);
  display:flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.usp-card:hover{ transform: translateY(-3px); box-shadow: var(--pgp-shadow-md); }
.usp-card .usp-icon{
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--pgp-cream);
  color: var(--pgp-orange);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
}
.usp-card h3{
  font-size: 22px;
  line-height: 1.1;
}
.usp-card p{
  font-size: 14px;
  color: var(--pgp-grey);
  line-height: 1.55;
}

/* ============ PROMO ============ */
.promo-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.promo-card{
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display:flex; flex-direction: column; justify-content: space-between;
  min-height: 200px;
  box-shadow: var(--pgp-shadow-sm);
  transition: transform .15s ease;
}
.promo-card:hover{ transform: translateY(-3px); }
.promo-card.big{
  background: linear-gradient(135deg, var(--pgp-orange-dark) 0%, var(--pgp-orange) 60%, var(--pgp-orange-bright) 100%);
  color: #fff;
  min-height: 280px;
  box-shadow: var(--pgp-shadow-orange);
}
.promo-card.dark{
  background: var(--pgp-ink);
  color: #fff;
}
.promo-card.cream{
  background: var(--pgp-cream);
  border: 1px solid var(--pgp-orange-soft);
}
.promo-eye{
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}
.promo-title{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.promo-card.big .promo-title{ font-size: clamp(36px, 4.5vw, 56px); }
.promo-sub{
  font-size: 14px;
  opacity: .9;
  margin-top: 8px;
  line-height: 1.5;
}
.promo-cta{
  margin-top: 18px;
  display:inline-flex; align-items:center; gap: 6px;
  background: #fff;
  color: var(--pgp-orange);
  padding: 9px 16px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  align-self: flex-start;
  cursor: pointer;
  transition: transform .12s ease;
}
.promo-cta:hover{ transform: translateX(2px); }
.promo-card.cream .promo-cta{ background: var(--pgp-orange); color: #fff; }
.promo-card.dark .promo-cta{ background: var(--pgp-orange); color: #fff; }
.promo-percent{
  position: absolute;
  right: -20px; bottom: -30px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 220px;
  line-height: 1;
  color: rgba(255,255,255,.18);
  letter-spacing: -0.05em;
}

/* ============ STATS ============ */
.stats-band{
  background:
    radial-gradient(600px 300px at 100% 50%, rgba(255,90,31,.18) 0%, transparent 60%),
    var(--pgp-ink);
  color: #fff;
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
}
.stat{
  display:flex; flex-direction:column; gap: 6px;
  border-left: 3px solid var(--pgp-orange);
  padding-left: 18px;
}
.stat-num{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label{
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* ============ TESTIMONIALS ============ */
.test-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.test-card{
  background: #fff;
  border: 1px solid var(--pgp-line);
  border-radius: 16px;
  padding: 24px;
  display:flex; flex-direction:column; gap: 14px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.test-card:hover{ border-color: var(--pgp-orange); box-shadow: var(--pgp-shadow-md); transform: translateY(-2px); }
.test-stars{
  color: var(--pgp-yellow);
  font-size: 16px;
  letter-spacing: 2px;
}
.test-quote{
  font-size: 14px;
  line-height: 1.6;
  color: var(--pgp-ink);
}
.test-meta{
  display:flex; align-items:center; gap: 12px;
  border-top: 1px solid var(--pgp-line);
  padding-top: 14px;
}
.test-avatar{
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--pgp-orange);
  color: #fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}
.test-name{ font-weight: 700; font-size: 13px; }
.test-role{ font-size: 11px; color: var(--pgp-mute); }

/* ============ PORTFOLIO ============ */
.port-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.port-tile{
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--pgp-line);
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  transition: transform .15s ease;
}
.port-tile:hover{ transform: scale(1.02); }
.port-tile.wide{ grid-column: span 2; aspect-ratio: 2 / 1; }
.port-tile.tall{ grid-row: span 2; aspect-ratio: 1 / 2; }
.port-label{
  position: absolute;
  bottom: 8px; left: 8px;
  background: var(--pgp-ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
}

/* ============ BLOG ============ */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card{
  background: #fff;
  border: 1.5px solid var(--pgp-line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .15s ease, transform .15s ease;
  cursor: pointer;
}
.blog-card:hover{ border-color: var(--pgp-ink); transform: translateY(-2px); }
.blog-img{
  aspect-ratio: 16 / 9;
}
.blog-body{
  padding: 18px;
  display:flex; flex-direction: column; gap: 8px;
}
.blog-meta{
  display:flex; align-items:center; gap: 10px;
  font-size: 11px;
  color: var(--pgp-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.blog-title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
}

/* ============ ABOUT ============ */
.about-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img{
  aspect-ratio: 4/5;
  border-radius: 20px;
  border: 1px solid var(--pgp-line);
  box-shadow: var(--pgp-shadow-md);
  overflow: hidden;
}

/* ============ CONTACT / CTA BAND ============ */
.cta-band{
  background: linear-gradient(135deg, var(--pgp-orange-dark) 0%, var(--pgp-orange) 50%, var(--pgp-orange-bright) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band-inner{
  display:flex; align-items:center; justify-content: space-between;
  gap: 32px;
  padding: 56px 0;
  flex-wrap: wrap;
}
.cta-band h2{
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  flex: 1; min-width: 280px;
}

/* ============ FOOTER ============ */
.footer{
  background: #222222;
  color: #cccccc;
  padding: 64px 0 24px;
  border-top: 4px solid var(--pgp-orange);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #333333;
}
.footer h4{
  color: #fff;
  font-size: 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer ul{ list-style: none; padding:0; margin:0; display:flex; flex-direction:column; gap: 8px; }
.footer a{ font-size: 13px; }
.footer a:hover{ color: var(--pgp-orange); }
.footer-bottom{
  padding-top: 20px;
  display:flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: #888888;
}

/* ============ FLOATING WHATSAPP ============ */
.wa-fab{
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  display:flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.wa-fab-bubble{
  background: #fff;
  border: 1px solid var(--pgp-line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--pgp-shadow-md);
  font-size: 12px;
  font-weight: 600;
  max-width: 240px;
  position: relative;
}
.wa-fab-bubble::after{
  content: '';
  position: absolute;
  bottom: -8px; right: 28px;
  width: 14px; height: 14px;
  background: #fff;
  border-right: 1px solid var(--pgp-line);
  border-bottom: 1px solid var(--pgp-line);
  transform: rotate(45deg);
}
.wa-fab-btn{
  width: 60px; height: 60px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  border: 3px solid #fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 20px -2px rgba(37,211,102,.5), 0 2px 4px rgba(0,0,0,.15);
  cursor: pointer;
  transition: transform .15s ease;
  animation: pulse 2s ease-in-out infinite;
}
.wa-fab-btn:hover{
  transform: scale(1.08);
}
@keyframes pulse{
  0%, 100%{ box-shadow: 0 6px 20px -2px rgba(37,211,102,.5), 0 2px 4px rgba(0,0,0,.15), 0 0 0 0 rgba(37,211,102,.5); }
  50%{ box-shadow: 0 6px 20px -2px rgba(37,211,102,.5), 0 2px 4px rgba(0,0,0,.15), 0 0 0 16px rgba(37,211,102,0); }
}

/* ============ SECTION HEADERS ============ */
.sec-head{
  display:flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.sec-head h2{
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}
.sec-head .lede{
  margin-top: 8px;
  color: var(--pgp-grey);
  font-size: 15px;
  max-width: 520px;
}
.sec-head-text{ flex: 1; min-width: 280px; }
.sec-eyebrow{
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pgp-orange);
  font-weight: 700;
  margin-bottom: 10px;
  display:inline-flex; align-items:center; gap: 8px;
}
.sec-eyebrow::before{
  content: '';
  width: 28px; height: 2px;
  background: var(--pgp-orange);
}

/* ============ FLASH SALE TIMER ============ */
.flash{
  display:flex; align-items:center; gap: 12px;
  background: var(--pgp-ink);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
}
.flash-pill{
  background: var(--pgp-orange);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.flash-timer{
  display:flex; gap: 6px;
  margin-left: auto;
  align-items: center;
}
.flash-time{
  background: var(--pgp-orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
  min-width: 32px;
  text-align: center;
}

/* ============ ABOUT / CONTACT PAGES ============ */
.about-hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gal-tile{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--pgp-line);
  box-shadow: var(--pgp-shadow-sm);
}
.gal-tile.wide{ grid-column: span 2; }
.gal-tile img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.contact-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card{
  display:flex; gap: 14px; align-items: center;
  background: #fff;
  border: 1px solid var(--pgp-line);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--pgp-shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  text-decoration: none;
  color: var(--pgp-ink);
}
.contact-card:hover{ transform: translateY(-2px); box-shadow: var(--pgp-shadow-md); border-color: var(--pgp-orange-soft); }
.contact-card.highlight{ background: var(--pgp-cream); border-color: var(--pgp-orange-soft); }
.contact-ic{
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--pgp-orange);
  color: #fff;
  display:flex; align-items:center; justify-content:center;
}
.contact-label{ font-size: 11px; color: var(--pgp-mute); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-value{ font-family: var(--font-display); font-weight: 800; font-size: 18px; line-height: 1.2; margin-top: 2px; }
.contact-sub{ font-size: 12px; color: var(--pgp-orange); font-weight: 600; margin-top: 2px; }

.social-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.social-card{
  display:flex; align-items:center; gap: 12px;
  background: #fff;
  border: 1px solid var(--pgp-line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--pgp-shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  text-decoration: none;
  color: var(--pgp-ink);
  position: relative;
}
.social-card:hover{ transform: translateY(-3px); box-shadow: var(--pgp-shadow-md); border-color: var(--pgp-orange); }
.social-ic{
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px;
  color: #fff;
  display:flex; align-items:center; justify-content:center;
}
.social-name{ font-family: var(--font-display); font-weight: 800; font-size: 14px; line-height: 1.1; }
.social-handle{ font-size: 11px; color: var(--pgp-mute); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 110px; }
.social-arrow{ margin-left: auto; color: var(--pgp-orange); font-weight: 800; }

@media (max-width: 1024px){
  .about-hero-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .social-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .gal-tile.wide{ grid-column: span 2; }
}
@media (max-width: 640px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .gal-tile.wide{ grid-column: span 1; }
  .social-grid{ grid-template-columns: 1fr; }
  .contact-row{ grid-template-columns: 1fr; }
}

/* ============ BLOG LIST & ARTICLE ============ */
.blog-cat-pill{
  background: var(--pgp-cream);
  color: var(--pgp-orange-dark);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.blog-card{ display:flex; flex-direction: column; }
.blog-card .blog-img{ aspect-ratio: 16/10; overflow: hidden; }
.blog-card .blog-body{ flex: 1; display:flex; flex-direction: column; }

.blog-featured{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--pgp-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--pgp-shadow-md);
  text-decoration: none;
  color: var(--pgp-ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.blog-featured:hover{ transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(43,43,43,.22); }
.blog-featured-img{ overflow: hidden; }
.blog-featured-img img{ width: 100%; height: 100%; object-fit: cover; display: block; min-height: 320px; }
.blog-featured-body{ padding: 36px; display:flex; flex-direction: column; justify-content: center; }

/* Article body typography */
.article-body{ font-size: 16.5px; line-height: 1.75; color: var(--pgp-ink-2, #222); }
.article-h2{
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  margin: 36px 0 12px;
  color: var(--pgp-ink);
}
.article-p{ margin: 0 0 18px; color: var(--pgp-grey); }
.article-list{ margin: 0 0 20px; padding-left: 0; list-style: none; display:flex; flex-direction: column; gap: 12px; }
.article-list li{
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--pgp-grey);
}
.li-check{
  flex-shrink: 0; margin-top: 3px;
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--pgp-cream);
  border: 1.5px solid var(--pgp-orange);
  position: relative;
}
.li-check::after{
  content: '';
  position: absolute; left: 6px; top: 3px;
  width: 5px; height: 9px;
  border-right: 2px solid var(--pgp-orange);
  border-bottom: 2px solid var(--pgp-orange);
  transform: rotate(45deg);
}
.li-num{
  flex-shrink: 0; margin-top: 2px;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--pgp-orange); color: #fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
}
.article-tip{
  display:flex; gap: 14px; align-items: flex-start;
  background: var(--pgp-cream);
  border-left: 4px solid var(--pgp-orange);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--pgp-ink);
  line-height: 1.6;
}
.article-tip-ic{
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px; background: var(--pgp-orange); color: #fff;
  display:flex; align-items:center; justify-content:center;
}
.article-quote{
  margin: 24px 0; padding: 4px 0 4px 24px;
  border-left: 4px solid var(--pgp-orange);
  font-size: 20px; font-style: italic; color: var(--pgp-ink);
  line-height: 1.5;
}
.article-cta{
  display:flex; align-items:center; justify-content: space-between; gap: 20px;
  background: var(--pgp-ink); color: #fff;
  border-radius: 16px; padding: 24px 28px;
  margin: 32px 0;
  flex-wrap: wrap;
}

@media (max-width: 1024px){
  .blog-featured{ grid-template-columns: 1fr; }
  .blog-featured-img img{ min-height: 220px; }
  .blog-featured-body{ padding: 28px; }
}

/* ============ PORTFOLIO PAGE ============ */
.port-masonry{
  columns: 3;
  column-gap: 20px;
}
.port-project{
  break-inside: avoid;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid var(--pgp-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--pgp-shadow-sm);
  transition: box-shadow .15s ease, transform .15s ease;
}
.port-project:hover{ box-shadow: var(--pgp-shadow-md); transform: translateY(-2px); }
.port-project-media{ position: relative; }
.port-project-body{ padding: 20px; }
.port-project-meta{ display:flex; align-items:center; justify-content: space-between; margin-bottom: 8px; }
.port-project-title{ font-family: var(--font-display); font-weight: 800; font-size: 19px; line-height: 1.15; }
.port-project-loc{ display:flex; align-items:center; gap: 6px; font-size: 12px; color: var(--pgp-orange-dark); font-weight: 600; margin-top: 6px; }
.port-project-desc{ font-size: 13.5px; color: var(--pgp-grey); line-height: 1.55; margin-top: 10px; }
.port-tags{ display:flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.port-tag{
  font-size: 11px; font-weight: 600;
  background: var(--pgp-cream); color: var(--pgp-orange-dark);
  padding: 4px 10px; border-radius: 999px;
}

.port-img-btn{
  display: block; width: 100%; padding: 0; border: none; cursor: pointer;
  background: #eee; position: relative; overflow: hidden; line-height: 0;
}
.port-img-btn img{ width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; display: block; }
.port-img-btn:hover img{ transform: scale(1.04); }
.port-zoom{
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.92); color: var(--pgp-ink);
  display:flex; align-items:center; justify-content:center;
  opacity: 0; transition: opacity .15s ease;
}
.port-img-btn:hover .port-zoom{ opacity: 1; }
.port-img-label{
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(43,43,43,.82); color: #fff;
  font-size: 11px; font-weight: 600; padding: 4px 8px; border-radius: 6px;
}

.port-gallery{ display:flex; flex-direction: column; gap: 4px; }
.port-gallery .main img{ aspect-ratio: 16/10; }
.port-gallery-thumbs{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.port-gallery-thumbs .port-img-btn img{ aspect-ratio: 1; }
.port-more{
  position: absolute; inset: 0;
  background: rgba(43,43,43,.6); color: #fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
}

/* Before/After slider */
.ba{ position: relative; width: 100%; aspect-ratio: 16/11; overflow: hidden; cursor: ew-resize; user-select: none; background: #eee; }
.ba-img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before{ position: absolute; inset: 0; overflow: hidden; height: 100%; }
.ba-before .ba-img{ max-width: none; }
.ba-tag{
  position: absolute; top: 10px; z-index: 3;
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  padding: 4px 10px; border-radius: 6px; color: #fff; letter-spacing: 0.06em;
}
.before-tag{ left: 10px; background: rgba(43,43,43,.85); }
.after-tag{ right: 10px; background: var(--pgp-orange); }
.ba-handle{
  position: absolute; top: 0; bottom: 0; width: 3px; background: #fff;
  transform: translateX(-50%); z-index: 4; box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}
.ba-knob{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 38px; height: 38px; border-radius: 999px;
  background: #fff; color: var(--pgp-orange);
  display:flex; align-items:center; justify-content:center;
  font-size: 16px; box-shadow: 0 2px 8px rgba(0,0,0,.25);
  border: 2px solid var(--pgp-orange);
}

/* Lightbox */
.lightbox{
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,12,8,.92);
  display:flex; align-items:center; justify-content:center;
  padding: 40px;
}
.lightbox-inner{ position: relative; max-width: 90vw; max-height: 86vh; }
.lightbox-inner img{ max-width: 90vw; max-height: 86vh; border-radius: 10px; display: block; object-fit: contain; }
.lightbox-label{
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff; padding: 24px 18px 14px; font-size: 14px; font-weight: 600;
  border-radius: 0 0 10px 10px;
}
.lightbox-count{
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,.5); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
}
.lightbox-close{
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,.12); color: #fff; border: none;
  font-size: 26px; cursor: pointer; line-height: 1;
}
.lightbox-close:hover{ background: rgba(255,255,255,.25); }
.lightbox-nav{
  width: 52px; height: 52px; border-radius: 999px; flex-shrink: 0;
  background: rgba(255,255,255,.12); color: #fff; border: none;
  font-size: 32px; cursor: pointer; line-height: 1; margin: 0 8px;
}
.lightbox-nav:hover{ background: rgba(255,255,255,.25); }

@media (max-width: 1024px){ .port-masonry{ columns: 2; } }
@media (max-width: 640px){ .port-masonry{ columns: 1; } .lightbox-nav.prev{ position: absolute; left: 4px; } .lightbox-nav.next{ position: absolute; right: 4px; } }

/* ============ JASA / SERVICES PAGE ============ */
.jasa-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.jasa-card{
  display:flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--pgp-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--pgp-shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.jasa-card:hover{ transform: translateY(-3px); box-shadow: var(--pgp-shadow-md); border-color: var(--pgp-orange-soft); }
.jasa-card.featured{ border-color: var(--pgp-orange); box-shadow: var(--pgp-shadow-orange); }
.jasa-card-img{ position: relative; aspect-ratio: 16/10; overflow: hidden; background: #eee; }
.jasa-card-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.jasa-card:hover .jasa-card-img img{ transform: scale(1.05); }
.jasa-card-num{
  position: absolute; top: 12px; left: 12px;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.95); color: var(--pgp-orange);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.jasa-card-flag{
  position: absolute; top: 12px; right: 12px;
  background: var(--pgp-orange); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  padding: 5px 10px; border-radius: 999px; letter-spacing: 0.04em;
}
.jasa-card-body{ padding: 20px; display:flex; flex-direction: column; flex: 1; }
.jasa-card-title{ font-family: var(--font-display); font-weight: 800; font-size: 20px; line-height: 1.15; margin-top: 10px; }
.jasa-card-short{ font-size: 13.5px; color: var(--pgp-grey); line-height: 1.55; margin-top: 8px; }
.jasa-points{ list-style: none; padding: 0; margin: 14px 0 0; display:flex; flex-direction: column; gap: 8px; }
.jasa-points li{ display:flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--pgp-ink); }
.jasa-check{
  flex-shrink: 0; margin-top: 2px;
  width: 18px; height: 18px; border-radius: 5px;
  background: var(--pgp-cream); border: 1.5px solid var(--pgp-orange);
  position: relative;
}
.jasa-check::after{
  content: ''; position: absolute; left: 5px; top: 2px;
  width: 5px; height: 9px;
  border-right: 2px solid var(--pgp-orange);
  border-bottom: 2px solid var(--pgp-orange);
  transform: rotate(45deg);
}
.jasa-card-foot{
  margin-top: auto; padding-top: 16px;
  display:flex; align-items:center; justify-content: space-between; gap: 10px;
  border-top: 1px dashed var(--pgp-line); margin-top: 16px;
  padding-top: 14px;
}
.jasa-price-tag{
  display:inline-flex; align-items:center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--pgp-orange-dark);
}

/* Steps */
.jasa-steps{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.jasa-step{
  position: relative;
  background: #fff; border: 1px solid var(--pgp-line);
  border-radius: 16px; padding: 24px 20px;
  box-shadow: var(--pgp-shadow-sm);
}
.jasa-step-num{
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--pgp-orange); color: #fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight: 900; font-size: 20px;
  margin-bottom: 14px;
}
.jasa-step-title{ font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.jasa-step-desc{ font-size: 13px; color: var(--pgp-grey); line-height: 1.5; margin-top: 8px; }
.jasa-step-arrow{
  position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--pgp-orange); color: #fff;
  display:flex; align-items:center; justify-content:center;
  font-weight: 800; font-size: 13px; z-index: 2;
}

/* Price note */
.jasa-price-note{
  display:flex; align-items:center; gap: 24px;
  background: var(--pgp-cream); border: 1px solid var(--pgp-orange-soft);
  border-radius: 20px; padding: 32px;
  flex-wrap: wrap;
}
.jasa-price-ic{
  width: 60px; height: 60px; flex-shrink: 0; border-radius: 16px;
  background: #25D366; color: #fff;
  display:flex; align-items:center; justify-content:center;
}

@media (max-width: 1024px){
  .jasa-grid{ grid-template-columns: repeat(2, 1fr); }
  .jasa-steps{ grid-template-columns: repeat(2, 1fr); }
  .jasa-step-arrow{ display: none; }
}
@media (max-width: 640px){
  .jasa-grid{ grid-template-columns: 1fr; }
  .jasa-steps{ grid-template-columns: 1fr; }
}

/* ============ PRODUK PAGE — other categories ============ */
.produk-kat-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.produk-kat-card{
  display:flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--pgp-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--pgp-shadow-sm);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.produk-kat-card:hover{ transform: translateY(-3px); box-shadow: var(--pgp-shadow-md); border-color: var(--pgp-orange); }
.produk-kat-img{ aspect-ratio: 1; overflow: hidden; background: #fff; border-bottom: 1px solid var(--pgp-line); }
.produk-kat-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.produk-kat-card:hover .produk-kat-img img{ transform: scale(1.05); }
.produk-kat-ph{
  width: 100%; height: 100%;
  display:flex; align-items:center; justify-content:center;
  background:
    radial-gradient(circle at 50% 45%, var(--pgp-orange-tint) 0%, transparent 60%),
    var(--pgp-cream);
  color: var(--pgp-orange);
}
.produk-kat-body{ padding: 18px; display:flex; flex-direction: column; flex: 1; }
.produk-kat-title{ font-family: var(--font-display); font-weight: 800; font-size: 17px; line-height: 1.15; }
.produk-kat-desc{ font-size: 13px; color: var(--pgp-grey); line-height: 1.5; margin-top: 8px; }
.produk-kat-foot{
  margin-top: auto; padding-top: 14px;
  border-top: 1px dashed var(--pgp-line);
  display:flex; align-items:center; justify-content: space-between; gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 1024px){ .produk-kat-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .produk-kat-grid{ grid-template-columns: 1fr; } }

/* ============ FOOTER SOCIAL ROW ============ */
.footer-social{
  display:flex; gap: 10px; margin-top: 16px;
}
.footer-social a{
  width: 40px; height: 40px; border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  color: #fff;
  transition: transform .15s ease;
}
.footer-social a:hover{ transform: translateY(-2px); }
@media (max-width: 1024px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ grid-template-columns: repeat(6, 1fr); }
  .trust-grid{ grid-template-columns: repeat(2, 1fr) !important; gap: 18px !important; }
  .trust-item{ border-right: none !important; padding-right: 0 !important; }
  .cat-grid{ grid-template-columns: repeat(3, 1fr); }
  .prod-grid{ grid-template-columns: repeat(3, 1fr); }
  .svc-grid{ grid-template-columns: repeat(2, 1fr); }
  .usp-grid{ grid-template-columns: 1fr; }
  .promo-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .test-grid, .blog-grid{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .nav-links{ display: none; }
  .search-wrap{ display: none; }
  .hamburger{ display: flex; }
  .port-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px){
  /* Compact topbar: keep only phone + one trust item, single row */
  .topbar{ font-size: 11px; }
  .topbar .container{ padding: 7px 16px; gap: 10px; flex-wrap: nowrap; justify-content: space-between; }
  .tb-hide-sm{ display: none !important; }
  .tb-hide-md{ display: none !important; }
  .topbar-right span:nth-child(2){ display: none; }  /* hide separator */
  .topbar-right .check-hide{ display: none; }
  .nav{ padding: 12px 16px; }
}
@media (max-width: 640px){
  .cat-grid{ grid-template-columns: repeat(2, 1fr); }
  .prod-grid{ grid-template-columns: repeat(2, 1fr); }
  .svc-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .search-wrap{ display:none; }
  .section{ padding: 48px 0; }
  .trust-grid{ grid-template-columns: 1fr !important; }
  /* Hide WA text button in header (FAB + drawer cover it); show only hamburger */
  .wa-desktop{ display: none; }
  /* Topbar: phone left, garansi right only */
  .topbar-right span:last-child{ display: none; }
  .topbar-right span:nth-child(2){ display: none; }
  .brand-tag{ display: none; }
}
