/* Print Hub landing — blue shaded brand palette */

.ph-page {
  --ph-surface: #fafbfc;
  --ph-ink: #0f172a;
  --ph-muted: #5b6578;
  --ph-line-soft: rgba(15, 23, 42, 0.08);
  --ph-blue-deep: #0b2f4f;
  --ph-blue-mid: #145b88;
  --ph-blue-soft: #2a7eb1;
  --ph-cyan-soft: #53b5dd;
  --ph-blue-glow: #9adbf3;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: clip;
  overflow-y: hidden;
  position: relative;
  isolation: isolate;
  color: var(--ph-ink);
  background-color: transparent;
  animation: none;
}

/* Soft watercolor blobs — low contrast on light */
.ph-page::before,
.ph-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.55;
}

.ph-page::before {
  width: min(95vw, 900px);
  height: min(70vh, 620px);
  top: -18%;
  left: -20%;
  background: radial-gradient(closest-side, rgba(20, 184, 166, 0.2), rgba(45, 212, 191, 0.08) 42%, transparent 70%);
  animation: ph-ambient-drift 22s ease-in-out infinite;
  will-change: transform;
}

.ph-page::after {
  width: min(90vw, 820px);
  height: min(65vh, 560px);
  bottom: -28%;
  right: -28%;
  background: radial-gradient(closest-side, rgba(251, 113, 133, 0.14), rgba(251, 191, 36, 0.12) 48%, transparent 72%);
  opacity: 0.5;
  animation: ph-ambient-drift-reverse 26s ease-in-out infinite;
  will-change: transform;
}

.ph-page > section {
  position: relative;
  z-index: 1;
}

.section-space {
  padding: clamp(4rem, 8vw, 5.75rem) 0;
}

.section-space-sm {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

/* Last block before footer — tighter bottom so no huge gap */
.ph-section-last {
  padding-top: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

/* Native hash jumps (e.g. open link in new tab) — keep section title below floating nav */
.ph-page > section[id],
.ph-page#home {
  scroll-margin-top: calc(var(--ph-nav-h) + 8px);
}

.ph-soft-bg {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(241, 245, 249, 0.55) 100%);
}

.ph-services-band {
  background: transparent;
}

.ph-page .ph-section-head h2 {
  color: var(--ph-ink);
  letter-spacing: -0.03em;
}

.ph-page .ph-section-head .ph-section-sub {
  color: var(--ph-muted);
}

/* ——— Hero ——— */
.ph-hero {
  position: relative;
  padding: clamp(5.5rem, 12vw, 7.5rem) 0 clamp(3.5rem, 8vw, 5rem);
  isolation: isolate;
}

.ph-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(90% 65% at 85% 20%, rgba(20, 184, 166, 0.08), transparent 55%);
}

.ph-hero .ph-title {
  color: var(--ph-ink);
}

.ph-hero .ph-lead {
  color: var(--ph-muted);
}

.ph-hero .ph-hero-bullets {
  color: #334155;
}

.ph-hero .container {
  z-index: 2;
}

.ph-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(85% 70% at 50% 35%, #000 0%, transparent 78%);
  pointer-events: none;
  z-index: 0;
  animation: ph-grid-fade 10s ease-in-out infinite alternate;
}

.ph-hero-glow {
  position: absolute;
  width: min(420px, 85vw);
  height: min(420px, 85vw);
  right: -120px;
  top: -140px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.22) 0%, rgba(251, 191, 36, 0.12) 48%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ph-hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.55;
  z-index: 0;
  animation: ph-float-orb 10s ease-in-out infinite alternate;
}

.ph-hero-orb-1 {
  width: min(280px, 52vw);
  height: min(280px, 52vw);
  left: -90px;
  top: 120px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.35), rgba(20, 184, 166, 0));
}

.ph-hero-orb-2 {
  width: min(220px, 42vw);
  height: min(220px, 42vw);
  right: 14%;
  bottom: 8%;
  animation-delay: 1.5s;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.28), rgba(251, 113, 133, 0));
}

.ph-float {
  position: absolute;
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #14b8a6 0%, #0d9488 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 16px 36px rgba(15, 118, 110, 0.28),
    0 6px 14px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: ph-float-icon 7s ease-in-out infinite;
  pointer-events: none;
}

.ph-float i {
  font-size: 1.15rem;
}

.ph-float-1 {
  top: 18%;
  left: 6%;
  animation-delay: 0s;
}

.ph-float-2 {
  top: 42%;
  left: 3%;
  background: linear-gradient(145deg, #fb7185 0%, #f43f5e 100%);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 16px 36px rgba(244, 63, 94, 0.28),
    0 6px 14px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation-delay: 1.2s;
}

.ph-float-3 {
  bottom: 22%;
  right: 8%;
  background: linear-gradient(145deg, #fbbf24 0%, #f59e0b 100%);
  color: #422006;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 16px 36px rgba(217, 119, 6, 0.22),
    0 6px 14px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  animation-delay: 0.6s;
}

.ph-float-4 {
  top: 28%;
  right: 4%;
  background: linear-gradient(145deg, #5eead4 0%, #2dd4bf 100%);
  color: #0f172a;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 16px 36px rgba(13, 148, 136, 0.22),
    0 6px 14px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  animation-delay: 2s;
}

.ph-chip {
  display: inline-block;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.28);
  box-shadow: 0 2px 10px rgba(15, 118, 110, 0.08);
}

.ph-chip-warm {
  color: #9a3412;
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.95), rgba(255, 237, 213, 0.9));
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 2px 14px rgba(245, 158, 11, 0.12);
}

.ph-gradient-text {
  font-family: var(--ph-font-display, "Fraunces", Georgia, serif);
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(115deg, #0f766e 0%, #0d9488 35%, #ea580c 70%, #c2410c 100%);
  background-size: 160% 160%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ph-text-shimmer 12s ease infinite;
}

.ph-title {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4.6vw, 3.45rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ph-lead {
  color: #475569;
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.ph-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: #334155;
  font-weight: 600;
  font-size: 0.92rem;
}

.ph-hero-bullets i {
  color: #059669;
  margin-right: 0.35rem;
  filter: drop-shadow(0 1px 2px rgba(5, 150, 105, 0.35));
}

/* Mockup / hero visual — “stacked stamp + polaroid lip” (distinct from gradient pill) */
.ph-mockup {
  position: relative;
  z-index: 2;
  transform: rotate(-1.1deg);
  transform-origin: 55% 50%;
}

.ph-mockup-glow {
  position: absolute;
  inset: -10% -12% auto -18%;
  height: 75%;
  background:
    radial-gradient(ellipse 70% 55% at 70% 30%, rgba(251, 191, 36, 0.22), transparent 58%),
    radial-gradient(ellipse 55% 50% at 20% 60%, rgba(20, 184, 166, 0.2), transparent 55%);
  pointer-events: none;
}

.ph-mockup-frame {
  position: relative;
  padding: 12px 12px 26px;
  border-radius: 6px 8px 28px 10px;
  overflow: visible;
  background:
    linear-gradient(165deg, #f8fafc 0%, #ffffff 42%, #fffbeb 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    3px 3px 0 #0f766e,
    7px 7px 0 rgba(251, 191, 36, 0.95),
    11px 11px 0 rgba(251, 113, 133, 0.35),
    0 32px 60px rgba(15, 23, 42, 0.12);
}

.ph-mockup-inner {
  position: relative;
  border-radius: 4px 6px 18px 14px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.75),
    inset 0 -24px 48px rgba(15, 23, 42, 0.08);
}

.ph-mockup-img {
  width: 100%;
  display: block;
  min-height: 280px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 2px 4px 14px 10px;
  transform: scale(1.03);
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ph-mockup:hover .ph-mockup-img {
  transform: scale(1.07);
}

.ph-mockup-tape {
  position: absolute;
  z-index: 5;
  width: 56px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(253, 224, 71, 0.55), rgba(250, 250, 250, 0.65));
  border: 1px solid rgba(234, 179, 8, 0.35);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  pointer-events: none;
}

.ph-mockup-tape--tl {
  top: -6px;
  left: 18%;
  transform: rotate(-38deg);
}

.ph-mockup-tape--tr {
  top: -5px;
  right: 14%;
  transform: rotate(42deg);
}

.ph-mockup-fold {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 52px 52px 0;
  border-color: transparent #fb923c transparent transparent;
  z-index: 6;
  filter: drop-shadow(-3px 3px 0 rgba(15, 23, 42, 0.06));
  pointer-events: none;
}

.ph-mockup-perf {
  position: absolute;
  left: 8px;
  top: 22%;
  bottom: 26%;
  width: 8px;
  z-index: 4;
  border-radius: 999px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(148, 163, 184, 0.55) 0 3px,
    transparent 3px 7px
  );
  opacity: 0.7;
  pointer-events: none;
}

.ph-mockup-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 8;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ph-mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}

/* ——— Marquee ——— */
.ph-marquee {
  border-block: 1px solid var(--ph-line-soft);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 0.75rem 0;
}

.ph-marquee-inner {
  display: flex;
  width: max-content;
  animation: ph-marquee 36s linear infinite;
  will-change: transform;
}

.ph-marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2.5rem;
  padding-inline-end: 2.5rem;
}

.ph-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #334155;
  white-space: nowrap;
}

.ph-marquee-item i {
  color: #0f766e;
  filter: drop-shadow(0 1px 1px rgba(15, 23, 42, 0.12));
}

/* ——— Visual showcase — same canvas, soft colour wash (no hard “strip”) ——— */
.ph-visual-showcase {
  position: relative;
  padding-top: clamp(2.25rem, 5vw, 3.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(241, 245, 249, 0.9) 100%);
  animation: none;
  overflow: hidden;
}

.ph-vs-glow {
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(42% 48% at 22% 32%, rgba(251, 191, 36, 0.18), transparent 72%),
    radial-gradient(50% 52% at 86% 72%, rgba(45, 212, 191, 0.14), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.ph-visual-showcase .container {
  z-index: 1;
}

.ph-vs-row {
  --bs-gutter-x: 0.75rem;
  --bs-gutter-y: 0.75rem;
}

.ph-chip-light {
  color: #0f172a !important;
  background: rgba(15, 23, 42, 0.06) !important;
  border-color: rgba(15, 23, 42, 0.1) !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.ph-vs-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.ph-vs-title {
  margin: 0.75rem 0 0.5rem;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ph-ink);
}

.ph-vs-lead {
  margin: 0;
  color: var(--ph-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 600;
}

.ph-vs-lead strong {
  color: #0f766e;
  font-weight: 800;
}

.ph-vs-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: none;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.35), rgba(99, 102, 241, 0.25), rgba(251, 191, 36, 0.3));
  padding: 3px;
  box-shadow:
    8px 10px 0 rgba(20, 184, 166, 0.18),
    0 22px 48px rgba(15, 23, 42, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.ph-vs-cell--1 .ph-vs-card {
  border-radius: 1.5rem 2.75rem 1.75rem 2.25rem;
}

.ph-vs-cell--2 .ph-vs-card {
  border-radius: 2.5rem 1.25rem 2.25rem 1.5rem;
  background: linear-gradient(225deg, rgba(251, 113, 133, 0.4), rgba(129, 140, 248, 0.28), rgba(45, 212, 191, 0.25));
  box-shadow:
    -8px 12px 0 rgba(251, 113, 133, 0.2),
    0 22px 48px rgba(15, 23, 42, 0.1);
}

.ph-vs-cell--3 .ph-vs-card {
  border-radius: 2rem 2rem 3rem 1.25rem;
  background: linear-gradient(160deg, rgba(251, 191, 36, 0.45), rgba(249, 115, 22, 0.25), rgba(20, 184, 166, 0.28));
  box-shadow:
    10px -6px 0 rgba(251, 191, 36, 0.35),
    0 22px 48px rgba(15, 23, 42, 0.1);
}

.ph-vs-card:hover {
  transform: translateY(-5px);
  filter: saturate(1.05);
  box-shadow:
    10px 14px 0 rgba(20, 184, 166, 0.22),
    0 32px 64px rgba(15, 23, 42, 0.12);
}

.ph-vs-cell--2 .ph-vs-card:hover {
  box-shadow:
    -10px 16px 0 rgba(251, 113, 133, 0.22),
    0 32px 64px rgba(15, 23, 42, 0.12);
}

.ph-vs-cell--3 .ph-vs-card:hover {
  box-shadow:
    12px -8px 0 rgba(251, 191, 36, 0.32),
    0 32px 64px rgba(15, 23, 42, 0.12);
}

.ph-vs-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  min-height: 200px;
  background: #e2e8f0;
}

.ph-vs-cell--1 .ph-vs-img {
  border-radius: 1.35rem 2.55rem 1.45rem 2.1rem;
  clip-path: polygon(0% 5%, 5% 0%, 95% 0%, 100% 6%, 100% 94%, 95% 100%, 5% 100%, 0% 95%);
  object-position: center 42%;
}

.ph-vs-cell--2 .ph-vs-img {
  border-radius: 2.35rem 0.85rem 2rem 1.1rem;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 6% 100%, 0% 92%);
}

.ph-vs-cell--3 .ph-vs-img {
  border-radius: 1.85rem 1.85rem 2.85rem 0.95rem;
  clip-path: polygon(0% 3%, 3% 0%, 97% 0%, 100% 4%, 100% 97%, 97% 100%, 3% 100%, 0% 97%);
  object-position: center 48%;
}

.ph-vs-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 1.35rem 1.15rem 1.1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.55) 35%, rgba(15, 23, 42, 0.92) 100%);
  color: #fff;
}

.ph-vs-cap strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.ph-vs-cap span {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.92);
}

/* ——— Intro ——— */
.ph-intro-strip {
  background: transparent;
  padding-top: clamp(1.35rem, 2.8vw, 2.25rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.ph-intro-strip .ph-intro-title {
  color: var(--ph-ink);
}

.ph-intro-strip .ph-intro-copy {
  color: var(--ph-muted);
}

.ph-intro-strip .ph-chip {
  color: #0f766e;
  background: rgba(20, 184, 166, 0.12);
  border-color: rgba(20, 184, 166, 0.28);
}

.ph-intro-strip .ph-btn-ghost {
  border-color: rgba(15, 23, 42, 0.12);
  color: #0f172a !important;
  background: rgba(255, 255, 255, 0.85);
}

.ph-intro-strip .ph-btn-ghost:hover {
  background: rgba(241, 245, 249, 0.95);
  color: #0f172a !important;
}

.ph-intro-title {
  font-weight: 800;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
  line-height: 1.2;
}

.ph-intro-copy {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.ph-intro-visual {
  position: relative;
}

.ph-intro-photo-frame {
  position: relative;
  padding: 11px;
  border-radius: 3.5rem 1.35rem 2.25rem 2.75rem;
  background: conic-gradient(from 120deg at 30% 20%, #99f6e4, #fde68a, #fbcfe8, #a5b4fc, #99f6e4);
  box-shadow:
    11px 14px 0 rgba(15, 23, 42, 0.07),
    0 24px 52px rgba(15, 23, 42, 0.12);
  transform: rotate(-0.8deg);
}

.ph-intro-img {
  border-radius: 2.5rem 1.1rem 2rem 1.75rem;
  width: 100%;
  object-fit: cover;
  min-height: 260px;
  display: block;
  clip-path: polygon(0% 9%, 9% 0%, 91% 0%, 100% 10%, 100% 100%, 0% 100%);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.05) inset;
}

.ph-intro-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 280px;
  margin-left: auto;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--ph-line-soft);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.ph-intro-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.ph-intro-card span {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

/* ——— Section head ——— */
.ph-section-head h2 {
  margin: 0.6rem 0 0;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ph-section-sub {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

/* ——— Cards ——— */
.ph-card,
.ph-step-card,
.ph-contact-card {
  color: #334155;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  border: 1px solid var(--ph-line-soft);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.ph-card,
.ph-step-card {
  padding: 1.65rem 1.5rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.ph-card::before,
.ph-step-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  right: -48px;
  top: -48px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.16), rgba(20, 184, 166, 0));
  transition: transform 0.35s ease;
}

.ph-card-accent::before {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.28), rgba(251, 191, 36, 0));
}

.ph-card:hover,
.ph-step-card:hover,
.ph-model-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.1),
    0 12px 28px rgba(13, 148, 136, 0.12);
  border-color: rgba(20, 184, 166, 0.35);
}

.ph-card:hover::before,
.ph-step-card:hover::before {
  transform: scale(1.15);
}

.ph-card h3,
.ph-step-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.ph-card p,
.ph-step-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.96rem;
  line-height: 1.55;
}

.ph-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #0f766e;
  background: linear-gradient(145deg, #ccfbf1 0%, #e0f2fe 55%, #fff7ed 100%);
  border: 1px solid rgba(20, 184, 166, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.ph-card-accent .ph-icon {
  color: #c2410c;
  background: linear-gradient(145deg, #fef3c7, #fed7aa);
  border-color: rgba(245, 158, 11, 0.35);
}

.ph-card:hover .ph-icon,
.ph-step-card:hover .ph-icon {
  transform: rotate(-6deg) scale(1.06);
  box-shadow:
    0 12px 28px rgba(13, 148, 136, 0.22),
    0 4px 10px rgba(251, 191, 36, 0.18);
}

.ph-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.ph-step-no {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #64748b;
  font-weight: 800;
}

.ph-step-top i {
  color: #0f766e;
  font-size: 1.15rem;
  filter: drop-shadow(0 2px 6px rgba(20, 184, 166, 0.35));
}

.ph-model-card {
  min-height: 100%;
}

/* ——— Security card (image + trust grid) ——— */
.ph-security-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--ph-line-soft);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  max-width: 34rem;
  margin-inline-start: auto;
}

.ph-security-panel {
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  backdrop-filter: none;
  border-radius: 0;
  padding: 1.1rem 1.15rem 1.2rem;
  box-shadow: none;
  border: none;
  border-top: 1px solid var(--ph-line-soft);
  height: auto;
}

.ph-security-panel .ph-trust-item {
  background: rgba(241, 245, 249, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #0f172a;
}

.ph-security-panel .ph-trust-item span {
  color: #1e293b;
}

.ph-security-panel .row > [class*="col"] {
  min-width: 0;
}

.ph-security-panel .ph-trust-item:hover {
  background: #ffffff;
  border-color: rgba(20, 184, 166, 0.35);
}

.ph-trust-item {
  min-height: 100%;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 16px;
  transition: all 0.25s ease;
  overflow: hidden;
}

.ph-trust-item i {
  width: 40px;
  height: 40px;
  margin-top: 0.1rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #14b8a6 0%, #0f766e 55%, #ea580c 100%);
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.28);
  flex-shrink: 0;
  font-size: 1rem;
}

.ph-trust-item span {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.84rem;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.ph-security-panel .ph-trust-item {
  padding: 0.65rem 0.8rem;
  gap: 0.55rem;
  border-radius: 12px;
}

.ph-security-panel .ph-trust-item i {
  width: 34px;
  height: 34px;
  font-size: 0.85rem;
  border-radius: 10px;
  margin-top: 0.05rem;
}

.ph-security-panel .ph-trust-item span {
  font-size: 0.78rem;
  line-height: 1.35;
}

.ph-trust-item:hover {
  transform: translateY(-2px);
}

/* ——— Stats ——— */
.ph-stats-section {
  padding-top: 0;
}

.ph-stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  backdrop-filter: none;
  border: 1px solid var(--ph-line-soft);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

@media (min-width: 768px) {
  .ph-stats-bar {
    grid-template-columns: repeat(4, 1fr);
    padding: 1.75rem 2rem;
  }
}

.ph-stat-item {
  text-align: center;
  padding: 0.5rem;
}

.ph-stat-value {
  display: block;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
  background: linear-gradient(115deg, #0f766e 0%, #0d9488 40%, #ea580c 72%, #f59e0b 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ph-text-shimmer 14s ease infinite;
}

.ph-stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
}

/* ——— Testimonials ——— */
.ph-testimonial {
  margin: 0;
  height: 100%;
  padding: 1.5rem 1.4rem;
  color: #0f172a;
  background: #ffffff;
  backdrop-filter: none;
  border-radius: 20px;
  border: 1px solid var(--ph-line-soft);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ph-testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.ph-testimonial-quote {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
  font-weight: 600;
}

.ph-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ph-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #0f172a;
  background: linear-gradient(135deg, #ccfbf1 0%, #e0f2fe 100%);
  border: 1px solid rgba(20, 184, 166, 0.25);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

.ph-testimonial-name {
  display: block;
  font-style: normal;
  font-weight: 800;
  font-size: 0.92rem;
  color: #0f172a;
}

.ph-testimonial-role {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

/* ——— Buttons ——— */
.ph-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  border-radius: 999px;
  padding: 0.75rem 1.45rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.ph-btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 2px;
}

.ph-btn-primary {
  color: #fff !important;
  border: none;
  background: linear-gradient(115deg, #0f766e 0%, #14b8a6 38%, #ea580c 100%);
  background-size: 200% 200%;
  box-shadow:
    0 14px 36px rgba(15, 118, 110, 0.35),
    0 4px 12px rgba(234, 88, 12, 0.18);
  animation: ph-gradient-shift 9s ease infinite;
}

.ph-btn-primary:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow:
    0 20px 48px rgba(13, 148, 136, 0.38),
    0 6px 16px rgba(234, 88, 12, 0.22);
  filter: brightness(1.05);
}

.ph-btn-outline {
  border: 1px solid rgba(13, 148, 136, 0.35);
  color: #0f766e !important;
  background: rgba(255, 255, 255, 0.95);
}

.ph-btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(234, 88, 12, 0.45);
  color: #c2410c !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.ph-btn-ghost {
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #0f172a !important;
  background: rgba(241, 245, 249, 0.75);
}

.ph-btn-ghost:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.ph-btn-accent {
  color: #0f172a !important;
  border: none;
  background: linear-gradient(120deg, #fde68a 0%, #fbbf24 45%, #fb923c 100%);
  box-shadow:
    0 14px 34px rgba(245, 158, 11, 0.35),
    0 4px 12px rgba(15, 23, 42, 0.08);
}

.ph-btn-accent:hover {
  color: #0f172a !important;
  transform: translateY(-2px);
  box-shadow:
    0 20px 44px rgba(251, 146, 60, 0.38),
    0 6px 14px rgba(251, 191, 36, 0.28);
  filter: saturate(1.08);
}

.ph-btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
}

.ph-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
}

/* ——— CTA — soft glass card on same canvas ——— */
.ph-cta {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 28px;
  color: #f8fafc;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(90% 80% at 10% 0%, rgba(20, 184, 166, 0.35), transparent 55%),
    linear-gradient(135deg, #0f172a 0%, #134e4a 42%, #1e293b 100%);
  background-size: 24px 24px, 24px 24px, 100% 100%, 100% 100%;
  backdrop-filter: none;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border: 1px solid rgba(148, 163, 184, 0.25);
  position: relative;
  overflow: hidden;
}

.ph-cta::after {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 55%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(20, 184, 166, 0.2), transparent 62%);
  pointer-events: none;
}

.ph-cta .ph-chip {
  color: #042f2e;
  background: rgba(204, 251, 241, 0.95);
  border-color: rgba(204, 251, 241, 0.5);
}

.ph-cta h2 {
  margin: 0 0 0.5rem;
  font-weight: 800;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.ph-cta p {
  margin: 0;
  color: rgba(248, 250, 252, 0.92);
  max-width: 36rem;
  position: relative;
  z-index: 1;
}

.ph-cta-copy {
  position: relative;
  z-index: 1;
}

.ph-cta .d-flex {
  position: relative;
  z-index: 1;
}

/* ——— Contact — continuous page, no dividing line ——— */
.ph-contact {
  position: relative;
  background: transparent;
  border: none;
}

.ph-contact h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 0.65rem;
  color: var(--ph-ink);
}

.ph-contact .ph-chip {
  color: #0f766e;
  background: rgba(20, 184, 166, 0.12);
  border-color: rgba(20, 184, 166, 0.28);
}

.ph-contact-lead {
  color: var(--ph-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 34rem;
}

.ph-contact-card {
  padding: 1.5rem 1.35rem;
}

.ph-contact-card p {
  margin-bottom: 0.65rem;
  color: #334155;
  font-weight: 600;
}

.ph-contact-card i {
  color: #5b21b6;
  margin-right: 0.5rem;
  width: 1.25rem;
  text-align: center;
}

.ph-contact-card a {
  color: #4338ca;
  text-decoration: none;
  font-weight: 700;
}

.ph-contact-card a:hover {
  text-decoration: underline;
}

/* ——— Reveal on scroll ——— */
.reveal-up {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.75s cubic-bezier(0.2, 0.65, 0.22, 1), transform 0.75s cubic-bezier(0.2, 0.65, 0.22, 1);
}

.reveal-up.delay-1 {
  transition-delay: 0.12s;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-up:nth-child(2) {
  transition-delay: 0.06s;
}

.reveal-up:nth-child(3) {
  transition-delay: 0.12s;
}

.reveal-up:nth-child(4) {
  transition-delay: 0.18s;
}

.ph-tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ——— Keyframes ——— */
@keyframes ph-gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes ph-text-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes ph-float-orb {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-14px) translateX(8px);
  }
  100% {
    transform: translateY(6px) translateX(-6px);
  }
}

@keyframes ph-float-icon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ph-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes ph-ambient-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(6%, 4%) scale(1.06);
  }
  66% {
    transform: translate(2%, -5%) scale(0.97);
  }
}

@keyframes ph-ambient-drift-reverse {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(-5%, -6%) scale(1.04);
  }
  75% {
    transform: translate(-8%, 3%) scale(0.98);
  }
}

@keyframes ph-page-bg-drift {
  0%,
  100% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 14% 22%;
  }
  50% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 86% 78%;
  }
}

@keyframes ph-grid-fade {
  0% {
    opacity: 0.42;
  }
  100% {
    opacity: 0.62;
  }
}

/* ——— Hero decorative dot clusters ——— */
.ph-hero-deco {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.ph-dot-blob {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.55;
  background:
    radial-gradient(circle, rgba(20, 184, 166, 0.55) 2px, transparent 2.5px) 0 0 / 14px 14px,
    radial-gradient(circle, rgba(234, 88, 12, 0.35) 2px, transparent 2.5px) 7px 7px / 14px 14px;
}

.ph-dot-blob--1 {
  top: 12%;
  left: 4%;
  transform: rotate(-12deg);
}

.ph-dot-blob--2 {
  top: 58%;
  right: 6%;
  width: 90px;
  height: 90px;
  opacity: 0.45;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.5) 2px, transparent 2.5px) 0 0 / 12px 12px;
}

.ph-dot-blob--3 {
  bottom: 18%;
  left: 38%;
  width: 72px;
  height: 72px;
  opacity: 0.4;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.45) 2px, transparent 2.5px) 0 0 / 11px 11px;
}

/* ——— Highlights: floating stickers & dot accents ——— */
.ph-vs-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 48%, transparent 56%);
  opacity: 0.35;
  mix-blend-mode: soft-light;
}

.ph-vs-cell {
  position: relative;
  padding: 0.35rem 0.35rem 0;
}

.ph-vs-cell .ph-vs-card {
  margin: 0;
  overflow: hidden;
}

.ph-vs-sticker {
  position: absolute;
  top: -6px;
  right: 1.25rem;
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transform: rotate(10deg);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.ph-vs-sticker i {
  font-size: 1.2rem;
}

.ph-vs-cell--1 .ph-vs-sticker {
  background: linear-gradient(145deg, #14b8a6, #0f766e);
}

.ph-vs-cell--2 .ph-vs-sticker {
  background: linear-gradient(145deg, #fb7185, #e11d48);
}

.ph-vs-cell--3 .ph-vs-sticker {
  background: linear-gradient(145deg, #fbbf24, #ea580c);
  color: #422006;
}

.ph-vs-dots {
  position: absolute;
  z-index: 2;
  width: 56px;
  height: 72px;
  pointer-events: none;
  opacity: 0.65;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.2) 2px, transparent 2.5px) 0 0 / 10px 10px;
}

.ph-vs-dots--tl {
  top: 18%;
  left: 0.25rem;
}

.ph-vs-dots--br {
  bottom: 26%;
  right: 0.35rem;
  height: 56px;
  transform: rotate(90deg);
}

/* ——— About: dashed orbit + corner badges ——— */
.ph-intro-visual {
  position: relative;
  padding: 0.5rem;
}

.ph-intro-ring {
  position: absolute;
  inset: -4%;
  border-radius: 28px;
  border: 2px dashed rgba(20, 184, 166, 0.28);
  z-index: 0;
  transform: rotate(-2deg);
  pointer-events: none;
}

.ph-intro-visual .ph-intro-photo-frame .ph-intro-img {
  position: relative;
  z-index: 1;
}

.ph-intro-badge {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ph-intro-badge--tl {
  top: 0.75rem;
  left: 0.5rem;
  background: linear-gradient(145deg, #6366f1, #4338ca);
}

.ph-intro-badge--br {
  bottom: 4.5rem;
  right: 0.5rem;
  background: linear-gradient(145deg, #f97316, #ea580c);
}

/* ——— Services: mesh + “bento” cards ——— */
.ph-services-band {
  position: relative;
  overflow: hidden;
}

.ph-services-deco {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  pointer-events: none;
  background:
    radial-gradient(50% 45% at 15% 20%, rgba(20, 184, 166, 0.14), transparent 60%),
    radial-gradient(45% 40% at 90% 30%, rgba(251, 191, 36, 0.12), transparent 58%);
  z-index: 0;
}

.ph-services-band .container {
  z-index: 1;
}

.ph-services-band .ph-card {
  border-radius: 22px;
  padding-top: 1.85rem;
}

.ph-services-band .ph-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #14b8a6, #2dd4bf, #fbbf24, #fb7185);
  pointer-events: none;
  z-index: 1;
}

.ph-services-band .ph-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 1.35rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
}

/* ——— How it works: centered runway + step cubes ——— */
.ph-how-band {
  position: relative;
  overflow: hidden;
}

.ph-how-head-wrap {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 0.5rem;
}

.ph-how-head-wrap .ph-section-head {
  margin: 0 auto;
}

.ph-how-head-wrap .ph-chip {
  transform: rotate(-2.5deg);
  color: #7c2d12;
  background: linear-gradient(135deg, #ffedd5, #fed7aa);
  border-color: rgba(234, 88, 12, 0.28);
}

.ph-how-steps .ph-step-card {
  text-align: center;
  padding-top: 1.5rem;
  border-radius: 22px;
}

.ph-how-steps .ph-step-top {
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.ph-how-steps .ph-step-top i {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(145deg, #0f766e, #14b8a6);
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.28);
  filter: none;
}

.ph-how-steps .col-sm-6:nth-child(2) .ph-step-top i {
  background: linear-gradient(145deg, #fb7185, #e11d48);
}

.ph-how-steps .col-sm-6:nth-child(3) .ph-step-top i {
  background: linear-gradient(145deg, #475569, #334155);
}

.ph-how-steps .col-sm-6:nth-child(4) .ph-step-top i {
  background: linear-gradient(145deg, #f59e0b, #ea580c);
  color: #422006;
}

.ph-how-steps .ph-step-no {
  letter-spacing: 0.18em;
  color: #94a3b8;
}

/* ——— Security: split photo + panel ——— */
.ph-why-band {
  position: relative;
  overflow: hidden;
}

.ph-why-deco {
  position: absolute;
  inset: auto -15% -35% -15%;
  height: 55%;
  pointer-events: none;
  background: radial-gradient(50% 55% at 50% 0%, rgba(99, 102, 241, 0.08), transparent 65%);
  z-index: 0;
}

.ph-why-band .container {
  z-index: 1;
}

.ph-security-visual {
  min-height: clamp(140px, 16vw, 185px);
  border-radius: 0;
  clip-path: none;
  background:
    linear-gradient(145deg, rgba(11, 47, 79, 0.35), rgba(42, 126, 177, 0.2)),
    url("/images/landing/security-privacy.jpg") center / cover no-repeat;
  border: none;
  box-shadow: none;
}

.ph-trust-grid {
  --bs-gutter-x: 0.6rem;
  --bs-gutter-y: 0.6rem;
}

@media (min-width: 992px) {
  .ph-security-panel {
    padding: 1.15rem 1.25rem 1.3rem;
  }

  .ph-why-band .col-lg-5 {
    padding-inline-end: 1.5rem;
  }
}

@media (max-width: 575px) {
  .ph-trust-grid > .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ——— Partners: soft confetti + accent rail on cards ——— */
.ph-partners-band {
  position: relative;
  overflow: hidden;
}

.ph-partners-deco {
  position: absolute;
  inset: 10% -20% auto -20%;
  height: 60%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.1) 0, transparent 42%),
    radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.12) 0, transparent 40%);
  z-index: 0;
}

.ph-partners-band .container {
  z-index: 1;
}

.ph-partners-row .ph-card {
  position: relative;
  overflow: hidden;
}

.ph-partners-row .ph-card {
  padding-left: 1.85rem;
}

.ph-partners-row .ph-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #14b8a6, #fbbf24);
}

.ph-partners-row .col-md-6:nth-child(even) .ph-card::after {
  background: linear-gradient(180deg, #fb7185, #6366f1);
}

/* ——— Stats strip: ticker glow ——— */
.ph-proof-band {
  position: relative;
}

.ph-proof-deco {
  position: absolute;
  inset: -30% 20% auto 20%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(60% 70% at 50% 0%, rgba(20, 184, 166, 0.12), transparent 65%);
  z-index: 0;
}

.ph-proof-band .container {
  z-index: 1;
}

.ph-stats-bar {
  position: relative;
  box-shadow:
    0 0 0 1px rgba(20, 184, 166, 0.18),
    0 16px 40px rgba(15, 23, 42, 0.08);
}

/* ——— Testimonials: soft band + quote mark ——— */
.ph-stories-band {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(241, 245, 249, 0.95) 100%);
}

.ph-stories-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

.ph-stories-band .container {
  z-index: 1;
}

.ph-testimonial {
  position: relative;
  overflow: hidden;
}

.ph-testimonial::before {
  content: "“";
  position: absolute;
  top: 0.35rem;
  right: 1rem;
  font-family: var(--ph-font-display, "Fraunces", Georgia, serif);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(20, 184, 166, 0.12);
  pointer-events: none;
}

/* ——— Contact: map wash + gradient frame ——— */
.ph-contact-shell {
  position: relative;
  border-radius: 26px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.55), rgba(251, 191, 36, 0.4), rgba(99, 102, 241, 0.45));
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.ph-contact-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 25px;
  background: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1000&q=80") center / cover no-repeat;
  opacity: 0.16;
  z-index: 0;
}

.ph-contact-shell::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 25px;
  background: linear-gradient(185deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 252, 0.97) 45%, rgba(255, 255, 255, 0.98) 100%);
  z-index: 0;
}

.ph-contact-shell .ph-contact-card {
  position: relative;
  z-index: 1;
  margin: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.ph-contact-card i {
  color: #0f766e !important;
}

.ph-contact-card a {
  color: #0f766e !important;
}

.ph-contact-card a:hover {
  color: #c2410c !important;
}

/* ——— Marquee: pill chips ——— */
.ph-marquee-item {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--ph-line-soft);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}

/* ——— Kiosk map section ——— */
.ph-kiosk-map-band {
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

.ph-map-shell {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(83, 181, 221, 0.28);
  box-shadow:
    0 20px 46px rgba(15, 23, 42, 0.16),
    inset 0 0 0 1px rgba(83, 181, 221, 0.15);
  background: linear-gradient(145deg, rgba(11, 47, 79, 0.14), rgba(20, 91, 136, 0.1));
  backdrop-filter: blur(2px);
}

.ph-map-head,
.ph-map-foot {
  height: 34px;
  background: linear-gradient(90deg, rgba(11, 47, 79, 0.78), rgba(20, 91, 136, 0.65), rgba(236, 72, 153, 0.52));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ph-map-foot {
  color: transparent;
}

.ph-map-body {
  position: relative;
  min-height: 430px;
}

.ph-kiosk-map {
  min-height: 430px;
}

.ph-map-list {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 420;
  width: min(300px, calc(100% - 28px));
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
  padding: 0.85rem 0.75rem;
}

.ph-map-list h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  font-weight: 800;
  color: #0f172a;
}

.ph-map-list .form-control {
  border-color: rgba(15, 23, 42, 0.34);
  border-radius: 8px;
  font-size: 0.86rem;
  margin-bottom: 0.6rem;
  height: 34px;
}

.ph-map-list .form-control:focus {
  border-color: rgba(20, 91, 136, 0.65);
  box-shadow: 0 0 0 0.14rem rgba(83, 181, 221, 0.24);
}

.ph-location-items {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 340px;
  overflow: auto;
  display: grid;
  gap: 0.45rem;
}

.ph-location-items li {
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ph-location-items li strong {
  display: block;
  font-size: 0.86rem;
  color: #0f172a;
}

.ph-location-items li span {
  display: block;
  font-size: 0.76rem;
  color: #475569;
}

.ph-location-items li:hover,
.ph-location-items li.is-active {
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.64), rgba(191, 219, 254, 0.42));
  border-color: rgba(20, 91, 136, 0.36);
  transform: translateY(-1px);
}

.ph-location-empty {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #64748b;
}

.ph-map-pin {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #93c5fd 0%, #2a7eb1 50%, #145b88 100%);
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(42, 126, 177, 0.24), 0 6px 14px rgba(11, 47, 79, 0.3);
}

@media (max-width: 991px) {
  .ph-map-list {
    position: static;
    width: auto;
    margin: 0.75rem;
  }
}

/* === Blue shade theme overrides (user reference palette) === */
.ph-page::before {
  background: radial-gradient(closest-side, rgba(42, 126, 177, 0.2), rgba(83, 181, 221, 0.09) 42%, transparent 70%);
}

.ph-page::after {
  background: radial-gradient(closest-side, rgba(20, 91, 136, 0.16), rgba(154, 219, 243, 0.11) 48%, transparent 72%);
}

.ph-hero::after {
  background: radial-gradient(90% 65% at 85% 20%, rgba(42, 126, 177, 0.1), transparent 55%);
}

.ph-hero-glow {
  background: radial-gradient(circle, rgba(83, 181, 221, 0.22) 0%, rgba(20, 91, 136, 0.13) 48%, transparent 70%);
}

.ph-hero-orb-1 {
  background: radial-gradient(circle, rgba(83, 181, 221, 0.34), rgba(83, 181, 221, 0));
}

.ph-hero-orb-2 {
  background: radial-gradient(circle, rgba(42, 126, 177, 0.26), rgba(42, 126, 177, 0));
}

.ph-float,
.ph-float-2,
.ph-float-3,
.ph-float-4 {
  color: #fff;
  background: linear-gradient(145deg, #2a7eb1 0%, #145b88 58%, #0b2f4f 100%);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 16px 36px rgba(11, 47, 79, 0.34),
    0 6px 14px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.ph-chip,
.ph-intro-strip .ph-chip,
.ph-contact .ph-chip {
  color: #0b2f4f;
  background: rgba(154, 219, 243, 0.28);
  border-color: rgba(42, 126, 177, 0.4);
  box-shadow: 0 2px 10px rgba(20, 91, 136, 0.12);
}

.ph-chip-warm {
  color: #0b2f4f;
  background: linear-gradient(135deg, rgba(254, 240, 138, 0.92), rgba(252, 211, 77, 0.86));
  border-color: rgba(250, 204, 21, 0.42);
  box-shadow: 0 2px 14px rgba(217, 119, 6, 0.16);
}

.ph-gradient-text {
  display: inline;
  background: linear-gradient(115deg, #0b2f4f 0%, #145b88 35%, #2a7eb1 62%, #ec4899 82%, #facc15 100%);
  background-size: 180% 180%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.ph-hero-bullets i,
.ph-marquee-item i,
.ph-vs-lead strong,
.ph-step-top i,
.ph-contact-card i,
.ph-contact-card a {
  color: #145b88 !important;
}

.ph-mockup-glow {
  background:
    radial-gradient(ellipse 70% 55% at 70% 30%, rgba(83, 181, 221, 0.24), transparent 58%),
    radial-gradient(ellipse 55% 50% at 20% 60%, rgba(20, 91, 136, 0.2), transparent 55%);
}

.ph-mockup-frame {
  box-shadow:
    3px 3px 0 #145b88,
    7px 7px 0 rgba(83, 181, 221, 0.7),
    11px 11px 0 rgba(11, 47, 79, 0.25),
    0 32px 60px rgba(15, 23, 42, 0.12);
}

.ph-mockup-fold {
  border-color: transparent #2a7eb1 transparent transparent;
}

.ph-vs-card,
.ph-vs-cell--2 .ph-vs-card,
.ph-vs-cell--3 .ph-vs-card {
  background: linear-gradient(145deg, rgba(83, 181, 221, 0.35), rgba(42, 126, 177, 0.3), rgba(244, 114, 182, 0.22), rgba(250, 204, 21, 0.18));
}

.ph-vs-cell--1 .ph-vs-sticker,
.ph-vs-cell--2 .ph-vs-sticker,
.ph-vs-cell--3 .ph-vs-sticker {
  color: #fff;
  background: linear-gradient(145deg, #2a7eb1, #145b88 58%, #ec4899 100%);
}

.ph-dot-blob {
  background:
    radial-gradient(circle, rgba(83, 181, 221, 0.55) 2px, transparent 2.5px) 0 0 / 14px 14px,
    radial-gradient(circle, rgba(20, 91, 136, 0.35) 2px, transparent 2.5px) 7px 7px / 14px 14px;
}

.ph-dot-blob--2 {
  background: radial-gradient(circle, rgba(42, 126, 177, 0.48) 2px, transparent 2.5px) 0 0 / 12px 12px;
}

.ph-dot-blob--3 {
  background: radial-gradient(circle, rgba(11, 47, 79, 0.42) 2px, transparent 2.5px) 0 0 / 11px 11px;
}

.ph-icon,
.ph-card-accent .ph-icon,
.ph-avatar {
  color: #0b2f4f;
  background: linear-gradient(145deg, #d7f0fb 0%, #bde6f8 52%, #eaf7ff 100%);
  border-color: rgba(42, 126, 177, 0.28);
}

.ph-card::before,
.ph-step-card::before,
.ph-card-accent::before {
  background: radial-gradient(circle, rgba(83, 181, 221, 0.2), rgba(83, 181, 221, 0));
}

.ph-card:hover,
.ph-step-card:hover,
.ph-model-card:hover {
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.1),
    0 12px 28px rgba(20, 91, 136, 0.14);
  border-color: rgba(42, 126, 177, 0.36);
}

.ph-trust-item i {
  background: linear-gradient(135deg, #2a7eb1 0%, #145b88 55%, #0b2f4f 100%);
  box-shadow: 0 6px 16px rgba(20, 91, 136, 0.24);
}

.ph-stat-value {
  background: linear-gradient(115deg, #0b2f4f 0%, #145b88 38%, #2a7eb1 72%, #53b5dd 100%);
}

.ph-testimonial:hover {
  border-color: rgba(42, 126, 177, 0.35);
}

.ph-testimonial::before {
  color: rgba(42, 126, 177, 0.14);
}

.ph-btn-primary {
  background: linear-gradient(115deg, #0b2f4f 0%, #145b88 38%, #2a7eb1 72%, #ec4899 100%);
  box-shadow:
    0 14px 36px rgba(11, 47, 79, 0.35),
    0 4px 12px rgba(20, 91, 136, 0.2);
}

.ph-btn-primary:hover {
  box-shadow:
    0 20px 48px rgba(11, 47, 79, 0.38),
    0 6px 16px rgba(42, 126, 177, 0.24);
}

.ph-btn-outline {
  border-color: rgba(42, 126, 177, 0.42);
  color: #145b88 !important;
}

.ph-btn-outline:hover {
  border-color: rgba(11, 47, 79, 0.5);
  color: #0b2f4f !important;
}

.ph-btn-accent {
  color: #fff !important;
  background: linear-gradient(120deg, #facc15 0%, #f59e0b 35%, #2a7eb1 85%);
  box-shadow:
    0 14px 34px rgba(217, 119, 6, 0.3),
    0 4px 12px rgba(15, 23, 42, 0.08);
}

.ph-btn-accent:hover {
  color: #fff !important;
  box-shadow:
    0 20px 44px rgba(217, 119, 6, 0.36),
    0 6px 14px rgba(42, 126, 177, 0.24);
}

.ph-cta {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(90% 80% at 10% 0%, rgba(83, 181, 221, 0.32), transparent 55%),
    linear-gradient(135deg, #0b2f4f 0%, #145b88 42%, #0f2036 100%);
}

.ph-cta::after {
  background: radial-gradient(circle at center, rgba(83, 181, 221, 0.22), transparent 62%);
}

.ph-cta .ph-chip {
  color: #0b2f4f;
  background: rgba(215, 240, 251, 0.96);
  border-color: rgba(189, 230, 248, 0.6);
}

.ph-contact-shell {
  background: linear-gradient(135deg, rgba(83, 181, 221, 0.55), rgba(42, 126, 177, 0.45), rgba(11, 47, 79, 0.45));
}

/* Ensure stat numbers always render as text (not solid bars) */
.ph-stat-value {
  color: #145b88;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .ph-stat-value {
    background: linear-gradient(110deg, #0b2f4f 0%, #145b88 44%, #2a7eb1 76%, #ec4899 100%);
    background-size: 190% 190%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ph-page {
    animation: none !important;
  }

  .ph-marquee-inner,
  .ph-btn-primary,
  .ph-hero-orb,
  .ph-float,
  .ph-gradient-text,
  .ph-stat-value,
  .ph-page::before,
  .ph-page::after,
  .ph-hero-pattern {
    animation: none !important;
  }

  .ph-hero-pattern {
    opacity: 0.5;
  }

  .ph-gradient-text,
  .ph-stat-value {
    background-position: 0% 50% !important;
  }

  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .ph-mockup {
    transform: none !important;
  }

  .ph-mockup:hover .ph-mockup-img {
    transform: scale(1.03) !important;
  }
}

@media (max-width: 991px) {
  .ph-float {
    display: none;
  }

  .ph-hero {
    padding-top: 5rem;
  }

  .ph-mockup {
    transform: rotate(-0.5deg);
  }
}

@media (max-width: 767px) {
  .ph-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .ph-intro-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .ph-intro-badge--br {
    bottom: 1rem;
  }

  .ph-security-visual {
    min-height: 150px;
  }

  .ph-security-card {
    max-width: none;
    margin-inline-start: 0;
  }
}
