/* ============================================================
   PointingFish — MAIN STYLESHEET (WordPress / Elementor Edition)
   ------------------------------------------------------------
   ALL selectors scoped under .pf-site wrapper to prevent
   conflicts with WordPress core, theme, and Elementor styles.

   Load order in WordPress (functions.php enqueue):
     1. pf-main.css   (tokens + reset + all page styles)
     2. pf-header.css (nav only)
     3. pf-footer.css (footer only)
     4. pf-main.js    (after DOM ready)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter+Tight:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- 1. DESIGN TOKENS ----------
   CSS custom properties — safe in :root (--pf- prefix won't
   clash with WordPress or Elementor variables)
   ------------------------------------------------------- */
:root {
  --pf-navy-900: #0a1c2e;
  --pf-navy-800: #0f2438;
  --pf-navy-700: #14304a;
  --pf-navy-600: #1d4263;
  --pf-navy-500: #2a5680;
  --pf-aqua-600: #0a8a93;
  --pf-aqua-500: #16b3bd;
  --pf-aqua-400: #3dd6df;
  --pf-aqua-300: #8df2f6;
  --pf-aqua-100: #e6fafb;
  --pf-sand-50:  #fbf9f4;
  --pf-sand-100: #f4efe5;
  --pf-sand-200: #e8e1d2;
  --pf-ink-900: #0c1419;
  --pf-ink-700: #2b3a44;
  --pf-ink-500: #5a6a75;
  --pf-ink-300: #94a3ad;
  --pf-line: rgba(10, 28, 46, 0.08);
  --pf-line-strong: rgba(10, 28, 46, 0.18);
  --pf-amber: #e6a23c;
  --pf-rose:  #d44a6a;
  --pf-green: #34a36b;
  --font-display: "Instrument Serif", "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;
  --maxw: 1240px;
  --maxw-narrow: 960px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(10,28,46,0.06), 0 1px 3px rgba(10,28,46,0.04);
  --shadow-md: 0 4px 16px rgba(10,28,46,0.06), 0 2px 4px rgba(10,28,46,0.04);
  --shadow-lg: 0 24px 60px -20px rgba(10,28,46,0.18), 0 8px 24px -8px rgba(10,28,46,0.08);
  --shadow-aqua: 0 12px 40px -12px rgba(22,179,189,0.45);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- 2. WRAPPER + RESET (scoped) ---------- */
.pf-site {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pf-ink-900);
  background: var(--pf-sand-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Ensure full page width in Elementor full-width templates */
  width: 100%;
}
.pf-site *,
.pf-site *::before,
.pf-site *::after { box-sizing: border-box; }

.pf-site img,
.pf-site svg { display: block; max-width: 100%; height: auto; }

.pf-site a {
  color: var(--pf-navy-700);
  text-decoration: none;
  transition: color .2s var(--ease-out);
}
.pf-site a:hover { color: var(--pf-aqua-600); }
.pf-site button { font-family: inherit; cursor: pointer; border: none; background: none; }
.pf-site ul { padding: 0; margin: 0; list-style: none; }
.pf-site :focus-visible {
  outline: 2px solid var(--pf-aqua-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. TYPOGRAPHY ---------- */
.pf-site .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pf-aqua-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pf-site .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}

.pf-site h1,
.pf-site .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--pf-navy-900);
}
.pf-site h1 em,
.pf-site .h1 em { font-style: italic; color: var(--pf-aqua-600); }

.pf-site h2,
.pf-site .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--pf-navy-900);
}
.pf-site h2 em,
.pf-site .h2 em { font-style: italic; color: var(--pf-aqua-600); }

.pf-site h3,
.pf-site .h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--pf-navy-900);
}
.pf-site h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 .4em;
  color: var(--pf-navy-900);
}
.pf-site p { margin: 0 0 1em; color: var(--pf-ink-700); }
.pf-site .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--pf-ink-700);
  max-width: 60ch;
}

/* ---------- 4. LAYOUT PRIMITIVES ---------- */
.pf-site .container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.pf-site .container--narrow { max-width: var(--maxw-narrow); }

.pf-site .section {
  padding: clamp(72px, 10vw, 128px) 0;
  position: relative;
}
.pf-site .section--tight { padding: clamp(56px, 7vw, 88px) 0; }
.pf-site .section--dark {
  background: var(--pf-navy-900);
  color: var(--pf-sand-50);
}
.pf-site .section--dark h2,
.pf-site .section--dark h3,
.pf-site .section--dark h4 { color: var(--pf-sand-50); }
.pf-site .section--dark h2 em { color: var(--pf-aqua-400); }
.pf-site .section--dark p { color: rgba(251, 249, 244, 0.7); }
.pf-site .section--dark .eyebrow { color: var(--pf-aqua-400); }

.pf-site .section-head { max-width: 720px; margin: 0 0 64px; }
.pf-site .section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- 5. BUTTONS ---------- */
.pf-site .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.005em;
  border-radius: 999px;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.pf-site .btn--primary {
  background: var(--pf-navy-900);
  color: var(--pf-sand-50);
}
.pf-site .btn--primary:hover {
  background: var(--pf-aqua-600);
  color: var(--pf-sand-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-aqua);
}
.pf-site .btn--ghost {
  background: transparent;
  color: var(--pf-navy-900);
  border-color: var(--pf-line-strong);
}
.pf-site .btn--ghost:hover {
  border-color: var(--pf-navy-900);
  color: var(--pf-navy-900);
  transform: translateY(-1px);
}
.pf-site .btn--light {
  background: var(--pf-sand-50);
  color: var(--pf-navy-900);
}
.pf-site .btn--light:hover {
  background: var(--pf-aqua-300);
  color: var(--pf-navy-900);
}
.pf-site .btn--sm { padding: 10px 18px; font-size: 13px; }
.pf-site .btn .arrow { transition: transform .25s var(--ease-out); }
.pf-site .btn:hover .arrow { transform: translateX(3px); }

/* ---------- 6. HERO ---------- */
.pf-site .hero {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(22,179,189,0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(10,28,46,0.05), transparent 60%),
    var(--pf-sand-50);
}
.pf-site .hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.pf-site .hero__content { max-width: 580px; }
.pf-site .hero__title { margin-bottom: 24px; }
.pf-site .hero__sub {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--pf-ink-700);
  margin-bottom: 36px;
  max-width: 50ch;
}
.pf-site .hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.pf-site .hero__meta {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  padding-top: 28px;
  border-top: 1px solid var(--pf-line);
}
.pf-site .hero__meta-item .num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--pf-navy-900);
}
.pf-site .hero__meta-item .num em { color: var(--pf-aqua-600); font-style: italic; }
.pf-site .hero__meta-item .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--pf-ink-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
  display: block;
}
.pf-site .hero__visual { position: relative; height: 520px; }
.pf-site .hero__visual svg { width: 100%; height: 100%; }

/* ---------- 7. TRUST STRIP ---------- */
.pf-site .trust-strip {
  border-top: 1px solid var(--pf-line);
  border-bottom: 1px solid var(--pf-line);
  padding: 28px 0;
  background: var(--pf-sand-50);
}
.pf-site .trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.pf-site .trust-strip__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pf-ink-500);
}
.pf-site .trust-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.pf-site .trust-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--pf-navy-700);
  padding: 6px 12px;
  border: 1px solid var(--pf-line-strong);
  border-radius: 999px;
}

/* ---------- 8. BENEFITS ---------- */
.pf-site .benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--pf-line);
  border-bottom: 1px solid var(--pf-line);
}
.pf-site .benefit {
  padding: 40px 32px;
  border-right: 1px solid var(--pf-line);
  position: relative;
}
.pf-site .benefit:last-child { border-right: none; }
.pf-site .benefit__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--pf-aqua-600);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.pf-site .benefit__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--pf-aqua-600);
}
.pf-site .benefit__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--pf-navy-900);
}
.pf-site .benefit__desc { font-size: 14px; color: var(--pf-ink-700); margin: 0; }

/* ---------- 9. BUNDLES ---------- */
.pf-site .bundles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pf-site .bundle {
  position: relative;
  padding: 36px;
  background: var(--pf-sand-50);
  border: 1px solid var(--pf-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .35s var(--ease-out);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  text-decoration: none;
  color: inherit;
}
.pf-site .bundle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(22,179,189,0.06), transparent 50%);
  opacity: 0;
  transition: opacity .35s var(--ease-out);
}
.pf-site .bundle:hover {
  transform: translateY(-4px);
  border-color: var(--pf-navy-900);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.pf-site .bundle:hover::before { opacity: 1; }
.pf-site .bundle__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.pf-site .bundle__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--pf-navy-900);
  color: var(--pf-aqua-400);
  border-radius: 14px;
  transition: transform .35s var(--ease-out);
}
.pf-site .bundle__icon svg { width: 24px; height: 24px; }
.pf-site .bundle:hover .bundle__icon { transform: rotate(-6deg) scale(1.05); }
.pf-site .bundle__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--pf-aqua-600);
  letter-spacing: 0.1em;
}
.pf-site .bundle__title {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.05;
  color: var(--pf-navy-900);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.pf-site .bundle__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--pf-ink-700);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.pf-site .bundle__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.pf-site .chip {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border: 1px solid var(--pf-line-strong);
  border-radius: 999px;
  color: var(--pf-ink-700);
  background: rgba(255,255,255,0.4);
}
.pf-site .bundle__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pf-navy-900);
  position: relative;
  z-index: 1;
}
.pf-site .bundle__link .arrow { transition: transform .25s var(--ease-out); }
.pf-site .bundle:hover .bundle__link .arrow { transform: translateX(4px); }

/* ---------- 10. HOW IT WORKS (STEPS) ---------- */
.pf-site .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.pf-site .step {
  position: relative;
  padding: 32px 28px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.pf-site .step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--pf-aqua-400);
  margin-bottom: 24px;
  font-style: italic;
}
.pf-site .step__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--pf-sand-50);
  margin-bottom: 12px;
  line-height: 1.1;
}
.pf-site .step__desc { font-size: 14px; color: rgba(251, 249, 244, 0.65); line-height: 1.55; margin: 0; }
.pf-site .step__icon { width: 32px; height: 32px; color: var(--pf-aqua-400); margin-bottom: 16px; }

/* ---------- 11. DIFFERENTIATORS ---------- */
.pf-site .diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pf-site .diff-list { display: flex; flex-direction: column; gap: 24px; }
.pf-site .diff-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--pf-line);
  border-radius: var(--radius-md);
  transition: all .25s var(--ease-out);
  background: var(--pf-sand-50);
}
.pf-site .diff-item:hover { border-color: var(--pf-navy-900); transform: translateX(4px); }
.pf-site .diff-item__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--pf-navy-900);
  color: var(--pf-aqua-400);
  border-radius: 8px;
  flex-shrink: 0;
}
.pf-site .diff-item__icon svg { width: 18px; height: 18px; }
.pf-site .diff-item__body h3 { margin-bottom: 6px; }
.pf-site .diff-item__body p { font-size: 14px; margin: 0; color: var(--pf-ink-700); }

/* ---------- 12. TRUST CARD ---------- */
.pf-site .trust-card {
  background: var(--pf-navy-900);
  color: var(--pf-sand-50);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.pf-site .trust-card::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22,179,189,0.18), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.pf-site .trust-card__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--pf-sand-50);
  position: relative;
  z-index: 1;
}
.pf-site .trust-card__title em { color: var(--pf-aqua-400); font-style: italic; }
.pf-site .trust-card__desc { color: rgba(251,249,244,0.7); max-width: 50ch; position: relative; z-index: 1; }
.pf-site .trust-card__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.pf-site .trust-card__item {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  transition: all .25s var(--ease-out);
}
.pf-site .trust-card__item:hover {
  border-color: var(--pf-aqua-400);
  background: rgba(22,179,189,0.06);
}
.pf-site .trust-card__item h4 { color: var(--pf-sand-50); font-size: 14px; margin-bottom: 4px; }
.pf-site .trust-card__item p { font-size: 12px; color: rgba(251,249,244,0.55); margin: 0; }
.pf-site .trust-card__item-icon { width: 24px; height: 24px; color: var(--pf-aqua-400); margin-bottom: 12px; }

/* ---------- 13. FINAL CTA ---------- */
.pf-site .cta-final {
  text-align: center;
  padding: clamp(72px, 10vw, 140px) 0;
  background:
    radial-gradient(ellipse at top, rgba(22,179,189,0.08), transparent 60%),
    var(--pf-sand-50);
  border-top: 1px solid var(--pf-line);
}
.pf-site .cta-final h2 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 18ch; margin: 0 auto 24px; }
.pf-site .cta-final p { font-size: 1.05rem; max-width: 50ch; margin: 0 auto 36px; }
.pf-site .cta-final__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- 14. VISION / MISSION ---------- */
.pf-site .purpose { text-align: left; }
.pf-site .purpose .eyebrow { margin-bottom: 16px; }
.pf-site .purpose__title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin: 0 0 48px;
  color: var(--pf-navy-900);
  max-width: 28ch;
}
.pf-site .purpose__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.pf-site .purpose__card {
  position: relative;
  padding: 44px 40px;
  background: #fff;
  border: 1px solid rgba(10, 28, 46, 0.08);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pf-site .purpose__card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(10, 28, 46, 0.08); }
.pf-site .purpose__card--vision {
  background: linear-gradient(135deg, #fff 0%, var(--pf-sand-50) 100%);
}
.pf-site .purpose__card--mission {
  background: var(--pf-navy-900);
  color: var(--pf-sand-50);
  border-color: transparent;
}
.pf-site .purpose__card-icon { width: 44px; height: 44px; margin-bottom: 24px; color: var(--pf-aqua-500); }
.pf-site .purpose__card--mission .purpose__card-icon { color: var(--pf-aqua-400); }
.pf-site .purpose__card-icon svg { width: 100%; height: 100%; }
.pf-site .purpose__card-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pf-aqua-600);
  margin: 0 0 16px;
  font-weight: 500;
}
.pf-site .purpose__card--mission .purpose__card-label { color: var(--pf-aqua-400); }
.pf-site .purpose__card-body {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
  color: inherit;
}

/* ---------- 15. PRODUCT PAGE COMPONENTS ---------- */

/* Product hero */
.pf-site .product-hero {
  padding: clamp(72px, 9vw, 120px) 0 clamp(56px, 7vw, 80px);
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(22,179,189,0.07), transparent 60%),
    var(--pf-sand-50);
  border-bottom: 1px solid var(--pf-line);
}
.pf-site .product-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}

/* Breadcrumb */
.pf-site .breadcrumb {
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pf-ink-500);
  margin-bottom: 28px;
}
.pf-site .breadcrumb a { color: var(--pf-ink-500); text-decoration: none; }
.pf-site .breadcrumb a:hover { color: var(--pf-aqua-600); }
.pf-site .breadcrumb span { color: var(--pf-line-strong); }

/* Metrics card */
.pf-site .product-hero__metric {
  border: 1px solid var(--pf-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
}
.pf-site .product-hero__metric-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--pf-line);
}
.pf-site .product-hero__metric-row:last-child { border-bottom: none; padding-bottom: 0; }
.pf-site .product-hero__metric-row:first-child { padding-top: 0; }
.pf-site .product-hero__metric-row .label { font-size: 13px; color: var(--pf-ink-700); }
.pf-site .product-hero__metric-row .value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--pf-navy-900);
}
.pf-site .product-hero__metric-row .value em { color: var(--pf-aqua-600); font-style: italic; }

/* Coverage card */
.pf-site .product-hero__coverage {
  padding: 36px 32px;
  background: var(--pf-sand-50);
  border: 1px solid rgba(10, 28, 46, 0.08);
  border-left: 3px solid var(--pf-aqua-500);
  border-radius: 4px;
}
.pf-site .product-hero__coverage-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pf-aqua-600);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(10, 28, 46, 0.08);
}
.pf-site .product-hero__coverage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pf-site .product-hero__coverage-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--pf-navy-800, #16263a);
}
.pf-site .product-hero__coverage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--pf-aqua-500);
  border-right: 0;
  border-bottom: 0;
  transform: rotate(135deg);
}

/* Document types grid */
.pf-site .docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pf-site .doc-card {
  padding: 24px;
  border: 1px solid var(--pf-line);
  border-radius: var(--radius-md);
  background: var(--pf-sand-50);
  transition: all .25s var(--ease-out);
}
.pf-site .doc-card:hover { border-color: var(--pf-navy-900); transform: translateY(-2px); }
.pf-site .doc-card__icon { width: 28px; height: 28px; color: var(--pf-aqua-600); margin-bottom: 16px; }
.pf-site .doc-card h4 { font-size: 16px; margin-bottom: 4px; }
.pf-site .doc-card p { font-size: 14px; color: var(--pf-ink-500); margin: 0; }

/* Workflow diagram */
.pf-site .workflow {
  background: var(--pf-navy-900);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--pf-sand-50);
  position: relative;
  overflow: hidden;
}
.pf-site .workflow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(22,179,189,0.08));
  pointer-events: none;
}
.pf-site .workflow__title { color: var(--pf-sand-50); position: relative; z-index: 1; }
.pf-site .workflow__diagram {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.pf-site .workflow__node {
  padding: 20px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  position: relative;
  transition: all .25s var(--ease-out);
}
.pf-site .workflow__node:hover {
  background: rgba(22,179,189,0.08);
  border-color: var(--pf-aqua-400);
}
.pf-site .workflow__node-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--pf-aqua-400);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.pf-site .workflow__node-title { font-size: 14px; font-weight: 600; color: var(--pf-sand-50); margin-bottom: 6px; }
.pf-site .workflow__node-desc { font-size: 12px; color: rgba(251,249,244,0.6); margin: 0; line-height: 1.4; }
.pf-site .workflow__node:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pf-aqua-400);
  font-size: 14px;
  z-index: 2;
}

/* PSO (Problem / Solution / Outcome) */
.pf-site .pso {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--pf-line);
  border-bottom: 1px solid var(--pf-line);
}
.pf-site .pso__col { padding: 40px; border-right: 1px solid var(--pf-line); position: relative; }
.pf-site .pso__col:last-child { border-right: none; }
.pf-site .pso__col--problem { background: rgba(212, 74, 106, 0.04); }
.pf-site .pso__col--solution { background: rgba(22, 179, 189, 0.05); }
.pf-site .pso__col--outcome { background: rgba(52, 163, 107, 0.04); }
.pf-site .pso__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pf-site .pso__col--problem .pso__label { color: var(--pf-rose); }
.pf-site .pso__col--solution .pso__label { color: var(--pf-aqua-600); }
.pf-site .pso__col--outcome .pso__label { color: var(--pf-green); }
.pf-site .pso__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--pf-navy-900);
  margin-bottom: 16px;
}
.pf-site .pso__list { display: flex; flex-direction: column; gap: 12px; }
.pf-site .pso__list li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--pf-ink-700);
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
}
.pf-site .pso__list li::before {
  content: "—";
  color: var(--pf-ink-300);
  font-family: var(--font-mono);
}

/* Use case cards */
.pf-site .usecases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pf-site .usecases--simple { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pf-site .usecases--simple .usecase { display: flex; flex-direction: column; }
.pf-site .usecase {
  padding: 36px;
  background: var(--pf-sand-50);
  border: 1px solid var(--pf-line);
  border-radius: var(--radius-lg);
  transition: all .25s var(--ease-out);
}
.pf-site .usecase:hover { border-color: var(--pf-navy-900); box-shadow: var(--shadow-md); }
.pf-site .usecase__meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.pf-site .usecase__type { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--pf-aqua-600); }
.pf-site .usecase__industry { font-size: 12px; color: var(--pf-ink-500); }
.pf-site .usecase__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--pf-navy-900);
  margin-bottom: 12px;
}
.pf-site .usecase__desc { font-size: 14px; color: var(--pf-ink-700); margin-bottom: 24px; }
.pf-site .usecase__metrics {
  display: flex;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--pf-line);
}
.pf-site .usecase__metric .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--pf-navy-900);
}
.pf-site .usecase__metric .num em { color: var(--pf-aqua-600); font-style: italic; }
.pf-site .usecase__metric .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pf-ink-500);
  margin-top: 4px;
  display: block;
}
.pf-site .usecase__tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 14px;
  background: var(--pf-aqua-100);
  color: var(--pf-aqua-600);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Value strip */
.pf-site .value-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.pf-site .value-strip__item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.pf-site .value-strip__item:last-child { border-right: none; }
.pf-site .value-strip__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--pf-aqua-400);
  font-style: italic;
  margin-bottom: 12px;
}
.pf-site .value-strip__label { font-size: 16px; color: var(--pf-sand-50); font-weight: 500; margin-bottom: 6px; }
.pf-site .value-strip__desc { font-size: 14px; color: rgba(251,249,244,0.55); margin: 0; line-height: 1.5; }

/* Solution note */
.pf-site .solution-note {
  padding: 64px 56px;
  background: var(--pf-sand-50);
  border: 1px solid rgba(10, 28, 46, 0.08);
  border-left: 4px solid var(--pf-aqua-500);
  border-radius: 4px;
}
.pf-site .solution-note .eyebrow { color: var(--pf-aqua-600); margin-bottom: 16px; }
.pf-site .solution-note h2 { font-size: clamp(28px, 3vw, 38px); line-height: 1.15; margin: 0 0 20px; color: var(--pf-navy-900); }
.pf-site .solution-note p { font-size: 17px; line-height: 1.6; color: var(--pf-navy-700); max-width: 64ch; margin: 0 0 28px; }
.pf-site .solution-note__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Legal/content pages */
.pf-site .legal-hero {
  padding: clamp(72px, 9vw, 116px) 0 clamp(48px, 6vw, 72px);
  background: radial-gradient(ellipse 70% 50% at 20% 0%, rgba(22,179,189,0.07), transparent 60%), var(--pf-sand-50);
  border-bottom: 1px solid var(--pf-line);
}
.pf-site .legal-hero h1 { margin: 18px 0 22px; max-width: 12ch; }
.pf-site .content-page {
  background: #fff;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
}
.pf-site .content-page h2 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 32px 0 10px;
  color: var(--pf-navy-900);
}
.pf-site .content-page h2:first-child { margin-top: 0; }
.pf-site .content-page p,
.pf-site .content-page li { color: var(--pf-ink-700); }
.pf-site .content-page ul { list-style: none; display: grid; gap: 10px; margin: 0 0 18px; }
.pf-site .content-page li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; }
.pf-site .content-page li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border: 1.5px solid var(--pf-aqua-500);
  border-right: 0;
  border-bottom: 0;
  transform: rotate(135deg);
}
.pf-site .content-page .contact-box {
  margin-top: 32px;
  padding: 24px;
  border-left: 3px solid var(--pf-aqua-500);
  background: var(--pf-aqua-100);
}

/* ---------- 16. ANIMATIONS ---------- */
@keyframes pf-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pf-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pf-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
@keyframes pf-dash {
  to { stroke-dashoffset: 0; }
}
@keyframes pf-drift {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pf-swim {
  0%   { transform: translateX(-20px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(20px); opacity: 0; }
}

/* Scroll reveal */
.pf-site .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.pf-site .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Hero pipeline SVG animations — use pf- prefixed keyframe names */
.pf-site .pipe-doc { animation: pf-drift 4s ease-in-out infinite; transform-origin: center; }
.pf-site .pipe-doc:nth-child(2) { animation-delay: -1s; }
.pf-site .pipe-doc:nth-child(3) { animation-delay: -2s; }
.pf-site .pipe-line { stroke-dasharray: 600; stroke-dashoffset: 600; animation: pf-dash 3s var(--ease-out) forwards; }
.pf-site .pipe-line--2 { animation-delay: 0.6s; }
.pf-site .pipe-line--3 { animation-delay: 1.2s; }
.pf-site .pipe-pulse { animation: pf-pulse 2s ease-in-out infinite; }
.pf-site .pipe-fish { animation: pf-swim 6s ease-in-out infinite; }

/* Hero content stagger */
.pf-site .hero__content > * { animation: pf-fadeUp .9s var(--ease-out) backwards; }
.pf-site .hero__content > .eyebrow         { animation-delay: 0.05s; }
.pf-site .hero__content > .hero__title     { animation-delay: 0.15s; }
.pf-site .hero__content > .hero__sub       { animation-delay: 0.3s; }
.pf-site .hero__content > .hero__ctas      { animation-delay: 0.45s; }
.pf-site .hero__content > .hero__meta      { animation-delay: 0.6s; }

/* ---------- 17. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .pf-site .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .pf-site .hero__visual { height: 380px; }
  .pf-site .benefits { grid-template-columns: repeat(2, 1fr); }
  .pf-site .benefit { border-bottom: 1px solid var(--pf-line); }
  .pf-site .benefit:nth-child(2) { border-right: none; }
  .pf-site .bundles { grid-template-columns: 1fr; }
  .pf-site .steps { grid-template-columns: repeat(2, 1fr); }
  .pf-site .step { border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 32px; }
  .pf-site .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .pf-site .trust-card__grid { grid-template-columns: repeat(2, 1fr); }
  .pf-site .product-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .pf-site .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-site .workflow__diagram { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pf-site .workflow__node:not(:last-child)::after { display: none; }
  .pf-site .pso { grid-template-columns: 1fr; }
  .pf-site .pso__col { border-right: none; border-bottom: 1px solid var(--pf-line); }
  .pf-site .pso__col:last-child { border-bottom: none; }
  .pf-site .usecases { grid-template-columns: 1fr; }
  .pf-site .usecases--simple { grid-template-columns: repeat(2, 1fr); }
  .pf-site .value-strip { grid-template-columns: repeat(2, 1fr); }
  .pf-site .value-strip__item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .pf-site .purpose__grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 700px) {
  .pf-site .container { padding: 0 20px; }
  .pf-site .benefits { grid-template-columns: 1fr; }
  .pf-site .benefit { border-right: none; }
  .pf-site .steps { grid-template-columns: 1fr; }
  .pf-site .trust-card { padding: 36px 24px; }
  .pf-site .trust-card__grid { grid-template-columns: 1fr; }
  .pf-site .hero__meta { gap: 24px; }
  .pf-site .hero__visual { height: 300px; }
  .pf-site .docs-grid { grid-template-columns: 1fr; }
  .pf-site .workflow { padding: 32px 24px; }
  .pf-site .workflow__diagram { grid-template-columns: 1fr; }
  .pf-site .pso__col { padding: 32px 24px; }
  .pf-site .usecase { padding: 28px 24px; }
  .pf-site .usecases--simple { grid-template-columns: 1fr; }
  .pf-site .value-strip { grid-template-columns: 1fr; }
  .pf-site .purpose__card { padding: 36px 28px; }
  .pf-site .purpose__card-body { font-size: 19px; }
  .pf-site .solution-note { padding: 40px 28px; }
  .pf-site .btn { white-space: normal; justify-content: center; text-align: center; }
  .pf-site .hero__ctas,
  .pf-site .cta-final__ctas,
  .pf-site .solution-note__ctas { align-items: stretch; flex-direction: column; }
  .pf-site .hero__ctas .btn,
  .pf-site .cta-final__ctas .btn,
  .pf-site .solution-note__ctas .btn { width: 100%; }
}

/* Elementor editor — show reveal elements immediately, no JS running */
.elementor-editor-active .pf-site .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pf-site *, .pf-site *::before, .pf-site *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}



/* button hover dark text */

 .pf-site  .cta-final__ctas 
.btn--ghost:hover {
     border: none;
    color: #fff;
  
}

 .pf-site  .hero__ctas 
.btn--ghost:hover {
     border: none;
    color: #fff;
  
}
