/* ==========================================================================
   Prayag Fab Solutions — Premium Industrial Design System
   ========================================================================== */

/* ---------- 1. Design Tokens ---------------------------------------------- */
:root {
  --color-primary: #0A2540;
  --color-primary-dark: #061a30;
  --color-secondary: #1A1A1A;
  --color-accent: #F97316;
  --color-accent-dark: #C2410C;
  --color-accent-soft: #FFF1E6;
  --color-bg: #FFFFFF;
  --color-surface: #F8FAFC;
  --color-surface-2: #EEF2F7;
  --color-border: #E5E7EB;
  --color-text: #1A1A1A;
  --color-text-muted: #2D3748;
  --color-text-light: #94A3B8;

  --font-heading: 'Poppins', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  --fs-h1: clamp(2.5rem, 3.5vw + 1rem, 4rem);
  --fs-h2: clamp(2rem, 1.5vw + 1.25rem, 2.75rem);
  --fs-h3: clamp(1.375rem, 0.5vw + 1.125rem, 1.75rem);
  --fs-h4: 1.25rem;
  --fs-body: 1rem;
  --fs-lead: 1.125rem;
  --fs-small: 0.875rem;

  --section-pad: 100px;
  --container-max: 1280px;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 16px 40px rgba(10, 37, 64, 0.12);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-fast: 0.2s;
  --t-base: 0.35s;
  --t-slow: 0.6s;
}

/* ---------- 2. Base resets ------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin: 0 0 1rem;
}
h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); font-weight: 700; }
h3 { font-size: var(--fs-h3); font-weight: 700; }
h4 { font-size: var(--fs-h4); font-weight: 600; }

p  { margin: 0 0 1rem; color: var(--color-text-muted); }

a {
  color: #E85A0B;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
a:hover { color: var(--color-accent-dark); }

.pf-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.pf-skip-link:focus { left: 0; }

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

::selection { background: var(--color-accent); color: #fff; }

.container, .container-xxl { max-width: var(--container-max); }

/* ---------- 3. Utilities --------------------------------------------------- */
.pf-section { padding: var(--section-pad) 0; position: relative; }
.pf-section--tight { padding: 72px 0; }
.pf-section--surface { background: var(--color-surface); }
.pf-section--dark { background: var(--color-primary); color: #fff; }
.pf-section--dark h1,
.pf-section--dark h2,
.pf-section--dark h3,
.pf-section--dark h4 { color: #fff; }
.pf-section--dark p { color: rgba(255,255,255,0.85); }
.pf-section--dark .pf-testi__name { color: #fff; }
.pf-section--dark .pf-testi__role { color: rgba(255,255,255,0.6); }

.pf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.pf-eyebrow::before {
  content: "";
  width: 28px; height: 2px; background: var(--color-accent);
}
.pf-eyebrow--light { color: #ffb388; }
.pf-eyebrow--light::before { background: #ffb388; }
.pf-eyebrow--center { justify-content: center; }

.pf-lead { font-size: var(--fs-lead); line-height: 1.7; color: var(--color-text-muted); }

.pf-section-head { max-width: 720px; margin: 0 auto clamp(40px, 4vw, 72px); text-align: center; }
.pf-section-head--left { text-align: left; margin-left: 0; }

.text-primary-ink { color: var(--color-primary) !important; }
.text-accent { color: var(--color-accent) !important; }
.text-muted-soft { color: var(--color-text-muted) !important; }
.bg-surface { background: var(--color-surface) !important; }
.bg-primary-ink { background: var(--color-primary) !important; }
.fw-800 { font-weight: 800; }

/* ---------- 4. Buttons ----------------------------------------------------- */
.pf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.pf-btn i { font-size: 1.05em; transition: transform var(--t-fast) var(--ease); }
.pf-btn:hover i { transform: translateX(4px); }

.pf-btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}
.pf-btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
}

.pf-btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.pf-btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.pf-btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.pf-btn--ghost-light:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.pf-btn--lg { padding: 18px 36px; font-size: 1rem; }
.pf-btn--sm { padding: 11px 20px; font-size: 0.8125rem; }

/* ---------- 5. Navbar ------------------------------------------------------ */
.pf-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  padding: 20px 0;
  background: transparent;
  transition: background var(--t-base) var(--ease),
              padding var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}
.pf-nav.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
}
.pf-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.pf-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.pf-nav.scrolled .pf-brand { color: var(--color-primary); }

/* Navbar text picks its color based on what's behind it:
     - Dark heroes (.pf-hero on home, .pf-hero-compact on most other pages) -> white
     - Light content (about's founder hero, or any page whose hero record isn't
       configured so hero-compact returns early) -> dark primary
     - Once scrolled past the hero, .pf-nav.scrolled rules take over with dark.
   Defaults (below) assume a LIGHT background, since that's the safe fallback
   when the admin hasn't populated a hero for a page. */
body:has(.pf-hero) .pf-nav:not(.scrolled) .pf-nav__link,
body:has(.pf-hero-compact) .pf-nav:not(.scrolled) .pf-nav__link {
  color: rgba(255, 255, 255, 0.9);
}
body:has(.pf-hero) .pf-nav:not(.scrolled) .pf-brand,
body:has(.pf-hero-compact) .pf-nav:not(.scrolled) .pf-brand,
body:has(.pf-hero) .pf-nav:not(.scrolled) .pf-nav__toggle,
body:has(.pf-hero-compact) .pf-nav:not(.scrolled) .pf-nav__toggle {
  color: #fff;
}
.pf-brand__mark {
  width: 42px; height: 42px;
  background: var(--color-accent);
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 6px 16px rgba(249,115,22,0.35);
}
.pf-brand--image { gap: 0; }
.pf-brand__img {
  max-height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.pf-footer .pf-brand__img { max-height: 56px; filter: brightness(1.05); }
.pf-brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.pf-nav__menu {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  align-items: center;
  gap: 36px;
}
.pf-nav__link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color var(--t-fast) var(--ease);
}
.pf-nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--t-base) var(--ease);
}
.pf-nav__link:hover::after,
.pf-nav__link.active::after { width: 100%; }
.pf-nav.scrolled .pf-nav__link { color: var(--color-primary); }
.pf-nav__link:hover,
.pf-nav__link.active { color: var(--color-accent); }

.pf-nav__actions { display: flex; align-items: center; gap: 16px; }

.pf-nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
}
.pf-nav.scrolled .pf-nav__toggle { color: var(--color-primary); }

.pf-has-dropdown { position: relative; }
/* Invisible strip that bridges the 14px visual gap between the nav link and
   the dropdown panel, so :hover stays alive while the cursor crosses. */
.pf-has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
}
.pf-nav__chev { font-size: 0.7rem; margin-left: 4px; transition: transform var(--t-fast) var(--ease); display: inline-block; }
.pf-has-dropdown:hover .pf-nav__chev,
.pf-has-dropdown.is-open .pf-nav__chev { transform: rotate(180deg); }

.pf-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 280px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(10,37,64,0.18), 0 2px 6px rgba(10,37,64,0.06);
  border: 1px solid rgba(10,37,64,0.05);
  list-style: none;
  padding: 10px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast) var(--ease);
  z-index: 200;
}
.pf-dropdown::before {
  content: "";
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
  border-top: 1px solid rgba(10,37,64,0.05);
  border-left: 1px solid rgba(10,37,64,0.05);
}
.pf-has-dropdown:hover .pf-dropdown,
.pf-has-dropdown:focus-within .pf-dropdown,
.pf-has-dropdown.is-open .pf-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.pf-dropdown__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 9px;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}
.pf-dropdown__link i { color: var(--color-accent); font-size: 1rem; width: 20px; text-align: center; }
.pf-dropdown__link:hover { background: #FFF7ED; color: var(--color-accent); }
.pf-dropdown__link--all { font-weight: 700; color: var(--color-accent); }
.pf-dropdown__divider { height: 1px; background: #F1F5F9; margin: 6px 4px; }

@media (max-width: 991.98px) {
  .pf-nav__menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 32px 32px;
    background: #fff;
    box-shadow: -20px 0 60px rgba(10,37,64,0.15);
    transition: right var(--t-base) var(--ease);
    gap: 8px;
    overflow-y: auto;
  }
  .pf-nav__menu.open { right: 0; }
  .pf-nav__link { color: var(--color-primary); width: 100%; padding: 14px 0; border-bottom: 1px solid var(--color-border); font-size: 1rem; }
  .pf-nav__actions { position: relative; z-index: 2; }
  .pf-nav__toggle { display: grid; place-items: center; position: relative; z-index: 2; }
  .pf-nav__cta-desktop { display: none; }
  .pf-has-dropdown { width: 100%; }
  .pf-has-dropdown::after { display: none; }
  .pf-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px 14px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-base) var(--ease);
  }
  .pf-dropdown::before { display: none; }
  .pf-has-dropdown.is-open .pf-dropdown { max-height: 2400px; }
  .pf-dropdown__link {
    padding: 12px 8px;
    border-bottom: 1px dashed var(--color-border);
    border-radius: 0;
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: .55rem;
    color: var(--color-primary);
    white-space: normal;
  }
  .pf-dropdown__link:last-child { border-bottom: 0; }
  .pf-dropdown__link i { color: var(--color-accent); font-size: 1rem; flex-shrink: 0; }
  .pf-nav__chev { margin-left: auto; }
}
@media (max-width: 576px) {
  .pf-brand__img { max-height: 38px; max-width: 160px; }
  .pf-brand__mark { width: 36px; height: 36px; font-size: 1.05rem; border-radius: 8px; }
  .pf-brand__name { font-size: 1.1rem; }
  .pf-nav { padding: 0 16px; }
  .pf-has-dropdown.is-open .pf-dropdown{transform:translateX(0%) translateY(0)}
}

/* ---------- 6. Hero -------------------------------------------------------- */
.pf-hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #0A2540 0%, #102F4F 50%, #0A2540 100%);
  color: #fff;
  overflow: hidden;
  perspective: 1400px;
}
.pf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(249,115,22,0.18), transparent 45%),
    radial-gradient(ellipse at 10% 90%, rgba(249,115,22,0.08), transparent 40%);
  pointer-events: none;
}
.pf-hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
  animation: pfGridDrift 40s linear infinite;
  transform-origin: center;
}
@keyframes pfGridDrift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 64px 64px, 64px 64px; }
}

/* --- animated color orbs --- */
.pf-hero__orbs { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.pf-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}
.pf-hero__orb--1 {
  width: 460px; height: 460px;
  top: -120px; left: -140px;
  background: radial-gradient(circle, #F97316 0%, transparent 70%);
  animation: pfOrb1 18s ease-in-out infinite alternate;
}
.pf-hero__orb--2 {
  width: 380px; height: 380px;
  right: -100px; top: 30%;
  background: radial-gradient(circle, #0EA5E9 0%, transparent 70%);
  opacity: 0.32;
  animation: pfOrb2 22s ease-in-out infinite alternate;
}
.pf-hero__orb--3 {
  width: 300px; height: 300px;
  bottom: -80px; left: 30%;
  background: radial-gradient(circle, #F97316 0%, transparent 70%);
  opacity: 0.28;
  animation: pfOrb3 26s ease-in-out infinite alternate;
}
@keyframes pfOrb1 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(80px,120px) scale(1.15); }
}
@keyframes pfOrb2 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-120px,-60px) scale(1.2); }
}
@keyframes pfOrb3 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(140px,-100px) scale(1.1); }
}

/* --- floating particles --- */
.pf-hero__particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.pf-hero__particles span {
  position: absolute;
  bottom: -20px;
  width: 4px; height: 4px;
  background: rgba(249,115,22,0.8);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(249,115,22,0.8);
  animation: pfParticle 14s linear infinite;
  opacity: 0;
}
.pf-hero__particles span:nth-child(1)  { left: 6%;  width: 3px; height: 3px; animation-delay: 0s;   animation-duration: 16s; }
.pf-hero__particles span:nth-child(2)  { left: 14%; width: 5px; height: 5px; animation-delay: -2s;  animation-duration: 18s; }
.pf-hero__particles span:nth-child(3)  { left: 22%; width: 2px; height: 2px; animation-delay: -4s;  animation-duration: 12s; background: rgba(255,255,255,0.7); box-shadow: 0 0 6px rgba(255,255,255,0.7); }
.pf-hero__particles span:nth-child(4)  { left: 30%; width: 4px; height: 4px; animation-delay: -6s;  animation-duration: 15s; }
.pf-hero__particles span:nth-child(5)  { left: 38%; width: 3px; height: 3px; animation-delay: -1s;  animation-duration: 19s; background: rgba(14,165,233,0.75); box-shadow: 0 0 6px rgba(14,165,233,0.75); }
.pf-hero__particles span:nth-child(6)  { left: 46%; width: 5px; height: 5px; animation-delay: -3s;  animation-duration: 17s; }
.pf-hero__particles span:nth-child(7)  { left: 54%; width: 2px; height: 2px; animation-delay: -5s;  animation-duration: 13s; background: rgba(255,255,255,0.7); box-shadow: 0 0 6px rgba(255,255,255,0.7); }
.pf-hero__particles span:nth-child(8)  { left: 62%; width: 4px; height: 4px; animation-delay: -7s;  animation-duration: 20s; }
.pf-hero__particles span:nth-child(9)  { left: 70%; width: 3px; height: 3px; animation-delay: -2s;  animation-duration: 14s; }
.pf-hero__particles span:nth-child(10) { left: 78%; width: 5px; height: 5px; animation-delay: -4s;  animation-duration: 18s; background: rgba(14,165,233,0.65); box-shadow: 0 0 6px rgba(14,165,233,0.65); }
.pf-hero__particles span:nth-child(11) { left: 86%; width: 3px; height: 3px; animation-delay: -6s;  animation-duration: 15s; }
.pf-hero__particles span:nth-child(12) { left: 92%; width: 2px; height: 2px; animation-delay: -1s;  animation-duration: 11s; background: rgba(255,255,255,0.7); box-shadow: 0 0 6px rgba(255,255,255,0.7); }
.pf-hero__particles span:nth-child(13) { left: 50%; width: 4px; height: 4px; animation-delay: -8s;  animation-duration: 22s; }
.pf-hero__particles span:nth-child(14) { left: 18%; width: 2px; height: 2px; animation-delay: -3s;  animation-duration: 12s; }
@keyframes pfParticle {
  0%   { transform: translateY(0) translateX(0) scale(0.6); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-55vh) translateX(30px) scale(1); }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-105vh) translateX(-20px) scale(0.5); opacity: 0; }
}

/* --- diagonal light beam --- */
.pf-hero__beam {
  position: absolute;
  top: -20%; left: 20%;
  width: 40%; height: 140%;
  background: linear-gradient(100deg, transparent 40%, rgba(255,255,255,0.035) 50%, transparent 60%);
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 1;
  animation: pfBeamSweep 9s ease-in-out infinite;
}
@keyframes pfBeamSweep {
  0%,100% { transform: translateX(-40%) rotate(18deg); opacity: 0; }
  40%,60% { opacity: 1; }
  50%     { transform: translateX(60%) rotate(18deg); }
}
.pf-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.pf-hero__title {
  color: #fff;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}
.pf-hero__title em {
  font-style: normal;
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}
.pf-hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 36px;
}
.pf-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.pf-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 560px;
}
.pf-hero__meta-num {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.pf-hero__meta-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pf-hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.pf-hero__visual--3d .pf-hero__visual-inner {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  transform-style: preserve-3d;
  animation: pfVisualFloat 8s ease-in-out infinite;
}
@keyframes pfVisualFloat {
  0%,100% { transform: translateY(0) rotate(0.001deg); }
  50%     { transform: translateY(-14px) rotate(0.001deg); }
}
.pf-hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s var(--ease);
}
.pf-hero__visual:hover img { transform: scale(1.08); }
.pf-hero__visual-inner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,37,64,0.6) 100%);
  pointer-events: none;
}
.pf-hero__visual-shine {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 3;
  animation: pfShine 6s ease-in-out infinite;
  animation-delay: 2s;
}
@keyframes pfShine {
  0%,70%,100% { transform: translateX(-100%); }
  85%         { transform: translateX(100%); }
}

/* --- floating chips on hero image --- */
.pf-hero__chip {
  position: absolute;
  background: rgba(10,37,64,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 4;
  transform: translateZ(60px);
}
.pf-hero__chip i { color: var(--color-accent); font-size: 0.85rem; }
.pf-hero__chip--top {
  top: 24px; right: -16px;
  animation: pfChipFloatA 5s ease-in-out infinite;
}
.pf-hero__chip--bottom {
  bottom: 110px; right: -12px;
  animation: pfChipFloatB 6s ease-in-out infinite;
}
@keyframes pfChipFloatA {
  0%,100% { transform: translateZ(60px) translateY(0); }
  50%     { transform: translateZ(60px) translateY(-10px); }
}
@keyframes pfChipFloatB {
  0%,100% { transform: translateZ(60px) translateY(0); }
  50%     { transform: translateZ(60px) translateY(8px); }
}
.pf-hero__badge {
  position: absolute;
  left: -24px; bottom: 40px;
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 16px;
  z-index: 3;
  transform: translateZ(80px);
}
.pf-hero__badge--float { animation: pfBadgeFloat 7s ease-in-out infinite; }
@keyframes pfBadgeFloat {
  0%,100% { transform: translateZ(80px) translateY(0) rotate(-1deg); }
  50%     { transform: translateZ(80px) translateY(-8px) rotate(1deg); }
}
.pf-hero__badge-icon {
  width: 48px; height: 48px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1.25rem;
}
.pf-hero__badge-num { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; line-height: 1; }
.pf-hero__badge-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); }

/* --- eyebrow pulse dot --- */
.pf-hero__eyebrow-anim { display: inline-flex; align-items: center; gap: 8px; }
.pf-eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0 rgba(249,115,22,0.7);
  animation: pfDotPulse 1.8s infinite;
}
@keyframes pfDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(249,115,22,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

/* --- title reveal --- */
.pf-hero__title--reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: pfTitleReveal 1s cubic-bezier(.2,.9,.3,1) 0.15s forwards;
}
.pf-hero__title--reveal em {
  display: inline-block;
  background: linear-gradient(90deg, #F97316 0%, #FB923C 50%, #F97316 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pfGradientShift 4s linear infinite;
}
@keyframes pfTitleReveal {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes pfGradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* --- primary button shimmer --- */
.pf-btn--shimmer { position: relative; overflow: hidden; }
.pf-btn--shimmer::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: pfBtnShimmer 3s ease-in-out infinite;
  animation-delay: 0.8s;
  pointer-events: none;
}
@keyframes pfBtnShimmer {
  0%, 60%, 100% { left: -60%; }
  30%           { left: 120%; }
}

/* --- scroll hint --- */
.pf-hero__scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: pfFadeIn 1s ease 1.2s both;
  pointer-events: none;
}
.pf-hero__scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  position: relative;
  overflow: hidden;
}
.pf-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -20px; left: 0;
  width: 100%; height: 20px;
  background: linear-gradient(to bottom, transparent, var(--color-accent));
  animation: pfScrollDrip 2s ease-in-out infinite;
}
@keyframes pfScrollDrip {
  0%   { top: -20px; }
  100% { top: 42px; }
}
@keyframes pfFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .pf-hero__grid-bg,
  .pf-hero__orb,
  .pf-hero__particles span,
  .pf-hero__beam,
  .pf-hero__visual-inner,
  .pf-hero__visual-shine,
  .pf-hero__chip,
  .pf-hero__badge--float,
  .pf-eyebrow__dot,
  .pf-hero__title--reveal,
  .pf-hero__title--reveal em,
  .pf-btn--shimmer::before,
  .pf-hero__scroll-line::after {
    animation: none !important;
  }
  .pf-hero__title--reveal { opacity: 1; transform: none; }
}

@media (max-width: 991.98px) {
  .pf-hero { padding: 140px 0 80px; min-height: auto; }
  .pf-hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .pf-hero__visual { max-width: 480px; margin: 0 auto; }
  .pf-hero__meta { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
}
@media (max-width: 767.98px) {
  .pf-hero { padding: 110px 0 60px; }
  .pf-hero__inner { gap: 40px; }
  .pf-hero__chip { display: none; }
  .pf-hero__orb--2 { display: none; }
  .pf-hero__scroll-hint { display: none; }
  .pf-hero__meta { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 576px) {
  .pf-hero { padding: 100px 0 48px; }
  .pf-hero__inner { gap: 32px; }
  .pf-hero__meta { grid-template-columns: 1fr; gap: 16px; }
}

/* Compact hero (inner pages) */
.pf-hero-compact {
  position: relative;
  padding: 180px 0 80px;
  background: linear-gradient(135deg, #0A2540 0%, #102F4F 100%);
  color: #fff;
  overflow: hidden;
}
.pf-hero-compact--has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pf-hero-compact--has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.82) 0%, rgba(16,47,79,0.72) 60%, rgba(249,115,22,0.35) 100%);
  z-index: 1;
}
.pf-hero-compact__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255, 129, 42, 0.16), #000000c7 55%);
  z-index: 1;
}
.pf-hero-compact::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(249,115,22,0.15), transparent 50%);
}
.pf-hero-compact__inner { position: relative; z-index: 2; max-width: 860px; }
.pf-hero-compact h1 { color: #fff; margin-bottom: 16px; }
.pf-hero-compact p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 720px; margin: 0; }

/* Blog hero enhancements */
.pf-hero-blog {
  padding-bottom: 100px;
}
.pf-hero-blog__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.pf-hero-blog__glow {
  position: absolute;
  top: -80px; right: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Scroll cue */
.pf-hero-blog__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.pf-hero-blog__scroll span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 999px;
  position: relative;
}
.pf-hero-blog__scroll span::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--color-accent);
  border-radius: 4px;
  animation: pf-scroll-dot 1.8s ease-in-out infinite;
}
@keyframes pf-scroll-dot {
  0%   { transform: translateY(0); opacity: 1; }
  50%  { transform: translateY(14px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}
@media (max-width: 767.98px) {
  .pf-hero-blog { padding-bottom: 80px; }
  .pf-hero-blog__scroll { display: none; }
}

.pf-breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.pf-breadcrumb a { color: rgba(255,255,255,0.8); }
.pf-breadcrumb a:hover { color: #fff; }
.pf-breadcrumb .sep { opacity: 0.5; }

/* ---------- 7. Trust Bar --------------------------------------------------- */
.pf-trust {
  padding: 40px 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.pf-trust__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 20px;
}
.pf-trust__row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.pf-trust__item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  opacity: 0.9;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.pf-trust__item:hover { opacity: 1; color: var(--color-primary); }

/* ---------- 8. Stats ------------------------------------------------------- */
.pf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
}
.pf-stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.pf-stat:last-child { border-right: none; }
.pf-stat__num {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 2vw + 1.5rem, 3.25rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}
.pf-stat__num .suffix { color: var(--color-accent); }
.pf-stat__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
@media (max-width: 767.98px) {
  .pf-stats { grid-template-columns: 1fr 1fr; }
  .pf-stat { padding: 36px 20px; }
  .pf-stat:nth-child(2) { border-right: none; }
  .pf-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ---------- 9. Service Cards ---------------------------------------------- */
.pf-service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
  height: 100%;
  overflow: hidden;
}
.pf-service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.pf-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pf-service-card:hover::before { transform: scaleX(1); }

.pf-service-card__num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
}
.pf-service-card__icon {
  width: 64px; height: 64px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.75rem;
  margin-bottom: 28px;
  transition: background var(--t-base), color var(--t-base);
}
.pf-service-card:hover .pf-service-card__icon {
  background: var(--color-accent);
  color: #fff;
}
.pf-service-card--dark { background: var(--color-primary); border-color: transparent; color: #fff; }
.pf-service-card--dark h3 { color: #fff; }
.pf-service-card--dark p { color: rgba(255,255,255,0.75); }
.pf-service-card--dark .pf-service-card__num { color: rgba(255,255,255,0.4); }
.pf-service-card--dark .pf-service-card__icon { background: rgba(255,255,255,0.1); color: #fff; }
.pf-service-card--dark:hover .pf-service-card__icon { background: var(--color-accent); color: #fff; }
.pf-service-card--dark .pf-service-card__link { color: var(--color-accent); }
.pf-service-card h3 { margin-bottom: 12px; }
.pf-service-card p { margin-bottom: 24px; font-size: 0.95rem; }
.pf-service-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pf-service-card__link i { transition: transform var(--t-fast); }
.pf-service-card__link:hover i { transform: translateX(6px); }

/* ---------- 10. Split / Zigzag -------------------------------------------- */
.pf-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.pf-split--media-right .pf-split__media { order: 2; }
.pf-split--media-right .pf-split__content { order: 1; }
@media (max-width: 991.98px) {
  .pf-split { grid-template-columns: 1fr; gap: 48px; }
  .pf-split--media-right .pf-split__media,
  .pf-split--media-right .pf-split__content { order: unset; }
}

.pf-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.pf-img-wrap--wide { aspect-ratio: 16/10; }
.pf-img-wrap--square { aspect-ratio: 1/1; }
.pf-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pf-img-wrap:hover img { transform: scale(1.06); }
.pf-img-wrap__tag {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(10,37,64,0.85);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.pf-check-list { list-style: none; padding: 0; margin: 28px 0; }
.pf-check-list li {
  position: relative;
  padding: 10px 0 10px 40px;
  color: var(--color-text);
  font-weight: 500;
}
.pf-check-list li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0; top: 10px;
  width: 26px; height: 26px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---------- 10b. Story section (homepage) --------------------------------- */
.pf-story {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #061a30 0%, #0A2540 45%, #0F2F4E 100%);
  color: #fff;
}

/* Blueprint grid overlay */
.pf-story__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 72%);
  pointer-events: none;
}

/* Ambient glow spots */
.pf-story__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.pf-story__glow--top {
  top: -140px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
}
.pf-story__glow--bottom {
  bottom: -120px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(14,165,233,.08) 0%, transparent 70%);
}

/* Main layout grid */
.pf-story__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- Visual / Image side ---- */
.pf-story__visual {
  position: relative;
}

/* Decorative offset frame behind the image */
.pf-story__frame {
  position: absolute;
  top: 24px; left: 24px; right: -16px; bottom: -16px;
  border: 2px solid rgba(249,115,22,.2);
  border-radius: 22px;
  pointer-events: none;
}

.pf-story__img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 8px 20px rgba(0,0,0,.2);
  z-index: 1;
}

/* Orange accent bar on left edge */
.pf-story__img::before {
  content: '';
  position: absolute;
  top: 28px; bottom: 28px; left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-accent), #FB923C 50%, transparent);
  border-radius: 0 4px 4px 0;
  z-index: 2;
}

.pf-story__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.pf-story__img:hover img { transform: scale(1.04); }

/* Floating badge */
.pf-story__badge {
  position: absolute;
  bottom: -18px; left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FB923C 100%);
  color: #fff;
  padding: 14px 24px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(249,115,22,.4);
  z-index: 2;
}
.pf-story__badge i {
  font-size: 1.15rem;
}

/* ---- Content side ---- */
.pf-story__content .pf-eyebrow {
  color: var(--color-accent);
}
.pf-story__content .pf-eyebrow::before {
  background: var(--color-accent);
}

.pf-story__content h2 {
  color: #fff;
  margin-bottom: 20px;
}

.pf-story__body {
  margin-bottom: 32px;
}
.pf-story__body p {
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  font-size: 1rem;
}

/* Checklist — glass-card style */
.pf-story__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.pf-story__check {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9375rem;
  color: rgba(255,255,255,.88);
  transition: background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.pf-story__check:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(249,115,22,.25);
  transform: translateX(6px);
}
.pf-story__check i {
  color: var(--color-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* CTA on dark bg */
.pf-story__content .pf-btn--primary {
  margin-top: 4px;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .pf-story__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .pf-story__visual {
    max-width: 480px;
    margin: 0 auto;
  }
  .pf-story__frame { top: 16px; left: 16px; right: -10px; bottom: -10px; }
}
@media (max-width: 576px) {
  .pf-story__img { aspect-ratio: 3/4; }
  .pf-story__badge { padding: 10px 18px; font-size: 0.8rem; bottom: -14px; left: 20px; }
  .pf-story__frame { display: none; }
  .pf-story__check { padding: 12px 16px; font-size: 0.875rem; }
}

/* ---------- 11. Why-choose grid ------------------------------------------- */

/* Section background */
.pf-why {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}
.pf-why__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,37,64,.04) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 70%);
  pointer-events: none;
}
.pf-why::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 70%);
  pointer-events: none;
}
.pf-why::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,37,64,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Feature card */
.pf-feature {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  height: 100%;
  overflow: hidden;
  transition:
    transform var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease);
  box-shadow: var(--shadow-sm);
}

/* Accent top bar — grows on hover */
.pf-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, #FB923C 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}

.pf-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10,37,64,.10), 0 4px 12px rgba(10,37,64,.06);
  border-color: transparent;
}
.pf-feature:hover::before { transform: scaleX(1); }

/* Decorative counter number */
.pf-feature__num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-surface);
  pointer-events: none;
  user-select: none;
  transition: color var(--t-base) var(--ease);
}
.pf-feature:hover .pf-feature__num { color: var(--color-accent-soft); }

/* Icon — gradient background */
.pf-feature__icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FB923C 100%);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(249,115,22,.25);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  position: relative;
  z-index: 1;
}
.pf-feature:hover .pf-feature__icon {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(249,115,22,.32);
}

.pf-feature h4 {
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: var(--fs-h4);
  position: relative;
  z-index: 1;
}
.pf-feature p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .pf-feature { padding: 28px 24px 24px; }
  .pf-feature__num { font-size: 2rem; top: 12px; right: 16px; }
}

/* ---------- 12. Project Mosaic / Cards ------------------------------------ */

/* Projects section (homepage) */
.pf-projects-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%);
  position: relative;
  overflow: hidden;
}
.pf-projects-section__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,37,64,.03) 1px, transparent 0);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  pointer-events: none;
}

.pf-projects-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.pf-projects-section__sub {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  margin: 12px 0 0;
  max-width: 480px;
}
.pf-projects-section__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pf-projects-section__stat {
  text-align: center;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.pf-projects-section__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.pf-projects-section__stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Client line on cards */
.pf-project-card__client {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
}
.pf-project-card__client i { font-size: 0.75rem; }

@media (max-width: 767.98px) {
  .pf-projects-section__head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
  .pf-projects-section__sub { font-size: 1rem; }
}
@media (max-width: 576px) {
  .pf-projects-section__head { margin-bottom: 28px; }
  .pf-projects-section__stat { padding: 10px 16px; }
  .pf-projects-section__stat-num { font-size: 1.5rem; }
}

.pf-project-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 24px;
}
.pf-project-mosaic > a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 991.98px) {
  .pf-project-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 240px); }
  .pf-project-mosaic > a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 575.98px) {
  .pf-project-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(5, 240px); }
  .pf-project-mosaic > a:nth-child(1) { grid-column: span 1; }
}

.pf-project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  height: 100%;
  min-height: 340px;
  color: #fff;
  text-decoration: none;
}
.pf-project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pf-project-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0) 40%, rgba(10,37,64,0.92) 100%);
  transition: background var(--t-base);
}
.pf-project-card:hover img { transform: scale(1.08); }
.pf-project-card:hover::after {
  background: linear-gradient(180deg, rgba(10,37,64,0.2) 0%, rgba(10,37,64,0.9) 100%);
}
.pf-project-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px;
  z-index: 2;
  color: #fff;
}
.pf-project-card__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--color-accent);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.pf-project-card h3 {
  color: #fff;
  font-size: 1.375rem;
  margin: 0;
  transform: translateY(10px);
  transition: transform 0.22s var(--ease);
}
.pf-project-card__arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 1.125rem;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: all var(--t-base) var(--ease);
  z-index: 2;
}
.pf-project-card:hover h3 { transform: translateY(0); }
.pf-project-card:hover .pf-project-card__arrow {
  opacity: 1; transform: translate(0, 0);
  background: var(--color-accent);
}

/* Project grid (3-col) */
.pf-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 991.98px) { .pf-project-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 575.98px) { .pf-project-grid { grid-template-columns: 1fr; } }

/* ---------- 13. Filter Pills ---------------------------------------------- */
.pf-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}
.pf-filter__btn {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.pf-filter__btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.pf-filter__btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.pf-filter__btn.active::after {
  content: "\2713";
  margin-left: 8px;
  font-weight: 700;
}

/* ---------- 14. Testimonials ---------------------------------------------- */
.pf-testi {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  position: relative;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.pf-testi:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pf-testi__mark {
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.25;
  position: absolute;
  top: 16px; right: 24px;
}
.pf-testi__stars { color: var(--color-accent); margin-bottom: 16px; font-size: 0.875rem; letter-spacing: 2px; }
.pf-testi__quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 28px;
}
.pf-testi__person { display: flex; align-items: center; gap: 14px; }
.pf-testi__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
}
.pf-testi__name { font-weight: 700; color: var(--color-primary); font-size: 0.9375rem; }
.pf-testi__role { font-size: 0.8125rem; color: var(--color-text-muted); }

/* ---------- 15. Blog cards ------------------------------------------------ */
.pf-blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.pf-blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pf-blog-card__media { aspect-ratio: 16/10; overflow: hidden; }
.pf-blog-card__media img { width:100%; height:100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.pf-blog-card:hover .pf-blog-card__media img { transform: scale(1.08); }
.pf-blog-card__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.pf-blog-card__meta {
  display: flex; gap: 14px; font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.pf-blog-card__meta .cat { color: var(--color-accent); font-weight: 600; }
.pf-blog-card h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 14px; }
.pf-blog-card h3 a { color: var(--color-primary); }
.pf-blog-card h3 a:hover { color: var(--color-accent); }
.pf-blog-card p { font-size: 0.9375rem; flex: 1; }
.pf-blog-card__link {
  font-size: 0.875rem; font-weight: 600;
  color: var(--color-primary); margin-top: auto; padding-top: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color var(--t-fast), gap var(--t-fast);
}
.pf-blog-card__link:hover { color: var(--color-accent); gap: 10px; }
.pf-blog-card__link i { font-size: 0.8rem; transition: transform var(--t-fast); }
.pf-blog-card__link:hover i { transform: translateX(2px); }

/* Featured blog */
.pf-featured-post {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.pf-featured-post:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pf-featured-post__media { overflow: hidden; height: 100%; min-height: 380px; }
.pf-featured-post__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pf-featured-post:hover .pf-featured-post__media img { transform: scale(1.06); }
.pf-featured-post__body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }

/* Badges row */
.pf-featured-post__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.pf-featured-post__badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
}
.pf-featured-post__badge i { font-size: 0.65rem; }
.pf-featured-post__badge--cat { background: var(--color-surface-2); color: var(--color-primary); }

.pf-featured-post__body h2 { font-size: var(--fs-h3); margin-bottom: 14px; line-height: 1.25; }
.pf-featured-post__body h2 a { color: var(--color-primary); text-decoration: none; }
.pf-featured-post__body h2 a:hover { color: var(--color-accent); }

.pf-featured-post__meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 0.8125rem; color: var(--color-text-muted);
  margin-top: 4px;
}
.pf-featured-post__meta span { display: inline-flex; align-items: center; gap: 5px; }
.pf-featured-post__meta i { font-size: 0.85rem; color: var(--color-accent); }

@media (max-width: 991.98px) {
  .pf-featured-post { grid-template-columns: 1fr; }
  .pf-featured-post__media { min-height: 280px; }
  .pf-featured-post__body { padding: 32px; }
}
@media (max-width: 576px) {
  .pf-featured-post__media { min-height: 220px; }
  .pf-featured-post__body { padding: 24px; }
  .pf-featured-post__body h2 { font-size: 1.25rem; }
  .pf-featured-post__meta { gap: 10px; font-size: 0.75rem; }
}

/* Blog grid section heading */
.pf-blog-grid-head {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-border);
}
.pf-blog-grid-head h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.125rem; margin: 0;
  color: var(--color-primary);
}
.pf-blog-grid-head h3 i { color: var(--color-accent); font-size: 1.1rem; }

/* Empty state */
.pf-blog-empty {
  text-align: center; padding: 64px 24px;
  color: var(--color-text-muted);
}
.pf-blog-empty i { font-size: 3rem; color: var(--color-border); display: block; margin-bottom: 12px; }
.pf-blog-empty p { margin: 0; font-size: 1rem; }

/* Sidebar */
.pf-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.pf-widget {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: box-shadow var(--t-base) var(--ease);
}
.pf-widget:hover { box-shadow: var(--shadow-sm); }
.pf-widget h4 {
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pf-widget h4 i { color: var(--color-accent); font-size: 1rem; }
.pf-widget ul { list-style: none; padding: 0; margin: 0; }

/* Categories */
.pf-widget--cats li { border-bottom: 1px solid var(--color-border); }
.pf-widget--cats li:last-child { border: none; }
.pf-widget--cats a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 8px;
  color: var(--color-text);
  font-size: 0.9375rem; font-weight: 500;
  border-radius: 8px;
  transition: all var(--t-fast) var(--ease);
}
.pf-widget--cats a:hover { color: var(--color-accent); background: #fff; padding-left: 14px; }
.pf-widget--cats__name { display: flex; align-items: center; gap: 4px; }
.pf-widget--cats__name i { font-size: 0.65rem; color: var(--color-text-light); transition: color var(--t-fast); }
.pf-widget--cats a:hover .pf-widget--cats__name i { color: var(--color-accent); }
.pf-widget--cats__count {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  min-width: 28px;
  text-align: center;
}

/* Recent posts */
.pf-widget--recent li {
  display: flex; gap: 14px; padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--t-fast);
}
.pf-widget--recent li:last-child { border: none; padding-bottom: 0; }
.pf-widget--recent img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease);
}
.pf-widget--recent li:hover img { transform: scale(1.05); }
.pf-widget--recent .date {
  font-size: 0.72rem; color: var(--color-text-muted);
  display: flex; align-items: center; gap: 4px;
  margin-top: 4px;
}
.pf-widget--recent .date i { font-size: 0.7rem; }
.pf-widget--recent a { color: var(--color-primary); font-size: 0.875rem; font-weight: 600; line-height: 1.4; }
.pf-widget--recent a:hover { color: var(--color-accent); }

/* Tags */
.pf-widget--tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pf-widget--tags a {
  font-size: 0.75rem;
  padding: 7px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #fff;
  transition: all var(--t-fast) var(--ease);
}
.pf-widget--tags a:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); transform: translateY(-2px); }

/* CTA widget */
.pf-widget--cta {
  background: linear-gradient(145deg, var(--color-primary) 0%, #0F2F4E 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-color: transparent;
}
.pf-widget--cta__glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.25) 0%, transparent 70%);
  pointer-events: none;
}
.pf-widget--cta__icon {
  font-size: 2.5rem;
  color: rgba(255,255,255,.12);
  display: block;
  margin-bottom: 4px;
}
.pf-widget--cta h4 { color: #fff; border-color: rgba(255,255,255,.2); justify-content: center; }
.pf-widget--cta p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 20px; }
.pf-widget--cta:hover { box-shadow: 0 12px 32px rgba(10,37,64,.3); }

/* ---------- 16. Article body --------------------------------------------- */
.pf-article { max-width: 760px; }
.pf-article p { font-size: 1.0625rem; line-height: 1.85; color: var(--color-text); margin-bottom: 22px; }
.pf-article h2 { font-size: 1.75rem; margin: 44px 0 16px; }
.pf-article h3 { font-size: 1.375rem; margin: 32px 0 14px; }
.pf-article img { border-radius: var(--radius-lg); margin: 28px 0; }
.pf-article blockquote {
  border-left: 4px solid var(--color-accent);
  padding: 16px 0 16px 28px;
  margin: 32px 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-primary);
  font-weight: 600;
}
.pf-article ul, .pf-article ol { padding-left: 24px; margin: 0 0 24px; }
.pf-article li { margin-bottom: 10px; color: var(--color-text); font-size: 1rem; }
.pf-article__dropcap::first-letter {
  font-family: var(--font-heading);
  float: left;
  font-size: 4.5rem;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--color-accent);
  font-weight: 800;
}
.pf-article__banner {
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.pf-article__banner img { width: 100%; height: 100%; object-fit: cover; }
.pf-article__meta {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.pf-article__meta .cat { background: var(--color-accent-soft); color: var(--color-accent); padding: 4px 12px; border-radius: 999px; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- 17. Forms ----------------------------------------------------- */
.pf-form .form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.pf-form .form-control,
.pf-form .form-select {
  height: 48px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  padding: 0 16px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  background: #fff;
}
.pf-form textarea.form-control { height: auto; min-height: 140px; padding: 14px 18px; resize: vertical; }
.pf-form .form-control:focus,
.pf-form .form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.15);
  outline: none;
}
.pf-form-success {
  display: none;
  padding: 20px 24px;
  background: #ECFDF5;
  border: 1px solid #10B981;
  color: #065F46;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-weight: 500;
}
.pf-form-success.visible { display: block; }

/* ---------- 18. Footer ---------------------------------------------------- */
.pf-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 96px;
}
.pf-footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.pf-footer p { color: rgba(255,255,255,0.65); font-size: 0.9375rem; }
.pf-footer ul { list-style: none; padding: 0; margin: 0; }
.pf-footer ul li { margin-bottom: 12px; }
.pf-footer a { color: rgba(255,255,255,0.7); font-size: 0.9375rem; }
.pf-footer a:hover { color: var(--color-accent); }
.pf-footer__info li { display: flex; gap: 12px; font-size: 0.875rem; }
.pf-footer__info i { color: var(--color-accent); font-size: 1rem; margin-top: 4px; }
.pf-footer__social { display: flex; gap: 10px; margin-top: 24px; }
.pf-footer__social a {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: #fff;
  transition: background var(--t-fast), transform var(--t-fast);
}
.pf-footer__social a:hover { background: var(--color-accent); transform: translateY(-2px); }
.pf-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  margin-top: 72px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.pf-footer__bottom a { color: rgba(255,255,255,0.5); font-size: 0.8125rem; }

/* ---------- 19. CTA Banner ------------------------------------------------ */
.pf-cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #102F4F 50%, var(--color-primary) 100%);
  color: #fff;
  overflow: hidden;
}
.pf-cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(249,115,22,0.25), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(249,115,22,0.12), transparent 40%);
}
.pf-cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent 70%);
  pointer-events: none;
}
.pf-cta-banner__inner {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
  flex-wrap: wrap;
}
.pf-cta-banner h2 { color: #fff; margin: 0; max-width: 640px; }
.pf-cta-banner p { color: rgba(255,255,255,0.78); margin: 10px 0 0; max-width: 520px; }
@media (max-width: 576px) {
  .pf-cta-banner { padding: 56px 0; }
  .pf-cta-banner__inner { gap: 24px; }
}

/* ---------- 20. Process steps -------------------------------------------- */
.pf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.pf-steps::before {
  content: ""; position: absolute;
  top: 30px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.pf-step { position: relative; z-index: 1; text-align: center; }
.pf-step__num {
  width: 60px; height: 60px;
  background: #fff;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
}
.pf-step h4 { margin-bottom: 8px; font-size: 1.0625rem; }
.pf-step p { font-size: 0.9375rem; margin: 0; }
@media (max-width: 767.98px) {
  .pf-steps { grid-template-columns: 1fr; gap: 20px; }
  .pf-steps::before { display: none; }
}

/* ---------- 21. Value / Mission cards ------------------------------------ */
.pf-value {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: left;
  border-top: 3px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.pf-value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pf-value__icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--color-primary);
  color: var(--color-accent);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

/* ---------- 22. Team ------------------------------------------------------ */
.pf-team-card {
  text-align: left;
  transition: transform var(--t-base);
}
.pf-team-card:hover { transform: translateY(-6px); }
.pf-team-card__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.pf-team-card__photo img { width:100%; height:100%; object-fit: cover; transition: transform 0.7s; }
.pf-team-card:hover .pf-team-card__photo img { transform: scale(1.06); }
.pf-team-card h4 { margin-bottom: 4px; }
.pf-team-card__role {
  font-size: 0.8125rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ---------- 23. Project gallery / page detail ----------------------------- */
.pf-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 575.98px) { .pf-gallery { grid-template-columns: 1fr; } }

.pf-meta-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 32px 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: -60px;
  position: relative;
  z-index: 3;
}
.pf-meta-strip__lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-text-muted); margin-bottom: 6px; }
.pf-meta-strip__val { font-family: var(--font-heading); font-weight: 700; font-size: 1.0625rem; color: var(--color-primary); }
@media (max-width: 767.98px) { .pf-meta-strip { grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px; } }

.pf-banner-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--color-primary);
}
.pf-banner-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.pf-banner-hero__inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 80px; color: #fff;
}
.pf-banner-hero h1 { color: #fff; max-width: 900px; }

.pf-outcome {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  position: relative;
}
.pf-outcome__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.pf-outcome h3 { font-size: 1.375rem; margin-bottom: 12px; }

/* ---------- 24. Map ------------------------------------------------------- */
.pf-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.pf-map iframe, .pf-map__placeholder { width: 100%; height: 100%; border: 0; display: block; }
.pf-map__placeholder {
  background: linear-gradient(135deg, #0A2540 0%, #102F4F 100%);
  display: grid; place-items: center;
  color: #fff; text-align: center; padding: 40px;
}
.pf-map__placeholder i { font-size: 3rem; color: var(--color-accent); margin-bottom: 12px; }

/* Contact info card */
.pf-info-card {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  height: 100%;
}
.pf-info-card h3 { color: #fff; margin-bottom: 28px; }
.pf-info-card ul { list-style: none; padding: 0; margin: 0 0 32px; }
.pf-info-card li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.pf-info-card li:last-child { border: none; }
.pf-info-card__icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  color: var(--color-accent);
  border-radius: 10px;
  display: grid; place-items: center; flex-shrink: 0;
  font-size: 1.125rem;
}
.pf-info-card__lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.pf-info-card__val { font-weight: 600; color: #fff; }

/* ---------- 25. Fade-in ---------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- 26. Pagination ------------------------------------------------ */
.pf-pagination {
  display: flex; justify-content: center; gap: 8px; margin-top: 64px;
}
.pf-pagination a, .pf-pagination span {
  width: 44px; height: 44px;
  border-radius: 8px;
  display: grid; place-items: center;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--t-fast);
  text-decoration: none;
}
.pf-pagination a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.pf-pagination .current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.pf-pagination .dots { border: none; }

/* ---------- 27. Responsive tweaks ----------------------------------------- */

/* ---- Tablet (≤768px) ---- */
@media (max-width: 767.98px) {
  :root { --section-pad: 72px; }
  .pf-section-head { margin-bottom: 36px; }

  /* Hero badge */
  .pf-hero__badge { left: 20px; bottom: 20px; padding: 14px 18px; }

  /* Inner-page hero */
  .pf-hero-compact { padding: 140px 0 60px; }

  /* Testimonials */
  .pf-testi { padding: 32px 28px; }
  .pf-testi__mark { font-size: 3rem; top: 12px; right: 18px; }
  .pf-testi__quote { font-size: 1rem; }

  /* Blog / featured post */
  .pf-featured-post__body { padding: 28px; }
  .pf-blog-card__body { padding: 22px; }

  /* Footer */
  .pf-footer { padding-top: 64px; }
  .pf-footer__bottom { margin-top: 40px; }

  /* CTA */
  .pf-cta-banner__inner { flex-direction: column; align-items: flex-start; }

  /* Values / mission */
  .pf-value { padding: 32px 24px; }
}

/* ---- Mobile (≤576px) ---- */
@media (max-width: 576px) {
  :root { --section-pad: 56px; }
  .pf-section-head { margin-bottom: 28px; }

  /* Inner-page hero */
  .pf-hero-compact { padding: 120px 0 48px; }
  .pf-hero-compact h1 { font-size: clamp(1.75rem, 5vw, 2.25rem); }
  .pf-hero-compact p { font-size: 1rem; }

  /* Stats */
  .pf-stat { padding: 28px 16px; }
  .pf-stat__label { font-size: 0.7rem; letter-spacing: 0.1em; }

  /* Project mosaic — reduce fixed row heights */
  .pf-project-mosaic { grid-template-rows: repeat(5, 200px); }
  .pf-project-card { min-height: 200px; }
  .pf-project-card__body { padding: 20px; }
  .pf-project-card h3 { font-size: 1.15rem; }

  /* Filter pills — bigger touch targets */
  .pf-filter { gap: 8px; margin-bottom: 40px; }
  .pf-filter__btn { padding: 12px 20px; font-size: 0.8125rem; min-height: 44px; }

  /* Testimonials */
  .pf-testi { padding: 28px 22px; }
  .pf-testi__mark { font-size: 2.5rem; }
  .pf-testi__quote { font-size: 0.9375rem; margin-bottom: 20px; }

  /* Blog cards */
  .pf-blog-card__body { padding: 20px; }
  .pf-blog-card h3 { font-size: 1.1rem; }
  .pf-blog-card__meta { gap: 8px; font-size: 0.7rem; flex-wrap: wrap; }

  /* Meta strip — single column */
  .pf-meta-strip { grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px; margin-top: -40px; }

  /* Contact / enquiry */
  .pf-contact-card,
  .pf-enquiry-card { padding: 24px 18px; }

  /* Legal pages */
  .pf-legal { padding: 24px 18px; }
  .pf-legal__body h2 { font-size: 1.15rem; }

  /* Process steps */
  .pf-step__num { width: 48px; height: 48px; font-size: 1rem; margin-bottom: 14px; }

  /* Values */
  .pf-value { padding: 28px 20px; }
  .pf-value__icon { width: 48px; height: 48px; font-size: 1.25rem; margin-bottom: 18px; }

  /* Footer */
  .pf-footer { padding-top: 48px; }
  .pf-footer__bottom { margin-top: 32px; flex-direction: column; text-align: center; }

  /* Split layout (about, service detail) */
  .pf-split { gap: 32px; }

  /* Banner hero (inner pages) */
  .pf-banner-hero { height: 50vh; min-height: 320px; }
}

/* ---- Extra small (≤360px — iPhone SE, etc.) ---- */
@media (max-width: 360px) {
  :root { --section-pad: 44px; }

  .pf-hero { padding: 90px 0 40px; }
  .pf-hero-compact { padding: 110px 0 40px; }

  .pf-stats { grid-template-columns: 1fr; }
  .pf-stat { padding: 24px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .pf-stat:last-child { border-bottom: none; }
  .pf-stat:nth-child(2) { border-right: none; }
  .pf-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }

  .pf-meta-strip { grid-template-columns: 1fr; }

  .pf-project-mosaic { grid-template-rows: repeat(5, 180px); }

  .pf-testi { padding: 24px 18px; }
  .pf-testi__mark { font-size: 2rem; }

  .pf-svc-card { padding: 20px 16px; }
  .pf-svc-card__watermark { font-size: 3.5rem; }
}

/* ============================================================
   Homepage "What We Do" — Services Grid (redesign)
   Scoped under .pf-svc-section so it does not affect other pages.
   ============================================================ */
.pf-svc-section { background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F8 100%); }
.pf-svc-section .pf-section-head h2 .pf-svc-accent {
  background: linear-gradient(90deg, #0A2540 0%, #F97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.pf-svc-grid { margin-top: 8px; }

.pf-svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 18px;
  padding: 36px 32px 32px;
  text-decoration: none;
  color: var(--color-primary);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.32s cubic-bezier(.2,.8,.2,1),
              border-color 0.32s ease;
  box-shadow: 0 1px 2px rgba(10,37,64,0.04);
}
/* Top accent bar — animates in on hover */
.pf-svc-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #F97316 0%, #FB923C 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  z-index: 2;
}
/* Soft radial backdrop in top-right that lights up on hover */
.pf-svc-card::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(249,115,22,0.10) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.pf-svc-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 24px 60px -20px rgba(10, 37, 64, 0.22),
              0 8px 20px -8px rgba(249, 115, 22, 0.18);
}
.pf-svc-card:hover::before { transform: scaleX(1); }
.pf-svc-card:hover::after { opacity: 1; }

/* All children must sit above the radial backdrop */
.pf-svc-card > * { position: relative; z-index: 1; }

/* Big watermark number behind the content */
.pf-svc-card__watermark {
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(10, 37, 64, 0.05);
  pointer-events: none;
  z-index: 0;
  transition: color 0.4s ease, transform 0.4s ease;
}
.pf-svc-card:hover .pf-svc-card__watermark {
  color: rgba(249, 115, 22, 0.10);
  transform: translateY(-2px);
}

.pf-svc-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

/* Icon: gradient-filled square with shadow */
.pf-svc-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.85rem;
  background: linear-gradient(135deg, #FFF4E8 0%, #FFE4CC 100%);
  color: #F97316;
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.12);
  transition: background 0.32s ease, color 0.32s ease,
              box-shadow 0.32s ease, transform 0.32s ease;
  flex-shrink: 0;
}
.pf-svc-card:hover .pf-svc-card__icon {
  background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
  color: #fff;
  box-shadow: 0 12px 24px -8px rgba(249, 115, 22, 0.55);
  transform: translateY(-2px) rotate(-3deg);
}

/* Tiny chip beside the icon */
.pf-svc-card__chip {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6B7A8F;
  background: #F1F5F9;
  padding: 6px 12px;
  border-radius: 99px;
  white-space: nowrap;
  transition: background 0.32s ease, color 0.32s ease;
}
.pf-svc-card:hover .pf-svc-card__chip {
  background: #FFF4E8;
  color: #C2410C;
}

.pf-svc-card__title {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: #0A2540;
  margin: 0 0 12px;
  transition: color 0.32s ease;
}
.pf-svc-card:hover .pf-svc-card__title { color: #C2410C; }

.pf-svc-card__body {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4B5C72;
  margin: 0 0 28px;
  flex-grow: 1;
}

.pf-svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0A2540;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 37, 64, 0.08);
  transition: color 0.32s ease, gap 0.32s ease;
}
.pf-svc-card__cta i {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #F1F5F9;
  font-size: 0.85rem;
  transition: background 0.32s ease, color 0.32s ease, transform 0.32s ease;
}
.pf-svc-card:hover .pf-svc-card__cta { color: #F97316; gap: 14px; }
.pf-svc-card:hover .pf-svc-card__cta i {
  background: #F97316;
  color: #fff;
  transform: translateX(4px);
}

/* Dark variant — "Need something custom?" */
.pf-svc-card--dark {
  background: linear-gradient(160deg, #0A2540 0%, #0F2F4E 100%);
  border-color: transparent;
  color: #fff;
}
.pf-svc-card--dark::before {
  background: linear-gradient(90deg, #F97316 0%, #FFB876 100%);
  transform: scaleX(1);
}
.pf-svc-card--dark::after {
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
  opacity: 1;
}
.pf-svc-card--dark .pf-svc-card__watermark { color: rgba(255,255,255,0.06); }
.pf-svc-card--dark .pf-svc-card__icon {
  background: rgba(255,255,255,0.08);
  color: #FFB876;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
}
.pf-svc-card--dark .pf-svc-card__chip {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}
.pf-svc-card--dark .pf-svc-card__title { color: #fff; }
.pf-svc-card--dark .pf-svc-card__body { color: rgba(255,255,255,0.72); }
.pf-svc-card--dark .pf-svc-card__cta {
  color: #FFB876;
  border-top-color: rgba(255,255,255,0.10);
}
.pf-svc-card--dark .pf-svc-card__cta i {
  background: rgba(249,115,22,0.20);
  color: #FFB876;
}
.pf-svc-card--dark:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px -16px rgba(10, 37, 64, 0.45),
              0 0 0 1px rgba(249, 115, 22, 0.25);
}
.pf-svc-card--dark:hover .pf-svc-card__icon {
  background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
  color: #fff;
  box-shadow: 0 14px 28px -8px rgba(249, 115, 22, 0.55);
}
.pf-svc-card--dark:hover .pf-svc-card__title { color: #fff; }
.pf-svc-card--dark:hover .pf-svc-card__cta { color: #fff; }
.pf-svc-card--dark:hover .pf-svc-card__cta i { background: #F97316; color: #fff; }

@media (max-width: 575.98px) {
  .pf-svc-card { padding: 24px 20px; }
  .pf-svc-card__watermark { font-size: 4.25rem; top: 14px; right: 18px; }
  .pf-svc-card__icon { width: 56px; height: 56px; font-size: 1.55rem; border-radius: 14px; }
  .pf-svc-card__title { font-size: 1.2rem; }
}

/* ==========================================================================
   Contact page — Information card + Enquiry card (screenshot-matched)
   ========================================================================== */

.pf-contact-card,
.pf-enquiry-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 32px -12px rgba(10, 37, 64, 0.10);
  padding: 40px 36px;
  height: 100%;
}

.pf-contact-card__head,
.pf-enquiry-card__head { margin-bottom: 28px; }

.pf-contact-card__title,
.pf-enquiry-card__title {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.pf-contact-card__subtitle,
.pf-enquiry-card__subtitle {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---- Contact list ---- */
.pf-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pf-contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pf-contact-list__icon {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  font-size: 1.125rem;
}
.pf-contact-list__body { flex: 1; min-width: 0; }
.pf-contact-list__label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}
.pf-contact-list__value {
  font-size: 0.9375rem;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.55;
  word-break: break-word;
}
.pf-contact-list__value a {
  color: var(--color-primary);
}
.pf-contact-list__value a:hover { color: var(--color-accent); }

/* ---- Clock strip ---- */
.pf-clock-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.pf-clock {
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF2F7 100%);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 14px;
}
.pf-clock__label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}
.pf-clock__time {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.pf-contact-card__note {
  margin: 14px 0 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ---- Find Us ---- */
.pf-find-us {
  margin-top: 4px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}
.pf-find-us__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
  flex-wrap: wrap;
}
.pf-find-us__label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pf-find-us__label i { color: var(--color-accent); }
.pf-find-us__open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  padding: 6px 12px;
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  transition: background var(--t-fast), color var(--t-fast);
}
.pf-find-us__open:hover {
  background: var(--color-accent);
  color: #fff;
}
.pf-find-us__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 220px;
}
.pf-find-us__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.95);
}

.pf-contact-card__social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.pf-contact-card__social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--color-surface);
  color: var(--color-primary);
  display: grid; place-items: center;
  font-size: 1rem;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.pf-contact-card__social a:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Enquiry form tweaks ---- */
.pf-form--enquiry .form-label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}
.pf-req { color: var(--color-accent); margin-left: 2px; }

.pf-btn--block {
  width: 100%;
  padding: 16px 28px;
  font-size: 1rem;
}

.pf-enquiry-card__foot {
  margin: 6px 0 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pf-enquiry-card__foot i { color: #16a34a; margin-top: 2px; }
.pf-enquiry-card__foot a { color: var(--color-primary); font-weight: 600; text-decoration: underline; }
.pf-enquiry-card__foot a:hover { color: var(--color-accent); }

@media (max-width: 767.98px) {
  .pf-contact-card,
  .pf-enquiry-card { padding: 28px 22px; }
  .pf-contact-card__title,
  .pf-enquiry-card__title { font-size: 1.375rem; }
  .pf-find-us__map { height: 180px; }
}

/* ==========================================================================
   Legal pages (Privacy / Terms / T&C)
   ========================================================================== */
.pf-legal {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: 0 10px 32px -12px rgba(10, 37, 64, 0.08);
}
.pf-legal__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.pf-legal__meta .pf-eyebrow { margin-bottom: 0; }
.pf-legal__updated {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.pf-legal__body h2 {
  font-size: 1.375rem;
  color: var(--color-primary);
  margin: 36px 0 12px;
  padding-top: 8px;
  border-top: 2px solid var(--color-accent-soft);
  padding-top: 16px;
}
.pf-legal__body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.pf-legal__body h3 {
  font-size: 1.125rem;
  color: var(--color-primary);
  margin: 24px 0 10px;
}
.pf-legal__body p,
.pf-legal__body li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}
.pf-legal__body ul,
.pf-legal__body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.pf-legal__body li { margin-bottom: 6px; }
.pf-legal__body strong { color: var(--color-primary); }
.pf-legal__body a { color: var(--color-accent-dark); text-decoration: underline; }
.pf-legal__body a:hover { color: var(--color-primary); }

@media (max-width: 767.98px) {
  .pf-legal { padding: 28px 22px; }
  .pf-legal__body h2 { font-size: 1.25rem; margin-top: 28px; }
}

/* ---------- WhatsApp floating button -------------------------------------- */
.pf-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4), 0 2px 6px rgba(0,0,0,.12);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  animation: pf-wa-enter 0.6s var(--ease) 1.5s both;
}
.pf-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.5), 0 4px 10px rgba(0,0,0,.15);
}
.pf-whatsapp:active { transform: scale(0.95); }

/* Pulse ring */
.pf-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: pf-wa-pulse 2.5s ease-out infinite;
}

@keyframes pf-wa-enter {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes pf-wa-pulse {
  0%   { transform: scale(1); opacity: .6; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 576px) {
  .pf-whatsapp { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .pf-whatsapp svg { width: 24px; height: 24px; }
}

@media print { .pf-whatsapp { display: none; } }

/* ==========================================================================
   Gallery — Album Cards, Masonry Grid, Filter, Lightbox
   ========================================================================== */

/* ── Album strip heading ─────────────────────────────────────── */
.pf-gallery-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
.pf-gallery-strip-head__title {
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.pf-gallery-strip-head__count {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  color: var(--color-text-light);
}

/* ── Album cards row ─────────────────────────────────────────── */
.pf-gallery-albums {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  padding: 2px 0;
}

.pf-album-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: box-shadow var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.pf-album-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pf-album-card--active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px var(--color-accent), var(--shadow-md);
}

.pf-album-card__thumb {
  width: 100%;
  height: 130px;
  background: var(--color-surface-2) center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}
.pf-album-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,37,64,.45) 100%);
  pointer-events: none;
}
.pf-album-card__thumb--all {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1E4976 50%, var(--color-accent) 100%);
  color: rgba(255,255,255,.8);
}
.pf-album-card__thumb--all::after { display: none; }

.pf-album-card__body {
  padding: 11px 13px 13px;
}
.pf-album-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .84rem;
  color: var(--color-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pf-album-card__count {
  font-size: .71rem;
  color: var(--color-text-light);
  margin-top: 3px;
  font-weight: 500;
}

/* ── Filter pills ────────────────────────────────────────────── */
.pf-gallery-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.pf-gallery-filter-wrap__count {
  font-size: .8rem;
  color: var(--color-text-light);
  font-weight: 500;
  white-space: nowrap;
}
.pf-gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}
.pf-gallery-filter__btn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--color-border);
  background: transparent;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.pf-gallery-filter__btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-soft);
}
.pf-gallery-filter__btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249,115,22,.3);
}

/* ── Masonry grid ────────────────────────────────────────────── */
.pf-masonry {
  columns: 4;
  column-gap: 14px;
}
.pf-masonry__item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.pf-masonry__inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
}
.pf-masonry__inner img {
  width: 100%;
  display: block;
  transition: transform 0.45s var(--ease), opacity .35s ease;
  opacity: 0;
}
.pf-masonry__inner img.pf-img-loaded {
  opacity: 1;
}
.pf-masonry__item:hover .pf-masonry__inner img {
  transform: scale(1.06);
}

/* persistent bottom gradient — visible all the time */
.pf-masonry__inner::after {
  content: '';
  position: absolute;
  inset: 60% 0 0 0;
  background: linear-gradient(to bottom, transparent, rgba(10,37,64,.55));
  pointer-events: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: opacity var(--t-fast) var(--ease);
}

.pf-masonry__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
  color: #fff;
  font-size: 1.8rem;
  z-index: 1;
}
.pf-masonry__overlay span {
  font-size: .78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-top: 6px;
  text-align: center;
  padding: 0 12px;
  line-height: 1.3;
}
.pf-masonry__item:hover .pf-masonry__overlay {
  opacity: 1;
}

.pf-masonry__album-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(10,37,64,.72);
  color: #fff;
  font-size: .67rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
  transition: opacity var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  opacity: .85;
  transform: translateY(2px);
}
.pf-masonry__item:hover .pf-masonry__album-tag {
  opacity: 1;
  transform: translateY(0);
}

/* ── Gallery empty state ─────────────────────────────────────── */
.pf-gallery-empty-state {
  text-align: center;
  padding: 5rem 1.5rem 6rem;
}
.pf-gallery-empty-state__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 22px;
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-text-light);
}
.pf-gallery-empty-state h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 .6rem;
}
.pf-gallery-empty-state p {
  color: var(--color-text-light);
  font-size: .95rem;
  max-width: 380px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

@media (max-width: 1199px) { .pf-masonry { columns: 3; } }
@media (max-width: 767px)  { .pf-masonry { columns: 2; } }
@media (max-width: 479px)  { .pf-masonry { columns: 1; } }
@media (max-width: 767px)  {
  .pf-gallery-albums { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
@media (max-width: 479px)  {
  .pf-gallery-albums { grid-template-columns: repeat(2, 1fr); }
  .pf-album-card__thumb { height: 100px; }
}

/* ── Lightbox ────────────────────────────────────────────────── */
.pf-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 24, 0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.pf-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.pf-lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
.pf-lightbox__img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  transition: opacity .22s var(--ease);
}
.pf-lightbox__img.pf-lb-loading {
  opacity: .25;
}
.pf-lightbox__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.pf-lightbox__caption {
  color: rgba(255,255,255,.9);
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 500;
}
.pf-lightbox__album {
  color: var(--color-accent);
  font-size: .78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pf-lightbox__counter {
  color: rgba(255,255,255,.38);
  font-size: .75rem;
}
.pf-lightbox__hint {
  display: none;
  color: rgba(255,255,255,.22);
  font-size: .68rem;
  letter-spacing: .06em;
  margin-top: 10px;
}

.pf-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-lightbox__close:hover { background: rgba(255,255,255,.22); transform: scale(1.1); }

.pf-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease),
              transform .2s var(--ease),
              border-color var(--t-fast) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.pf-lightbox__nav:hover {
  background: rgba(249,115,22,.75);
  border-color: rgba(249,115,22,.5);
  transform: translateY(-50%) scale(1.1);
}
.pf-lightbox__nav--prev { left: 20px; }
.pf-lightbox__nav--next { right: 20px; }

@media (max-width: 576px) {
  .pf-lightbox__nav { width: 38px; height: 38px; font-size: .9rem; }
  .pf-lightbox__nav--prev { left: 8px; }
  .pf-lightbox__nav--next { right: 8px; }
}
@media (min-width: 768px) {
  .pf-lightbox__hint { display: block; }
}

/* ── Admin Gallery Album Cards ───────────────────────────────── */
.admin-gallery-albums {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 4px;
}
.admin-gallery-album-card {
  background: var(--admin-surface, #fff);
  border: 1px solid var(--admin-border, #E5E7EB);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10,37,64,.05);
  transition: box-shadow .2s ease, transform .2s ease;
}
.admin-gallery-album-card:hover {
  box-shadow: 0 6px 20px rgba(10,37,64,.1);
  transform: translateY(-2px);
}
.admin-gallery-album-card__thumb {
  width: 100%;
  height: 150px;
  background: #EEF2F7 center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #94A3B8;
  position: relative;
}
.admin-gallery-album-card__count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(10,37,64,.75);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.admin-gallery-album-card__hidden {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .8rem;
  padding: 3px 8px;
  border-radius: 6px;
}
.admin-gallery-album-card__body {
  padding: 14px 16px 16px;
}
.admin-gallery-album-card__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  color: #0A2540;
  margin-bottom: 4px;
}
.admin-gallery-album-card__desc {
  font-size: .78rem;
  color: #64748B;
  margin-bottom: 12px;
  line-height: 1.4;
}
.admin-gallery-album-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Admin Image List ────────────────────────────────────────── */
.admin-gallery-img-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.admin-gallery-img-row {
  display: grid;
  grid-template-columns: 28px 70px 1fr 1fr 40px;
  gap: 10px;
  align-items: center;
  background: var(--admin-surface-alt, #F8FAFC);
  border: 1px solid var(--admin-border, #E5E7EB);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: grab;
}
.admin-gallery-img-row:active { cursor: grabbing; }
.admin-gallery-img-row__drag { color: #94A3B8; font-size: 1.1rem; cursor: grab; }
.admin-gallery-img-row__preview {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  background: #EEF2F7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #94A3B8;
  flex-shrink: 0;
}
.admin-gallery-img-row__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Service Detail: Checklist ───────────────────────────────── */
.pf-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.pf-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .95rem;
  color: #374151;
  line-height: 1.5;
}
.pf-checklist li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: #F97316;
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ── Service Detail: Full-width Overview Body ────────────────── */
.pf-overview-body {
  max-width: 860px;
  margin: 0 auto;
}
.pf-overview-body > p:first-child {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.pf-overview-body p {
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.pf-overview-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1E293B;
  margin: 2.25rem 0 .6rem;
  padding-bottom: .35rem;
  border-bottom: 2px solid #F1F5F9;
}
.pf-overview-body ul {
  padding-left: 1.35rem;
  margin-bottom: 1.25rem;
}
.pf-overview-body ul li {
  color: #374151;
  line-height: 1.7;
  margin-bottom: .5rem;
}
.pf-overview-body ul li strong {
  color: #1E293B;
  font-weight: 600;
}

/* ── Admin Bulk Upload Zone ──────────────────────────────────── */
.admin-gallery-bulk-zone {
  border: 2px dashed var(--admin-border, #E5E7EB);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 16px;
  color: #64748B;
  background: #F8FAFC;
}

/* ══════════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE — PREMIUM UI ADDITIONS
   ══════════════════════════════════════════════════════════════ */

/* ── Stats Ribbon ────────────────────────────────────────────── */
.pf-hero-stats {
  position: relative;
  z-index: 10;
  margin-top: -48px;
  padding-bottom: 0;
}
.pf-hero-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px rgba(10, 37, 64, 0.14);
  overflow: hidden;
}
.pf-stat-card {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--color-border);
  transition: background var(--t-base);
}
.pf-stat-card:last-child { border-right: none; }
.pf-stat-card:hover { background: var(--color-surface); }
.pf-stat-card__value {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 6px;
}
.pf-stat-card__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 767.98px) {
  .pf-hero-stats { margin-top: -32px; }
  .pf-hero-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .pf-stat-card:nth-child(2) { border-right: none; }
  .pf-stat-card:nth-child(1),
  .pf-stat-card:nth-child(2) { border-bottom: 1px solid var(--color-border); }
  .pf-stat-card { padding: 24px 16px; }
}
@media (max-width: 479.98px) {
  .pf-hero-stats { margin-top: -24px; }
  .pf-hero-stats__grid { grid-template-columns: 1fr 1fr; }
}

/* ── Overview Section Top Spacing (accounts for stats ribbon) ─ */
.pf-section--overview { padding-top: 80px; }
@media (max-width: 767.98px) { .pf-section--overview { padding-top: 60px; } }

/* ── Badge Overlay on Images ─────────────────────────────────── */
.pf-img-wrap { position: relative; }
.pf-badge-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  pointer-events: none;
}

/* ── Lead text inside overview split ────────────────────────── */
.pf-lead-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ── Two-column checklist on desktop ────────────────────────── */
.pf-checklist--two-col {
  columns: 1;
}
@media (min-width: 576px) {
  .pf-checklist--two-col { columns: 2; column-gap: 1.5rem; }
  .pf-checklist--two-col li { break-inside: avoid; }
}

/* ── Section Head Sub-line ───────────────────────────────────── */
.pf-section-head__sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

/* ── Process Section ─────────────────────────────────────────── */
.pf-section--process { background: var(--color-bg); }

.pf-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  font-size: 1.375rem;
  margin: 0 auto 12px;
  transition: background var(--t-base), color var(--t-base);
}
.pf-step:hover .pf-step__icon {
  background: var(--color-accent);
  color: #fff;
}

/* Upgrade step number: filled orange circle */
.pf-step__num {
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  border: none;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.pf-step h4 { margin-bottom: 10px; font-size: 1rem; color: var(--color-primary); }
.pf-step p  { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; line-height: 1.65; }

@media (max-width: 767.98px) {
  .pf-steps { grid-template-columns: 1fr; gap: 24px; }
  .pf-steps::before { display: none; }
  .pf-step { display: grid; grid-template-columns: 56px 1fr; grid-template-rows: auto auto auto; gap: 0 16px; text-align: left; }
  .pf-step__icon { grid-column: 1; grid-row: 1; margin: 0; }
  .pf-step__num  { grid-column: 1; grid-row: 2; margin: 8px 0 0; }
  .pf-step h4    { grid-column: 2; grid-row: 1; align-self: center; margin: 0; }
  .pf-step p     { grid-column: 2; grid-row: 2 / span 2; }
}

/* ── Specs Callout Box ───────────────────────────────────────── */
.pf-specs-box {
  background: var(--color-primary);
  padding: 48px 0;
}
.pf-specs-box__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 40px;
}
.pf-specs-box__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  white-space: nowrap;
}
.pf-specs-box__label i {
  font-size: 1.25rem;
  color: var(--color-accent);
}
.pf-specs-box__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pf-specs-pill {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
  cursor: default;
}
.pf-specs-pill:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
@media (max-width: 767.98px) {
  .pf-specs-box__inner { flex-direction: column; align-items: flex-start; }
  .pf-specs-box { padding: 36px 0; }
}

/* ── Gallery — three-column ──────────────────────────────────── */
.pf-gallery--threecol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pf-gallery--twocol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767.98px) {
  .pf-gallery--threecol { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 479.98px) {
  .pf-gallery--threecol,
  .pf-gallery--twocol { grid-template-columns: 1fr; }
}

/* ── Gallery Item & Caption Overlay ─────────────────────────── */
.pf-gallery__item {
  cursor: zoom-in;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.pf-gallery__item:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

.pf-gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.9) 0%, transparent 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 32px 16px 14px;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.pf-gallery__item:hover .pf-gallery__caption,
.pf-gallery__item:focus-visible .pf-gallery__caption { transform: translateY(0); }

/* ── Lightbox (project/service detail pages) ─────────────────── */
.pf-lightbox__img-wrap {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#pfLightboxImg {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.pf-lightbox__caption {
  margin-top: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-align: center;
}
.pf-lightbox__close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.125rem;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background var(--t-fast);
  z-index: 1;
}
.pf-lightbox__close:hover { background: var(--color-accent); }
.pf-lightbox__nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.375rem;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background var(--t-fast);
  z-index: 1;
}
.pf-lightbox__nav:hover { background: var(--color-accent); }
.pf-lightbox__nav--prev { left: 16px; }
.pf-lightbox__nav--next { right: 16px; }
@media (max-width: 575.98px) {
  .pf-lightbox__nav { width: 40px; height: 40px; font-size: 1.125rem; }
  .pf-lightbox__nav--prev { left: 8px; }
  .pf-lightbox__nav--next { right: 8px; }
}

/* ── FAQ Accordion ───────────────────────────────────────────── */
.pf-faq { background: var(--color-bg); }

.pf-accordion { border: none; }
.pf-accordion__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.pf-accordion__btn {
  background: #fff;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
  border: none;
  box-shadow: none !important;
  line-height: 1.4;
  transition: background var(--t-fast), color var(--t-fast);
}
.pf-accordion__btn:not(.collapsed) {
  background: var(--color-primary);
  color: #fff;
}
.pf-accordion__btn::after {
  filter: none;
  flex-shrink: 0;
}
.pf-accordion__btn:not(.collapsed)::after {
  filter: invert(1) brightness(10);
}
.pf-accordion__body {
  padding: 16px 24px 24px;
  font-size: 0.9625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  background: #fff;
}

/* ── Premium Testimonial ─────────────────────────────────────── */
.pf-testi-premium-section { padding: var(--section-pad) 0; }

.pf-testi-premium {
  position: relative;
  padding: 56px 48px 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  text-align: center;
}
.pf-testi-premium__quote-mark {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}
.pf-testi-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--color-accent);
  font-size: 1.125rem;
}
.pf-testi-premium__text {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  margin: 0 0 32px;
  border: none;
  padding: 0;
}
.pf-testi-premium__author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.pf-testi-premium__author-info { text-align: left; }
.pf-testi__name { font-weight: 700; font-size: 1rem; color: #fff; }
.pf-testi__role { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.pf-testi__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: grid; place-items: center;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .pf-testi-premium { padding: 40px 24px 36px; }
  .pf-testi-premium__quote-mark { font-size: 80px; top: -20px; }
}

/* ── Overview Body: no top padding when after overview split ── */
.pf-section--overview-body { padding-top: 0; }

/* =====================================================================
   FOUNDER HERO — shared by /about and / (home)
===================================================================== */
.pf-founder-hero {
  position: relative;
  padding: clamp(56px, 8vw, 120px) 0;
  background: linear-gradient(180deg, #fff 0%, var(--color-surface) 100%);
  overflow: hidden;
  isolation: isolate;
}
.pf-founder-hero__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(249, 115, 22, 0.08), transparent 55%),
    radial-gradient(circle at 88% 82%, rgba(10, 37, 64, 0.06), transparent 55%);
  pointer-events: none; z-index: 0;
}
.pf-founder-hero__glow {
  position: absolute; top: -180px; right: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.18), transparent 70%);
  filter: blur(40px); z-index: 0; pointer-events: none;
}
.pf-founder-hero .container { position: relative; z-index: 1; }

.pf-founder-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 991.98px) {
  .pf-founder-hero__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Media column */
.pf-founder-hero__media {
  position: relative;
  max-width: 480px;
  width: 100%;
  justify-self: center;
}
.pf-founder-hero__frame {
  position: absolute;
  top: 24px; left: 24px; right: -24px; bottom: -24px;
  border: 2px solid var(--color-accent);
  border-radius: 6px;
  z-index: 0;
}
.pf-founder-hero__corner {
  position: absolute; width: 36px; height: 36px;
  border: 3px solid var(--color-primary);
  z-index: 2; pointer-events: none;
}
.pf-founder-hero__corner--tl {
  top: -10px; left: -10px;
  border-right: none; border-bottom: none;
}
.pf-founder-hero__corner--br {
  bottom: -34px; right: -34px;
  border-left: none; border-top: none;
}
.pf-founder-hero__photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(10,37,64,0.35), 0 10px 24px -12px rgba(10,37,64,0.25);
  background: var(--color-surface-2);
  aspect-ratio: 4 / 5;
  z-index: 1;
}
.pf-founder-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pf-founder-hero__media:hover .pf-founder-hero__photo img { transform: scale(1.03); }

.pf-founder-hero__badge {
  position: absolute;
  left: -18px; bottom: 28px;
  background: var(--color-primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: 6px;
  box-shadow: 0 14px 32px -10px rgba(10,37,64,0.45);
  z-index: 3;
}
.pf-founder-hero__badge-num {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
}
.pf-founder-hero__badge-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

/* Content column */
.pf-founder-hero__content { min-width: 0; }
.pf-founder-hero__name {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--color-primary);
  margin: 12px 0 6px;
}
.pf-founder-hero__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pf-founder-hero__bio {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  max-width: 58ch;
}

.pf-founder-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 28px;
}
.pf-founder-hero__chip {
  padding: 14px 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  min-width: 120px;
  box-shadow: 0 4px 12px -6px rgba(10,37,64,0.08);
}
.pf-founder-hero__chip-num {
  display: block;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-primary);
  line-height: 1;
}
.pf-founder-hero__chip-lbl {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-top: 6px;
}

.pf-founder-hero__quote {
  position: relative;
  margin: 28px 0;
  padding: 24px 24px 24px 56px;
  background: var(--color-surface-2);
  border-left: 3px solid var(--color-accent);
  border-radius: 6px;
}
.pf-founder-hero__quote p {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-primary);
  margin: 0;
}
.pf-founder-hero__quote-mark {
  position: absolute;
  left: 14px; top: 12px;
  font-size: 2rem;
  color: var(--color-accent);
  opacity: 0.7;
}
.pf-founder-hero__quote-cite {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: normal;
}
.pf-founder-hero__signature {
  display: block;
  max-height: 56px;
  margin-top: 14px;
}

.pf-founder-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 575.98px) {
  .pf-founder-hero__badge { left: 12px; bottom: 12px; padding: 10px 14px; }
  .pf-founder-hero__chip { min-width: 100px; padding: 12px 16px; }
  .pf-founder-hero__chip-num { font-size: 1.2rem; }
  .pf-founder-hero__quote { padding: 20px 18px 20px 44px; }
  .pf-founder-hero__corner { width: 24px; height: 24px; }
  .pf-founder-hero__corner--br { bottom: -22px; right: -22px; }
}

/* ─── Founder Hero — immersive layer (scoped) ───────────────────────── */
.pf-founder-hero { perspective: 1400px; }

.pf-founder-hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,37,64,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,37,64,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  z-index: 0; pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.pf-founder-hero__orbs {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
  overflow: hidden;
}
.pf-founder-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  will-change: transform;
}
.pf-founder-hero__orb--1 {
  width: 320px; height: 320px;
  top: -60px; left: -80px;
  background: radial-gradient(circle, rgba(249,115,22,0.35), transparent 70%);
  animation: pfFounderOrb1 18s ease-in-out infinite;
}
.pf-founder-hero__orb--2 {
  width: 280px; height: 280px;
  bottom: -80px; left: 38%;
  background: radial-gradient(circle, rgba(10,37,64,0.28), transparent 70%);
  animation: pfFounderOrb2 22s ease-in-out infinite;
}
.pf-founder-hero__orb--3 {
  width: 360px; height: 360px;
  top: 20%; right: -100px;
  background: radial-gradient(circle, rgba(249,115,22,0.22), transparent 70%);
  animation: pfFounderOrb3 26s ease-in-out infinite;
}
@keyframes pfFounderOrb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px,30px) scale(1.1); }
}
@keyframes pfFounderOrb2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-30px,-20px) scale(0.95); }
}
@keyframes pfFounderOrb3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-50px,40px) scale(1.08); }
}

/* 3D tilt stage */
.pf-founder-hero__media { transform-style: preserve-3d; }
.pf-founder-hero__tilt {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.pf-founder-hero__tilt .pf-founder-hero__frame   { transform: translateZ(10px); }
.pf-founder-hero__tilt .pf-founder-hero__corner  { transform: translateZ(30px); }
.pf-founder-hero__tilt .pf-founder-hero__photo   { transform: translateZ(20px); }
.pf-founder-hero__tilt .pf-founder-hero__badge   { transform: translateZ(60px); }

/* Animated sheen sweeping across the photo */
.pf-founder-hero__photo { isolation: isolate; }
.pf-founder-hero__sheen {
  position: absolute; inset: 0;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255,255,255,0.28) 48%,
    rgba(255,255,255,0.05) 55%,
    transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}
.pf-founder-hero__media:hover .pf-founder-hero__sheen {
  animation: pfFounderSheen 1.2s ease-out;
}
@keyframes pfFounderSheen {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* Corner accent pulse */
.pf-founder-hero__corner {
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.pf-founder-hero__media:hover .pf-founder-hero__corner {
  border-color: var(--color-accent);
  box-shadow: 0 0 24px rgba(249,115,22,0.35);
}

/* Frame gently breathes */
.pf-founder-hero__frame {
  animation: pfFounderFrame 6s ease-in-out infinite;
}
@keyframes pfFounderFrame {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.72; transform: scale(1.01); }
}

/* Badge shine */
.pf-founder-hero__badge { overflow: hidden; }
.pf-founder-hero__badge::after {
  content: "";
  position: absolute; top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: pfFounderBadgeShine 4.5s ease-in-out infinite;
}
@keyframes pfFounderBadgeShine {
  0%,70% { left: -60%; }
  100%   { left: 160%; }
}

/* Name — accent underline sweep on reveal */
.pf-founder-hero__name {
  position: relative;
  background-image: linear-gradient(90deg, var(--color-accent), var(--color-accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 3px;
  padding-bottom: 6px;
  transition: background-size 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s;
}
.pf-founder-hero__content.visible .pf-founder-hero__name { background-size: 38% 3px; }

/* Chip interactions */
.pf-founder-hero__chip {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}
.pf-founder-hero__chip:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 18px 36px -14px rgba(10,37,64,0.18);
}
.pf-founder-hero__chip-num { transition: color 0.3s ease; }
.pf-founder-hero__chip:hover .pf-founder-hero__chip-num { color: var(--color-accent); }

/* Quote — left bar animates in */
.pf-founder-hero__quote {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.pf-founder-hero__quote:hover {
  transform: translateX(4px);
  box-shadow: -4px 12px 28px -14px rgba(10,37,64,0.18);
}
.pf-founder-hero__quote-mark {
  animation: pfFounderQuotePulse 3.2s ease-in-out infinite;
}
@keyframes pfFounderQuotePulse {
  0%,100% { opacity: 0.55; transform: scale(1); }
  50%     { opacity: 0.95; transform: scale(1.08); }
}

/* Reduced-motion respect */
@media (prefers-reduced-motion: reduce) {
  .pf-founder-hero__orb,
  .pf-founder-hero__frame,
  .pf-founder-hero__badge::after,
  .pf-founder-hero__quote-mark { animation: none !important; }
  .pf-founder-hero__tilt { transition: none !important; transform: none !important; }
  .pf-founder-hero__grid-bg { transition: none !important; transform: none !important; }
}

/* =====================================================================
   COMPANY DETAILS — /about
===================================================================== */
.pf-company__row + .pf-company__row { margin-top: 32px; }

.pf-company__block {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 4px 16px -8px rgba(10,37,64,0.06);
}
.pf-company__block h3 {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: 0 0 20px;
}
.pf-company__block h3 i {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: 8px;
  font-size: 1.1rem;
}
.pf-company__block p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.pf-check-list--two-col {
  columns: 2;
  column-gap: 32px;
}
@media (max-width: 575.98px) {
  .pf-check-list--two-col { columns: 1; }
}
.pf-check-list--two-col li {
  break-inside: avoid;
}

.pf-company__card {
  background: var(--color-primary);
  color: #fff;
  border-radius: 10px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 14px 40px -16px rgba(10,37,64,0.45);
  position: relative;
  overflow: hidden;
}
.pf-company__card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(249,115,22,0.3), transparent 70%);
  pointer-events: none;
}
.pf-company__card-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.pf-company__card-head i {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--color-accent);
  color: #fff;
  border-radius: 8px;
  font-size: 1.25rem;
}
.pf-company__card-head h3 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
}
.pf-company__addr {
  font-style: normal;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.pf-company__contact { display: flex; flex-direction: column; gap: 12px; }
.pf-company__contact-row {
  display: flex; align-items: center; gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.pf-company__contact-row:hover { color: var(--color-accent); }
.pf-company__contact-row--static { color: rgba(255,255,255,0.8); cursor: default; }
.pf-company__contact-row--static:hover { color: rgba(255,255,255,0.8); }
.pf-company__contact-row i {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.pf-company__mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}
.pf-company__mini {
  padding: 16px;
  background: var(--color-surface);
  border-radius: 8px;
  border-left: 3px solid var(--color-accent);
}
.pf-company__mini-icon {
  display: inline-flex;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 8px;
}
.pf-company__mini h4 {
  font-size: 0.95rem;
  color: var(--color-primary);
  margin: 0 0 4px;
}
.pf-company__mini p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}

.pf-company__expertise {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.pf-company__expertise li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--color-surface);
  border-radius: 8px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.pf-company__expertise li:hover {
  background: var(--color-accent-soft);
  transform: translateX(4px);
}
.pf-company__expertise li i {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--color-accent);
  border-radius: 6px;
  font-size: 1rem;
  flex-shrink: 0;
}
.pf-company__expertise li span {
  font-weight: 500;
  color: var(--color-primary);
}
.pf-company__note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

