/* ========================================================
   Print Hungama — service-site additions on top of dtgdtf base
   Loaded after dtgdtf-base.css. Only NEW components live here.
   ======================================================== */

:root {
  --ph-bottom-bar-h: 64px;
}

/* ---------- Utility bar (top, dark) ---------- */
.ph-utility {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 8px 0;
}
.ph-utility-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}
.ph-utility a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  font-weight: 500;
  transition: color .15s;
}
.ph-utility a:hover { color: #fff; }
.ph-utility svg { width: 14px; height: 14px; }
.ph-utility .ph-hours { color: rgba(255, 255, 255, 0.55); }
@media (max-width: 700px) {
  .ph-utility-inner { justify-content: center; gap: 14px; font-size: 12px; }
  .ph-utility .ph-hours { display: none; }
}

/* ---------- Main nav (replaces dtgdtf's search-centric header) ---------- */
.ph-header { background: rgba(255, 255, 255, 0.92); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); }
.ph-nav-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 14px 0;
}
.ph-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px; letter-spacing: -.02em;
}
.ph-brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad-cta);
  display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 18px;
  box-shadow: var(--shadow-cta);
}
.ph-brand-text { line-height: 1.05; }
.ph-brand-text small { display: block; color: var(--muted); font-weight: 500; font-size: 11px; margin-top: 2px; letter-spacing: 0; }

.ph-main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.ph-main-nav > li { position: relative; list-style: none; }
.ph-main-nav > li > a, .ph-main-nav > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600; font-size: 15px;
  color: var(--ink);
  transition: background .15s, color .15s;
}
.ph-main-nav > li > a:hover, .ph-main-nav > li > button:hover {
  background: var(--line-2);
  color: var(--brand);
}
.ph-main-nav > li > a.is-active { color: var(--brand); }
.ph-main-nav .ph-caret {
  width: 12px; height: 12px;
  transition: transform .2s;
}
.ph-main-nav .is-open .ph-caret { transform: rotate(180deg); }

.ph-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 12px;
  background: var(--grad-cta);
  color: #fff !important;
  font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-cta);
  transition: transform .15s, box-shadow .15s;
  margin-left: 8px;
}
.ph-cta:hover { transform: translateY(-1px); box-shadow: 0 16px 36px rgba(255,61,87,.4); }
.ph-cta svg { width: 16px; height: 16px; }

.ph-cta-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 12px;
  background: var(--whatsapp);
  color: #fff !important;
  font-weight: 700; font-size: 14px;
}
.ph-cta-wa:hover { filter: brightness(1.06); }

.ph-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid var(--line);
  color: var(--ink) !important;
  font-weight: 700; font-size: 14px;
  transition: border-color .15s, color .15s;
}
.ph-cta-ghost:hover { border-color: var(--brand); color: var(--brand) !important; }

.ph-hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--line-2);
  align-items: center; justify-content: center;
  margin-left: auto;
}
.ph-hamburger svg { width: 22px; height: 22px; }

@media (max-width: 980px) {
  .ph-main-nav, .ph-nav-row > .ph-cta { display: none; }
  .ph-hamburger { display: inline-flex; }
}

/* ---------- Mega menu ---------- */
.ph-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(1080px, 92vw);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(10,11,20,.18), 0 4px 12px rgba(10,11,20,.05);
  border: 1px solid var(--line);
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
  z-index: 60;
}
.ph-main-nav li:hover .ph-mega,
.ph-main-nav li.is-open .ph-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.ph-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ph-mega-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.ph-mega-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.ph-mega-col a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: background .12s, color .12s;
}
.ph-mega-col a:hover { background: var(--line-2); color: var(--brand); }
.ph-mega-col a small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}
.ph-mega-icon {
  width: 26px; height: 26px;
  background: var(--line-2);
  border-radius: 7px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ph-mega-icon svg { width: 14px; height: 14px; color: var(--brand); }

/* ---------- Mobile drawer ---------- */
.ph-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 20, 0.45);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.ph-drawer.is-open { opacity: 1; pointer-events: auto; }
.ph-drawer-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(380px, 86vw);
  background: #fff;
  box-shadow: -20px 0 60px rgba(10,11,20,.2);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .25s ease-out;
}
.ph-drawer.is-open .ph-drawer-panel { transform: translateX(0); }
.ph-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.ph-drawer-close {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--line-2);
  display: grid; place-items: center;
}
.ph-drawer-body { flex: 1; overflow-y: auto; padding: 12px 16px; }
.ph-drawer-body a, .ph-drawer-body button {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  font-weight: 700; font-size: 16px;
  color: var(--ink);
  text-align: left;
}
.ph-drawer-body a:hover, .ph-drawer-body button:hover { background: var(--line-2); }
.ph-drawer-sub {
  list-style: none; padding: 0 0 8px 8px; margin: 0;
  border-left: 2px solid var(--line);
  margin-left: 14px;
  display: none;
}
.ph-drawer-sub.is-open { display: block; }
.ph-drawer-sub a { font-size: 14px; font-weight: 600; color: var(--muted); padding: 10px 14px; }
.ph-drawer-foot { padding: 16px; border-top: 1px solid var(--line); display: grid; gap: 8px; }

/* ---------- Bottom action bar (mobile) ---------- */
.ph-bottombar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(10,11,20,.08);
  display: none;
  z-index: 40;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
}
.ph-bottombar a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  padding: 8px 4px;
  border-radius: 12px;
  font-size: 11px; font-weight: 700;
  color: var(--ink);
}
.ph-bottombar a svg { width: 22px; height: 22px; }
.ph-bottombar .ph-bottom-call { color: var(--brand); }
.ph-bottombar .ph-bottom-wa { color: var(--whatsapp); }
.ph-bottombar .ph-bottom-quote {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
@media (max-width: 980px) {
  .ph-bottombar { display: flex; }
  body { padding-bottom: var(--ph-bottom-bar-h); }
}

/* ---------- Floating WhatsApp ---------- */
.ph-fab-wa {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: grid; place-items: center;
  box-shadow: 0 14px 36px rgba(37,211,102,.4);
  z-index: 35;
  transition: transform .15s;
}
.ph-fab-wa:hover { transform: scale(1.06); }
.ph-fab-wa svg { width: 30px; height: 30px; color: #fff; }
@media (max-width: 980px) {
  .ph-fab-wa { bottom: calc(var(--ph-bottom-bar-h) + 14px); right: 14px; width: 50px; height: 50px; }
  .ph-fab-wa svg { width: 26px; height: 26px; }
}

/* ---------- Hero ---------- */
.ph-hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(255,61,87,.08), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(122,59,255,.07), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.ph-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ph-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,61,87,.1);
  color: var(--brand);
  font-weight: 700; font-size: 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ph-hero-eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,61,87,.2);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.6} }
.ph-hero h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.ph-hero h1 .ph-grad {
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ph-hero p.ph-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 28px;
  line-height: 1.5;
}
.ph-hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.ph-hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.ph-hero-trust-item strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.02em;
}
.ph-hero-trust-item small {
  font-size: 13px;
  color: var(--muted);
}

.ph-hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.ph-hero-tile {
  border-radius: var(--r-lg);
  background: var(--grad-cta);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 20px;
  font-size: 18px;
  box-shadow: var(--shadow-2);
  transition: transform .3s;
}
.ph-hero-tile:nth-child(1) { background: var(--grad-warm); transform: translateY(-12px); }
.ph-hero-tile:nth-child(2) { background: var(--grad-cool); transform: translateY(12px); }
.ph-hero-tile:nth-child(3) { background: var(--grad-fresh); transform: translateY(12px); }
.ph-hero-tile:nth-child(4) { background: var(--grad-night); transform: translateY(-12px); }
.ph-hero-tile small { display: block; font-weight: 500; font-size: 12px; opacity: .9; margin-top: 6px; letter-spacing: .04em; text-transform: uppercase; }
.ph-hero-tile-icon { width: 44px; height: 44px; margin-bottom: 10px; }

/* Hero tile w/ real photo bg */
.ph-hero-tile-photo {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  text-align: left !important;
  padding: 18px 20px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-shadow: 0 2px 14px rgba(10,11,20,.55);
  letter-spacing: -.01em;
}
.ph-hero-tile-photo small {
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  margin-top: 4px !important;
  opacity: .85 !important;
  font-weight: 600 !important;
  font-size: 11px !important;
}
.ph-hero-tile-photo:hover { transform: translateY(-4px) !important; }

/* Trusted-by client logo strip */
.ph-trust {
  padding: 50px 0 30px;
  background: #fff;
  border-bottom: 1px solid var(--line-2);
}
.ph-trust-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 28px;
}
.ph-trust-logos {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}
.ph-trust-logos img {
  max-width: 100%;
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform .25s, filter .25s;
  filter: saturate(1.25) contrast(1.05);
}
.ph-trust-logos img:hover { transform: scale(1.10); filter: saturate(1.4) contrast(1.1); }
@media (max-width: 1100px) { .ph-trust-logos { grid-template-columns: repeat(5, 1fr); } .ph-trust-logos img:nth-child(n+11) { display: none; } }
@media (max-width: 700px) { .ph-trust-logos { grid-template-columns: repeat(3, 1fr); gap: 16px; } .ph-trust-logos img:nth-child(n+7) { display: none; } }

@media (max-width: 900px) {
  .ph-hero { padding: 50px 0 60px; }
  .ph-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ph-hero-visual { aspect-ratio: 4/3; max-width: 460px; margin: 0 auto; }
}

/* ---------- Section primitives ---------- */
.ph-section { padding: 80px 0; }
.ph-section-tight { padding: 60px 0; }
.ph-section-head { text-align: center; margin-bottom: 48px; }
.ph-section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.ph-section h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: -.025em;
  margin: 0 0 14px;
}
.ph-section-sub {
  font-size: 17px; color: var(--muted); max-width: 640px; margin: 0 auto;
}

/* ---------- Stat strip ---------- */
.ph-stat-strip {
  background: var(--ink);
  color: #fff;
  padding: 40px 0;
}
.ph-stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.ph-stat strong {
  display: block;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  letter-spacing: -.02em;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ph-stat small { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 4px; display: block; }
@media (max-width: 700px) {
  .ph-stat-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ---------- Services grid ---------- */
.ph-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .ph-services { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .ph-services { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.ph-svc-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.ph-svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.ph-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10,11,20,.08);
  border-color: transparent;
}
.ph-svc-card:hover::before { transform: scaleX(1); }
.ph-svc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--line-2);
  display: grid; place-items: center;
  color: var(--brand);
  transition: background .2s, color .2s;
}
.ph-svc-card:hover .ph-svc-icon { background: var(--grad-cta); color: #fff; }
.ph-svc-icon svg { width: 26px; height: 26px; }
.ph-svc-card h3 { font-size: 17px; font-weight: 800; margin: 0; letter-spacing: -.01em; }
.ph-svc-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
.ph-svc-card .ph-svc-more {
  font-size: 13px; font-weight: 700; color: var(--brand);
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: auto;
  padding-top: 6px;
}

/* ---------- Why-us / USP row ---------- */
.ph-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .ph-why { grid-template-columns: 1fr; } }
.ph-why-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--line);
  position: relative;
}
.ph-why-num {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 60px;
  font-weight: 900;
  color: var(--line);
  line-height: 1;
}
.ph-why-card h3 { font-size: 20px; font-weight: 800; margin: 0 0 10px; max-width: 70%; }
.ph-why-card p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.55; }
.ph-why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--grad-cta);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-cta);
}
.ph-why-icon svg { width: 28px; height: 28px; }

/* ---------- Gallery preview ---------- */
.ph-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.ph-gallery-tile {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  background: var(--line-2);
  cursor: pointer;
  transition: transform .25s;
}
.ph-gallery-tile.size-2 { grid-row: span 2; }
.ph-gallery-tile.size-wide { grid-column: span 2; }
.ph-gallery-tile:hover { transform: scale(1.02); }
.ph-gallery-tile img { width: 100%; height: 100%; object-fit: cover; }
.ph-gallery-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,11,20,.7));
  display: flex; align-items: flex-end;
  padding: 16px;
  color: #fff;
  font-weight: 700; font-size: 14px;
}
.ph-gallery-tile.ph-gallery-placeholder {
  display: grid; place-items: center;
  background: var(--grad-cool);
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 20px;
}
.ph-gallery-tile.ph-gallery-placeholder small {
  display: block;
  font-weight: 500;
  font-size: 11px;
  margin-top: 6px;
  opacity: .8;
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .ph-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .ph-gallery-tile.size-wide { grid-column: auto; }
}

/* ---------- Testimonials ---------- */
.ph-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .ph-testimonials { grid-template-columns: 1fr; } }
.ph-tm {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--line);
  position: relative;
}
.ph-tm-stars { color: #FFB300; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.ph-tm p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 18px;
}
.ph-tm-who { display: flex; align-items: center; gap: 12px; }
.ph-tm-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad-cta);
  display: grid; place-items: center;
  color: #fff; font-weight: 800;
  font-size: 14px;
}
.ph-tm-name { font-weight: 800; font-size: 14px; }
.ph-tm-meta { font-size: 12px; color: var(--muted); }

/* ---------- Blog preview ---------- */
.ph-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .ph-blog-grid { grid-template-columns: 1fr; } }
.ph-blog-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.ph-blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(10,11,20,.08); }
.ph-blog-cover {
  aspect-ratio: 16/9;
  background: var(--grad-cool);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 20px;
}
.ph-blog-body { padding: 22px; }
.ph-blog-tag { font-size: 11px; font-weight: 800; color: var(--brand); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.ph-blog-card h3 { font-size: 18px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.01em; line-height: 1.3; }
.ph-blog-meta { font-size: 13px; color: var(--muted); }

/* ---------- Big CTA banner ---------- */
.ph-cta-band {
  background: var(--grad-cta);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ph-cta-band h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 900; margin: 0 0 12px; }
.ph-cta-band p { font-size: 17px; opacity: .92; max-width: 580px; margin: 0 auto 26px; }
.ph-cta-band .ph-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ph-cta-band .ph-cta-actions a {
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
}
.ph-cta-band .ph-cta-actions .primary { background: #fff; color: var(--brand) !important; }
.ph-cta-band .ph-cta-actions .secondary { background: rgba(255,255,255,.18); color: #fff !important; border: 1px solid rgba(255,255,255,.3); }
@media (max-width: 700px) { .ph-cta-band { padding: 36px 22px; } }

/* ---------- Footer ---------- */
.ph-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
  margin-top: 80px;
}
.ph-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .ph-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .ph-footer-grid { grid-template-columns: 1fr; } }
.ph-footer h5 {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.ph-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ph-footer a { color: rgba(255,255,255,.7); font-size: 14px; transition: color .15s; }
.ph-footer a:hover { color: #fff; }
.ph-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-weight: 800; font-size: 20px; color: #fff; }
.ph-footer-brand .ph-brand-mark { width: 38px; height: 38px; }
.ph-footer-about { font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
.ph-footer-social { display: flex; gap: 10px; }
.ph-footer-social a.ph-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 6px 16px rgba(0,0,0,.18);
}
.ph-footer-social a.ph-social:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 1px 0 rgba(255,255,255,.12), 0 12px 24px rgba(0,0,0,.32);
}
.ph-footer-social a.ph-social svg { width: 28px; height: 28px; display: block; }
.ph-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
}
.ph-footer-bottom a:hover { color: #fff; }

/* === AUTO-APPENDED by build-pages.js — do not edit, will be overwritten === */

/* =========================================================
   2026-05 design-upgrade pass — animated banners, marquees,
   scroll progress, category-themed service heroes, mobile
   ========================================================= */

/* Honour the user's reduce-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0ms !important; animation-iteration-count: 1 !important; transition-duration: 0ms !important; scroll-behavior: auto !important; }
}

/* ── Top scroll-progress bar ── */
.ph-scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1000;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
  transform-origin: 0 50%; transform: scaleX(var(--p, 0));
  will-change: transform; transition: transform 80ms linear;
}

/* ── Promo marquee strip at very top (above utility bar) ── */
.ph-promo {
  background: linear-gradient(90deg, #0B0E14 0%, #1f1635 50%, #0B0E14 100%);
  color: #fff; font-size: 13px; font-weight: 500; letter-spacing: .02em;
  padding: 9px 0; overflow: hidden; position: relative;
  white-space: nowrap;
}
.ph-promo-track {
  display: inline-flex; flex-wrap: nowrap; gap: 48px;
  width: max-content; align-items: center; padding-left: 48px;
  will-change: transform; animation: ph-marquee 38s linear infinite;
}
.ph-promo-track > span { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ph-promo-track .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); display: inline-block; opacity: .85; flex-shrink: 0; }
.ph-promo:hover .ph-promo-track { animation-play-state: paused; }
@keyframes ph-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Animated gradient blobs behind heroes ── */
.ph-svc-hero { background: transparent !important; }
.ph-hero, .ph-svc-hero, [data-hero-bg] { position: relative; overflow: hidden; isolation: isolate; }
.ph-svc-hero::before {
  content: ""; position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 60% at 20% 30%, rgba(255,61,87,.22) 0%, transparent 60%),
    radial-gradient(50% 55% at 85% 20%, rgba(155,48,255,.22) 0%, transparent 60%),
    radial-gradient(40% 50% at 60% 100%, rgba(255,193,7,.16) 0%, transparent 60%);
  animation: ph-blob 22s ease-in-out infinite alternate;
}
.ph-svc-hero > .container { position: relative; z-index: 1; }
@keyframes ph-blob {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  50%  { transform: translate(20px,-15px) scale(1.05); opacity: .9; }
  100% { transform: translate(-15px,20px) scale(.97); opacity: 1; }
}

/* ── Category-themed service hero banners (override the generic blob) ── */
.ph-cat-apparel::before { background:
  radial-gradient(55% 60% at 20% 30%, rgba(236, 72, 153,.30) 0%, transparent 60%),
  radial-gradient(50% 55% at 85% 20%, rgba(167, 139, 250,.28) 0%, transparent 60%),
  radial-gradient(40% 50% at 60% 100%, rgba(255,193,7,.20) 0%, transparent 60%) !important; }
.ph-cat-print::before { background:
  radial-gradient(55% 60% at 20% 30%, rgba(56,189,248,.32) 0%, transparent 60%),
  radial-gradient(50% 55% at 85% 20%, rgba(99,102,241,.28) 0%, transparent 60%),
  radial-gradient(40% 50% at 60% 100%, rgba(34,211,238,.22) 0%, transparent 60%) !important; }
.ph-cat-signage::before { background:
  radial-gradient(55% 60% at 20% 30%, rgba(245,158,11,.32) 0%, transparent 60%),
  radial-gradient(50% 55% at 85% 20%, rgba(239,68,68,.26) 0%, transparent 60%),
  radial-gradient(40% 50% at 60% 100%, rgba(250,204,21,.20) 0%, transparent 60%) !important; }
.ph-cat-design::before { background:
  radial-gradient(55% 60% at 20% 30%, rgba(16,185,129,.32) 0%, transparent 60%),
  radial-gradient(50% 55% at 85% 20%, rgba(56,189,248,.26) 0%, transparent 60%),
  radial-gradient(40% 50% at 60% 100%, rgba(34,197,94,.20) 0%, transparent 60%) !important; }

/* Category-eyebrow tints — small but noticeable */
.ph-cat-apparel .ph-hero-eyebrow { background: linear-gradient(135deg, #ffe4ea, #fce7f3); color: #be123c; }
.ph-cat-print   .ph-hero-eyebrow { background: linear-gradient(135deg, #e0f2fe, #ede9fe); color: #1d4ed8; }
.ph-cat-signage .ph-hero-eyebrow { background: linear-gradient(135deg, #fef3c7, #fee2e2); color: #b45309; }
.ph-cat-design  .ph-hero-eyebrow { background: linear-gradient(135deg, #d1fae5, #cffafe); color: #047857; }

/* ── Client-logo trust strip → continuous marquee ── */
.ph-clients-marquee {
  overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  padding: 22px 0;
}
.ph-clients-marquee-track {
  display: flex; gap: 64px; align-items: center; width: max-content;
  animation: ph-marquee 40s linear infinite;
}
.ph-clients-marquee-track img { height: 56px; width: auto; object-fit: contain; filter: saturate(1.1); transition: transform .25s ease; flex-shrink: 0; }
.ph-clients-marquee-track img:hover { transform: scale(1.08); }
.ph-clients-marquee:hover .ph-clients-marquee-track { animation-play-state: paused; }
@media (max-width: 700px) { .ph-clients-marquee-track img { height: 40px; } .ph-clients-marquee-track { gap: 44px; animation-duration: 28s; } }

/* ── Card lift, glow + scale on hover (applies broadly) ── */
.ph-svc-card, .ph-blog-card, .ph-hero-tile, .ph-hub-group .ph-svc-card,
.tile-hover {
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, border-color .25s ease;
}
.ph-svc-card:hover, .ph-blog-card:hover, .ph-hero-tile:hover, .tile-hover:hover {
  transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(255,61,87,.18), 0 8px 16px rgba(10,11,20,.06);
}

/* Service icon — larger, gradient backdrop */
.ph-svc-card .ph-svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,61,87,.10), rgba(155,48,255,.10));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: transform .35s ease;
}
.ph-svc-card:hover .ph-svc-icon-wrap { transform: rotate(-4deg) scale(1.06); }
.ph-svc-card .ph-svc-icon-wrap svg { width: 26px; height: 26px; color: var(--brand); }

/* ── data-reveal: elements are always visible. We layer an optional fade-in
   only when JS has reliably added .is-revealed (no fill-mode tricks, so a
   stalled animation can never leave content invisible). ── */
@keyframes ph-reveal-up {
  0%   { opacity: .3; transform: translateY(16px); }
  100% { opacity: 1; transform: none; }
}
[data-reveal].is-revealed { animation: ph-reveal-up .55s cubic-bezier(.22,.61,.36,1) 1 normal forwards; }
[data-reveal][data-stagger="2"].is-revealed { animation-delay: .08s; }
[data-reveal][data-stagger="3"].is-revealed { animation-delay: .16s; }
[data-reveal][data-stagger="4"].is-revealed { animation-delay: .24s; }

/* ── Counter chip styling ── */
[data-count] { font-variant-numeric: tabular-nums; }

/* ── Section banner — used on the post-hero "Why" + "Process" strips ── */
.ph-banner-strip {
  background:
    linear-gradient(135deg, rgba(255,61,87,.06), rgba(155,48,255,.06)),
    linear-gradient(180deg, var(--bg) 0%, #fff 100%);
  padding: 60px 0; margin: 60px 0 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.ph-banner-strip::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 60% at 80% 40%, rgba(155,48,255,.10) 0%, transparent 60%);
  animation: ph-blob 30s ease-in-out infinite alternate;
}
.ph-banner-strip > * { position: relative; z-index: 1; }

/* ── Floating CTA pill that follows on scroll for service pages ── */
.ph-svc-float-cta {
  position: fixed; right: 18px; bottom: 86px; z-index: 90;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff; padding: 12px 18px; border-radius: 999px; font-weight: 700; font-size: 14px;
  box-shadow: 0 18px 36px rgba(255,61,87,.30), 0 6px 16px rgba(10,11,20,.12);
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  transform: translateY(80px); opacity: 0; transition: transform .35s cubic-bezier(.22,.61,.36,1), opacity .35s ease;
}
.ph-svc-float-cta.is-on { transform: translateY(0); opacity: 1; }
.ph-svc-float-cta:hover { transform: translateY(-3px) scale(1.03); }
@media (max-width: 700px) { .ph-svc-float-cta { right: 12px; bottom: 90px; padding: 10px 14px; font-size: 13px; } }

/* ── Mobile-specific tweaks ── */
@media (max-width: 760px) {
  .ph-hero h1 { font-size: clamp(34px, 9vw, 48px) !important; line-height: 1.05; }
  .ph-hero-tagline, .ph-lead { font-size: 16px; }
  .ph-hero-ctas { flex-direction: column; gap: 10px; }
  .ph-hero-ctas .ph-cta, .ph-hero-ctas .ph-cta-wa, .ph-hero-ctas .ph-cta-ghost { width: 100%; justify-content: center; }
  .ph-stats { gap: 24px; flex-wrap: wrap; }
  .ph-stats .stat { flex: 1 1 30%; min-width: 30%; }
  .ph-stats .stat .num { font-size: clamp(24px, 7vw, 34px); }
  .ph-services { grid-template-columns: 1fr !important; gap: 14px; }
  .ph-section { padding: 50px 0; }
  .ph-section-head h2 { font-size: clamp(26px, 7vw, 36px); }
  .ph-svc-hero-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .ph-svc-hero-grid .quick-facts { order: 2; }
}

/* Prose styling for service-detail & blog bodies */
.ph-prose { font-size: 17px; line-height: 1.75; color: var(--ink); max-width: 720px; }
.ph-prose-wide { max-width: 100%; }
.ph-prose > * { font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif !important; }
.ph-prose h2 { font-size: 28px; margin: 40px 0 14px; letter-spacing: -.015em; font-weight: 800; }
.ph-prose h2:first-child { margin-top: 0; }
.ph-prose h3 { font-size: 22px; margin: 32px 0 12px; letter-spacing: -.01em; font-weight: 800; }
.ph-prose h4 { font-size: 18px; margin: 24px 0 10px; font-weight: 700; }
.ph-prose p { margin: 0 0 18px; color: var(--ink); }
.ph-prose ul, .ph-prose ol { margin: 0 0 20px; padding-left: 22px; }
.ph-prose li { margin-bottom: 8px; }
.ph-prose strong, .ph-prose b { color: var(--ink); font-weight: 800; }
.ph-prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.ph-prose a:hover { color: var(--ink); }
.ph-prose blockquote {
  border-left: 4px solid var(--brand);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
  font-size: 19px;
  font-style: italic;
  color: var(--ink);
}
.ph-prose hr { border: 0; height: 1px; background: var(--line); margin: 36px 0; }
.ph-prose-figure {
  margin: 36px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 50px rgba(10,11,20,.10);
  background: var(--line-2);
  aspect-ratio: 16 / 9;
}
.ph-prose-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-prose-figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 22px 14px;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.75) 100%);
  font-weight: 500;
  letter-spacing: .01em;
}
@media (max-width: 880px) { .ph-prose-figure { margin: 28px 0; } }

/* Blog post cover hero (between header and body) */
.ph-blog-cover-hero {
  width: 100%;
  height: clamp(280px, 38vw, 460px);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--line-2);
  box-shadow: 0 24px 60px rgba(10,11,20,.12);
}
.ph-blog-cover-hero img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 700px) {
  .ph-blog-cover-hero { height: clamp(220px, 50vw, 320px); border-radius: var(--r-lg); }
}

/* Inline blog CTA after body */
.ph-blog-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
}
.ph-blog-cta h3 { color: #fff; font-size: 22px; margin: 0 0 6px; }
.ph-blog-cta p { color: rgba(255,255,255,.7); margin: 0 0 18px; font-size: 15px; }
.ph-blog-cta .ph-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ph-blog-cta .ph-cta { box-shadow: none; }

/* Form */
.ph-form { display: flex; flex-direction: column; gap: 16px; }
.ph-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ph-form label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); }
.ph-form input, .ph-form select, .ph-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.ph-form input:focus, .ph-form select:focus, .ph-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,61,87,.08);
}
.ph-form textarea { resize: vertical; min-height: 100px; }
@media (max-width: 700px) {
  .ph-form-grid { grid-template-columns: 1fr; }
  .ph-svc-hero-grid, .ph-svc-body-grid, .ph-contact-grid { grid-template-columns: 1fr !important; }
  .ph-svc-aside { position: static !important; }
}

/* Filter chips */
.ph-chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--line);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all .15s;
}
.ph-chip:hover { border-color: var(--brand); color: var(--brand); }
.ph-chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ===== About page ===== */
.ph-about-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.ph-about-hero h1 { font-size: clamp(36px, 5vw, 56px); }
.ph-about-hero-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px rgba(10,11,20,.18);
}
.ph-about-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-about-hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-radius: var(--r);
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(10,11,20,.18);
}
.ph-about-hero-badge strong { display: block; font-size: 22px; font-weight: 900; color: var(--ink); letter-spacing: -.01em; }
.ph-about-hero-badge small { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
@media (max-width: 900px) { .ph-about-hero { grid-template-columns: 1fr; gap: 36px; } .ph-about-hero-img { max-width: 460px; margin: 0 auto; } }

.ph-story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}
.ph-story-text p { font-size: 16px; line-height: 1.75; margin: 0 0 20px; color: var(--ink); }
.ph-story-text p strong { color: var(--brand); }
.ph-story-visual {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 100%;
  min-height: 480px;
}
.ph-story-visual img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: 0 18px 40px rgba(10,11,20,.12);
}
.ph-story-visual img:nth-child(1) { transform: translateX(20px); }
.ph-story-visual img:nth-child(2) { transform: translateX(-20px); }
@media (max-width: 900px) {
  .ph-story-grid { grid-template-columns: 1fr; gap: 30px; }
  .ph-story-visual { grid-template-rows: auto auto; min-height: 0; }
  .ph-story-visual img:nth-child(1), .ph-story-visual img:nth-child(2) { transform: none; }
}

/* Team grid (dark section) */
.ph-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .ph-team-grid { grid-template-columns: 1fr; } }
.ph-team-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .25s, border-color .25s;
}
.ph-team-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.18); }
.ph-team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 900; font-size: 22px;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  box-shadow: 0 12px 24px rgba(0,0,0,.3);
}
.ph-team-card h3 { color: #fff; font-size: 22px; margin: 0 0 6px; letter-spacing: -.01em; }
.ph-team-role { color: var(--brand-2); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 16px; }
.ph-team-bio { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.65; margin: 0 0 20px; }
.ph-team-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ph-team-tags span {
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.15); border-radius: 999px;
  color: rgba(255,255,255,.65);
}

/* Capabilities grid */
.ph-cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .ph-cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ph-cap-grid { grid-template-columns: 1fr; } }
.ph-cap-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px 22px;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  overflow: hidden;
}
.ph-cap-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(10,11,20,.08);
}
.ph-cap-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.ph-cap-card:hover::before { transform: scaleX(1); }
.ph-cap-num {
  font-size: 13px; font-weight: 900; color: var(--brand);
  letter-spacing: .08em; margin-bottom: 6px;
}
.ph-cap-card h3 { font-size: 17px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.01em; }
.ph-cap-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55; }

/* Promise grid */
.ph-promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .ph-promise-grid { grid-template-columns: 1fr; } }
.ph-promise {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid var(--line);
}
.ph-promise-check {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-cta);
  color: #fff;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 900;
  box-shadow: var(--shadow-cta);
}
.ph-promise-body { flex: 1; min-width: 0; }
.ph-promise h3 { font-size: 19px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.01em; }
.ph-promise p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.6; }

/* Service-areas card */
.ph-areas-card {
  background: linear-gradient(135deg, rgba(255,61,87,.06), rgba(122,59,255,.06));
  border-radius: var(--r-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--line);
}
.ph-areas-text h2 { margin: 12px 0 14px; }
.ph-areas-text p { font-size: 16px; color: var(--muted); line-height: 1.65; margin: 0; }
.ph-areas-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.ph-area-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  transition: all .15s;
}
.ph-area-chip:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.ph-area-chip-light { background: transparent; color: var(--muted); border-style: dashed; }
@media (max-width: 900px) { .ph-areas-card { grid-template-columns: 1fr; padding: 32px; } }

/* ===== Contact page enhancements ===== */
.ph-contact-quickrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .ph-contact-quickrow { grid-template-columns: 1fr; } }
.ph-contact-quick {
  position: relative;
  display: block;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 26px 28px;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  color: var(--ink);
  text-decoration: none;
}
.ph-contact-quick:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(10,11,20,.08); border-color: transparent; }
.ph-contact-quick-ic {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 16px;
}
.ph-contact-quick-ic svg { width: 24px; height: 24px; }
.ph-contact-quick-wa .ph-contact-quick-ic { background: var(--whatsapp); }
.ph-contact-quick-call .ph-contact-quick-ic { background: var(--grad-cta); box-shadow: var(--shadow-cta); }
.ph-contact-quick-visit .ph-contact-quick-ic { background: var(--ink); }
.ph-contact-quick strong { display: block; font-size: 18px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 4px; }
.ph-contact-quick small { display: block; color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.ph-contact-quick-num { display: block; font-weight: 800; font-size: 15px; color: var(--brand); }

/* Google Maps embed card */
.ph-map-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: clamp(320px, 40vw, 480px);
  box-shadow: 0 20px 50px rgba(10,11,20,.10);
  border: 1px solid var(--line);
}

/* FAQ accordion */
.ph-faq { display: flex; flex-direction: column; gap: 12px; }
.ph-faq-item {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 0;
  transition: box-shadow .2s, border-color .2s;
}
.ph-faq-item[open] { border-color: var(--brand); box-shadow: 0 12px 24px rgba(255,61,87,.08); }
.ph-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.01em;
  position: relative;
}
.ph-faq-item summary::-webkit-details-marker { display: none; }
.ph-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--brand);
  transition: transform .2s;
}
.ph-faq-item[open] summary::after { content: '–'; }
.ph-faq-item p { padding: 0 28px 24px; margin: 0; font-size: 15px; color: var(--muted); line-height: 1.65; }
.ph-faq-item p strong { color: var(--ink); }

/* === END AUTO-APPENDED === */
