/* ─── PolicyKeeper Design System ─── */
/* Replaces normalize.css, webflow.css, policykeeper.webflow.css, newStyles.css */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
}

/* ─── Layout ─── */
.pk-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) { .pk-container { padding: 0 20px; } }

/* ─── Sections ─── */
.pk-section { padding: 96px 0; background: #fff; }
.pk-section-alt { padding: 96px 0; background: #f7f8fa; }
.pk-section-dark { padding: 96px 0; background: #000; }
@media (max-width: 767px) {
  .pk-section, .pk-section-alt, .pk-section-dark { padding: 64px 0; }
}
.pk-section-header { margin-bottom: 56px; }
.pk-section-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* ─── Eyebrow / labels ─── */
.pk-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a6eff;
  margin-bottom: 1rem;
}
.pk-eyebrow-dark { color: rgba(255,255,255,0.45); }

/* ─── Section titles ─── */
.pk-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 1rem;
  max-width: 22ch;
}
.pk-section-title-white { color: #fff; }
.pk-section-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.55);
  max-width: 54ch;
  margin-bottom: 3rem;
}
.pk-section-sub-white { color: rgba(255,255,255,0.6); }

/* ─── Buttons ─── */
.pk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a6eff;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  animation: cta-glow 3s ease-in-out infinite;
}
.pk-btn-primary:hover {
  background: #0051cc;
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
  animation: none;
  box-shadow: 0 8px 24px rgba(10,110,255,0.35);
}
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10,110,255,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(10,110,255,0); }
}
.pk-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.pk-btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
.pk-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0a6eff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(10,110,255,0.3);
  transition: background 0.2s, border-color 0.2s;
  align-self: flex-start;
  background: transparent;
}
.pk-btn-outline:hover {
  background: rgba(10,110,255,0.06);
  border-color: #0a6eff;
  text-decoration: none;
}

/* ─── Nav ─── */
.pk-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #000;
  height: 64px;
  display: flex;
  align-items: center;
}
.pk-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
.pk-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.pk-nav-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}
.pk-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.pk-nav-item { position: relative; }
.pk-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.pk-nav-link:hover, .pk-nav-link.active { color: #fff; background: rgba(255,255,255,0.08); }
.pk-nav-caret {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.pk-nav-item.open .pk-nav-caret { transform: rotate(180deg); }

/* Dropdown */
.pk-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  min-width: 200px;
  padding: 8px;
  z-index: 100;
}
.pk-dropdown-mega {
  left: -20px;
  min-width: 680px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pk-nav-item.open .pk-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.pk-dropdown-col-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 12px;
  padding: 0 8px;
}
.pk-dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
  color: #111;
  margin-bottom: 2px;
}
.pk-dropdown-link:hover { background: #f3f6ff; text-decoration: none; }
.pk-dropdown-link-icon {
  width: 32px; height: 32px;
  background: rgba(10,110,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0a6eff;
}
.pk-dropdown-link-icon svg { width: 16px; height: 16px; }
.pk-dropdown-link-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}
.pk-dropdown-link-desc {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.4;
  margin-top: 1px;
}
.pk-simple-dropdown-link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: background 0.15s;
}
.pk-simple-dropdown-link:hover { background: #f3f6ff; text-decoration: none; }

/* Nav right CTA */
.pk-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a6eff;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.pk-nav-cta:hover { background: #0051cc; color: #fff; text-decoration: none; }

/* Mobile hamburger */
.pk-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.pk-nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.pk-nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pk-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.pk-nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.pk-mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: #000;
  padding: 20px;
  overflow-y: auto;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.pk-mobile-nav.open { display: flex; }
.pk-mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s;
}
.pk-mobile-nav-link:hover { background: rgba(255,255,255,0.08); color: #fff; }
.pk-mobile-nav-section {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 16px 16px 8px;
}
.pk-mobile-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 8px 0;
}

@media (max-width: 900px) {
  .pk-nav-links, .pk-nav-cta { display: none; }
  .pk-nav-hamburger { display: flex; }
}

/* Page offset for fixed nav */
body { padding-top: 64px; }

/* ─── Hero ─── */
.pk-hero {
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 100px 0 80px;
  min-height: calc(88vh - 64px);
  display: flex;
  align-items: center;
}
.pk-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.pk-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-drift 14s ease-in-out infinite alternate;
}
.pk-hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(10,110,255,0.35) 0%, transparent 70%);
  top: -120px; left: -80px;
  animation-duration: 16s;
}
.pk-hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(80,180,255,0.2) 0%, transparent 70%);
  bottom: -60px; right: 10%;
  animation-duration: 12s;
  animation-delay: -4s;
}
@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.06); }
  100% { transform: translate(-20px, 30px) scale(0.96); }
}
.pk-hero-content { position: relative; z-index: 2; max-width: 780px; }
.pk-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.pk-hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0a6eff;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.pk-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 22ch;
}
.pk-hero-title em { font-style: normal; color: #0a6eff; }
.pk-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}
.pk-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.pk-hero .pk-container { width: 100%; }

/* ─── Stats bar ─── */
.pk-stats-bar {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 52px 0;
}
.pk-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .pk-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
}
.pk-stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.pk-stat:last-child { border-right: none; }
@media (max-width: 767px) {
  .pk-stat:nth-child(2) { border-right: none; }
  .pk-stat:nth-child(3) { border-right: 1px solid rgba(0,0,0,0.08); }
}
.pk-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #0a6eff;
  line-height: 1;
  margin-bottom: 6px;
}
.pk-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}

/* ─── Audience cards ─── */
.pk-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 860px) { .pk-audience-grid { grid-template-columns: 1fr; } }
.pk-audience-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pk-audience-card:hover { box-shadow: 0 20px 48px rgba(0,0,0,0.1); transform: translateY(-4px); }
.pk-audience-img { width: 100%; height: 220px; object-fit: cover; }
.pk-audience-body { padding: 36px 36px 40px; }
@media (max-width: 767px) { .pk-audience-body { padding: 24px; } }
.pk-audience-tag {
  display: inline-block;
  background: rgba(10,110,255,0.08);
  color: #0a6eff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.pk-audience-title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #000;
  margin-bottom: 0.75rem;
}
.pk-audience-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.55);
  margin-bottom: 1.5rem;
}
.pk-feature-list {
  list-style: none;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pk-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
  line-height: 1.5;
}
.pk-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: #0a6eff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.pk-check svg { width: 10px; height: 10px; }

/* ─── Module cards ─── */
.pk-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .pk-modules-grid { grid-template-columns: 1fr; } }
.pk-module-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 40px 36px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.pk-module-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  transform: translateY(-4px);
  border-color: rgba(10,110,255,0.2);
}
.pk-module-icon {
  width: 48px; height: 48px;
  background: rgba(10,110,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
  color: #0a6eff;
}
.pk-module-card:hover .pk-module-icon { background: rgba(10,110,255,0.15); }
.pk-module-icon svg { width: 24px; height: 24px; }
.pk-module-title { font-size: 1.15rem; font-weight: 600; color: #000; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.pk-module-desc { font-size: 0.9rem; line-height: 1.6; color: rgba(0,0,0,0.55); margin-bottom: 1.5rem; }
.pk-module-items { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pk-module-items li {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.6);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.pk-module-items li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: #0a6eff;
  border-radius: 50%;
}

/* ─── Testimonial cards ─── */
.pk-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .pk-testimonials-grid { grid-template-columns: 1fr; } }
.pk-testimonial-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pk-testimonial-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.09); transform: translateY(-4px); }
.pk-testimonial-quote { font-size: 0.95rem; line-height: 1.7; color: rgba(0,0,0,0.7); flex: 1; font-style: italic; }
.pk-testimonial-metrics { display: flex; gap: 20px; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 20px; }
.pk-metric { display: flex; flex-direction: column; gap: 2px; }
.pk-metric-value { font-size: 1.4rem; font-weight: 300; letter-spacing: -0.02em; color: #0a6eff; line-height: 1; }
.pk-metric-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(0,0,0,0.4); }
.pk-testimonial-person { display: flex; align-items: center; gap: 12px; }
.pk-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10,110,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: #0a6eff;
  flex-shrink: 0;
}
.pk-testimonial-name { font-size: 0.9rem; font-weight: 600; color: #000; line-height: 1.2; }
.pk-testimonial-role { font-size: 0.78rem; color: rgba(0,0,0,0.45); }

/* ─── Differentiator band ─── */
.pk-diff-band {
  padding: 96px 0;
  background: linear-gradient(135deg, #000 0%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}
.pk-diff-band::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,110,255,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.pk-diff-inner { position: relative; z-index: 1; max-width: 760px; }
.pk-diff-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.pk-diff-title strong { font-weight: 500; color: #0a6eff; }
.pk-diff-sub { font-size: 1.05rem; line-height: 1.65; color: rgba(255,255,255,0.55); max-width: 52ch; margin-bottom: 2.5rem; }
.pk-diff-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 767px) { .pk-diff-pillars { grid-template-columns: 1fr; gap: 24px; } }
.pk-pillar-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #0a6eff; margin-bottom: 8px; }
.pk-pillar-title { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.pk-pillar-desc { font-size: 0.85rem; line-height: 1.55; color: rgba(255,255,255,0.45); }

/* ─── FAQ accordion ─── */
.pk-faq-accordion {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  overflow: hidden;
}
.pk-faq-entry { border-bottom: 1px solid rgba(0,0,0,0.06); }
.pk-faq-entry:last-child { border-bottom: none; }
.pk-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.pk-faq-trigger:hover { background: rgba(10,110,255,0.03); }
.pk-faq-trigger-text { font-size: 0.95rem; font-weight: 600; color: #000; line-height: 1.4; }
.pk-faq-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  color: rgba(0,0,0,0.4);
}
.pk-faq-chevron svg { width: 14px; height: 14px; transition: transform 0.3s; }
.pk-faq-entry.open .pk-faq-chevron { border-color: #0a6eff; background: #0a6eff; color: #fff; }
.pk-faq-entry.open .pk-faq-chevron svg { transform: rotate(180deg); }
.pk-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.pk-faq-entry.open .pk-faq-body { max-height: 300px; }
.pk-faq-body-inner {
  padding: 20px 32px 28px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.55);
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* ─── Contact grid ─── */
.pk-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .pk-contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pk-contact-grid { grid-template-columns: 1fr; } }
.pk-contact-card { display: flex; flex-direction: column; gap: 16px; }
.pk-contact-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 14px; }
.pk-contact-title { font-size: 1rem; font-weight: 600; color: #000; }
.pk-contact-desc { font-size: 0.85rem; line-height: 1.55; color: rgba(0,0,0,0.5); flex: 1; }

/* ─── Footer ─── */
.pk-footer { background: #000; color: rgba(255,255,255,0.45); padding: 48px 0; }
.pk-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.pk-footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.pk-footer-links { display: flex; gap: 24px; }
.pk-footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.pk-footer-links a:hover { color: #fff; }
.pk-footer-copy { font-size: 0.8rem; }

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── About page ─── */
.pk-about-hero {
  background: linear-gradient(135deg, #000 0%, #0a1628 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.pk-about-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,110,255,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.pk-about-hero-content { position: relative; z-index: 1; max-width: 640px; }
.pk-about-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.pk-about-hero-title strong { font-weight: 500; color: #0a6eff; }
.pk-about-hero-sub { font-size: 1.1rem; line-height: 1.65; color: rgba(255,255,255,0.6); max-width: 50ch; }

.pk-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .pk-values-grid { grid-template-columns: 1fr; } }
.pk-value-card {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pk-value-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.pk-value-icon {
  width: 44px; height: 44px;
  background: rgba(10,110,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #0a6eff;
}
.pk-value-icon svg { width: 22px; height: 22px; }
.pk-value-title { font-size: 1.05rem; font-weight: 600; color: #000; margin-bottom: 0.5rem; }
.pk-value-desc { font-size: 0.875rem; line-height: 1.65; color: rgba(0,0,0,0.55); }

.pk-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .pk-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pk-team-grid { grid-template-columns: 1fr; } }
.pk-team-card { text-align: center; }
.pk-team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(10,110,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #0a6eff;
  margin: 0 auto 1rem;
}
.pk-team-name { font-size: 1rem; font-weight: 600; color: #000; margin-bottom: 4px; }
.pk-team-role { font-size: 0.85rem; color: rgba(0,0,0,0.5); }

/* ─── Insights page ─── */
.pk-insights-hero {
  background: linear-gradient(135deg, #000 0%, #0a1628 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.pk-insights-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,110,255,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.pk-insights-hero-content { position: relative; z-index: 1; max-width: 640px; }
.pk-insights-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.pk-insights-hero-title strong { font-weight: 500; color: #0a6eff; }
.pk-insights-hero-sub { font-size: 1.1rem; line-height: 1.65; color: rgba(255,255,255,0.6); max-width: 52ch; }

.pk-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pk-feature-row:last-child { border-bottom: none; }
.pk-feature-row.reverse { direction: rtl; }
.pk-feature-row.reverse > * { direction: ltr; }
@media (max-width: 860px) {
  .pk-feature-row, .pk-feature-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
}
.pk-feature-visual {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a6eff;
  overflow: hidden;
}
.pk-feature-visual svg { width: 64px; height: 64px; opacity: 0.4; }
.pk-feature-text-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 1rem;
}
.pk-feature-text-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.55);
  margin-bottom: 1.5rem;
}
.pk-feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 2rem; }
.pk-feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
  line-height: 1.5;
}

/* ─── Contact page ─── */
.pk-contact-hero {
  background: linear-gradient(135deg, #000 0%, #0a1628 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.pk-contact-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,110,255,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.pk-contact-hero-content { position: relative; z-index: 1; }
.pk-contact-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1rem;
}
.pk-contact-hero-title strong { font-weight: 500; color: #0a6eff; }
.pk-contact-hero-sub { font-size: 1.1rem; line-height: 1.65; color: rgba(255,255,255,0.6); max-width: 48ch; }

.pk-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) { .pk-contact-layout { grid-template-columns: 1fr; gap: 40px; } }

.pk-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.pk-form-label { font-size: 0.875rem; font-weight: 600; color: #111; }
.pk-form-input, .pk-form-select, .pk-form-textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #111;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
}
.pk-form-input:focus, .pk-form-select:focus, .pk-form-textarea:focus {
  border-color: #0a6eff;
  box-shadow: 0 0 0 3px rgba(10,110,255,0.12);
}
.pk-form-textarea { resize: vertical; min-height: 120px; }

.pk-contact-info { display: flex; flex-direction: column; gap: 32px; }
.pk-contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.pk-contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(10,110,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0a6eff;
}
.pk-contact-info-icon svg { width: 20px; height: 20px; }
.pk-contact-info-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(0,0,0,0.4); margin-bottom: 4px; }
.pk-contact-info-value { font-size: 0.95rem; color: #111; line-height: 1.5; }

/* ─── Legal pages ─── */
.pk-legal-hero {
  background: #000;
  padding: 64px 0;
}
.pk-legal-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
}
.pk-legal-content {
  padding: 64px 0;
  max-width: 760px;
}
.pk-legal-content h1, .pk-legal-content h2, .pk-legal-content h3 {
  margin-bottom: 0.75rem;
  margin-top: 2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pk-legal-content h1 { font-size: 1.8rem; }
.pk-legal-content h2 { font-size: 1.3rem; }
.pk-legal-content h3 { font-size: 1.1rem; }
.pk-legal-content p { font-size: 0.95rem; line-height: 1.75; color: rgba(0,0,0,0.65); margin-bottom: 1rem; }
.pk-legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.pk-legal-content ul li { font-size: 0.95rem; line-height: 1.75; color: rgba(0,0,0,0.65); margin-bottom: 0.4rem; }
.pk-legal-content a { color: #0a6eff; }
