/* ============================================================
   Kome Care — Pages Redesign Stylesheet
   Pages: About Us, Meet the Founder, Meet the Team,
          Equality & Diversity, Feedback
   Prefix: .kcp-  (kome-care-pages — no conflicts)
   ============================================================ */

/* ── Shared helpers ─────────────────────────────────────── */
.kcp-section         { padding: 90px 0; }
.kcp-section-sm      { padding: 60px 0; }
.kcp-section-lg      { padding: 120px 0; }
.kcp-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff3ee;
  color: var(--kc-orange-dark);
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.kcp-label i { font-size: .7rem; }
.kcp-h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--kc-navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.kcp-h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--kc-navy);
  line-height: 1.3;
}
.kcp-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--kc-body);
  max-width: 640px;
}
.kcp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .22s ease;
  cursor: pointer;
  border: none;
}
.kcp-btn-primary {
  background: var(--kc-orange);
  color: #fff;
}
.kcp-btn-primary:hover { background: var(--kc-orange-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,121,52,.35); }
.kcp-btn-outline {
  background: transparent;
  color: var(--kc-navy);
  border: 2px solid var(--kc-navy);
}
.kcp-btn-outline:hover { background: var(--kc-navy); color: #fff; transform: translateY(-2px); }
.kcp-btn-white {
  background: #fff;
  color: var(--kc-navy);
}
.kcp-btn-white:hover { background: var(--kc-warm-bg); color: var(--kc-navy); transform: translateY(-2px); }

/* ── Stats strip ─────────────────────────────────────────── */
.kcp-stats-strip {
  background: var(--kc-navy);
  padding: 48px 0;
}
.kcp-stat-item { text-align: center; padding: 0 20px; }
.kcp-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--kc-orange);
  line-height: 1;
  display: block;
}
.kcp-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
  font-weight: 500;
}

/* ── Divider line with icon ──────────────────────────────── */
.kcp-section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.kcp-section-divider::before,
.kcp-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--kc-border);
}
.kcp-section-divider span {
  color: var(--kc-orange);
  font-size: 1.1rem;
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* Mission / Vision split */
.kcp-mv-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,28,76,.12);
}
.kcp-mv-panel {
  padding: 60px 48px;
}
.kcp-mv-panel--mission {
  background: var(--kc-navy);
  color: #fff;
}
.kcp-mv-panel--vision {
  background: var(--kc-warm-bg);
}
.kcp-mv-panel--mission .kcp-h3 { color: #fff; }
.kcp-mv-panel--mission p { color: rgba(255,255,255,.8); line-height: 1.75; }
.kcp-mv-panel--vision p { color: var(--kc-body); line-height: 1.75; }
.kcp-mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.kcp-mv-panel--mission .kcp-mv-icon { background: rgba(255,255,255,.12); color: var(--kc-orange); }
.kcp-mv-panel--vision .kcp-mv-icon  { background: var(--kc-orange); color: #fff; }

/* Values grid */
.kcp-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.kcp-value-card {
  background: #fff;
  border: 1px solid var(--kc-border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.kcp-value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--kc-orange) 0%, var(--kc-orange-dark) 100%);
  opacity: 0;
  transition: opacity .25s ease;
}
.kcp-value-card:hover::before { opacity: 1; }
.kcp-value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(255,121,52,.25); border-color: transparent; }
.kcp-value-card > * { position: relative; z-index: 1; }
.kcp-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff3ee;
  color: var(--kc-orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: background .25s ease, color .25s ease;
}
.kcp-value-card:hover .kcp-value-icon { background: rgba(255,255,255,.2); color: #fff; }
.kcp-value-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 8px;
  transition: color .25s ease;
}
.kcp-value-card:hover h4,
.kcp-value-card:hover p { color: #fff; }
.kcp-value-card p { font-size: .88rem; line-height: 1.6; color: var(--kc-body); margin: 0; transition: color .25s ease; }

/* Timeline */
.kcp-timeline { position: relative; padding-left: 40px; }
.kcp-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--kc-orange), var(--kc-navy));
}
.kcp-timeline-item {
  position: relative;
  margin-bottom: 40px;
  animation: kcpFadeUp .5s ease both;
}
.kcp-timeline-item:last-child { margin-bottom: 0; }
.kcp-timeline-dot {
  position: absolute;
  left: -35px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--kc-orange);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--kc-orange);
}
.kcp-timeline-year {
  font-family: 'Sora', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--kc-orange-dark);
  margin-bottom: 4px;
}
.kcp-timeline-item h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 6px;
}
.kcp-timeline-item p { font-size: .88rem; color: var(--kc-body); line-height: 1.6; margin: 0; }

/* Why choose us grid */
.kcp-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.kcp-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--kc-border);
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.kcp-why-item:hover { box-shadow: 0 8px 28px rgba(0,28,76,.1); transform: translateY(-3px); }
.kcp-why-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: var(--kc-warm-bg);
  color: var(--kc-orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.kcp-why-item h5 {
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 4px;
}
.kcp-why-item p { font-size: .84rem; color: var(--kc-body); margin: 0; line-height: 1.55; }

/* CTA banner */
.kcp-cta-banner {
  background: linear-gradient(135deg, var(--kc-navy) 0%, #0a3472 100%);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kcp-cta-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,155,113,.1);
}
.kcp-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -30px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,155,113,.06);
}
.kcp-cta-banner > * { position: relative; z-index: 1; }
.kcp-cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.kcp-cta-banner p { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 28px; }

/* ============================================================
   MEET THE FOUNDER PAGE
   ============================================================ */
.kcp-founder-hero {
  background: var(--kc-warm-bg);
  padding: 80px 0 0;
}
.kcp-founder-photo-wrap {
  position: relative;
  display: inline-block;
}
.kcp-founder-photo {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,28,76,.18);
}
.kcp-founder-badge {
  position: absolute;
  bottom: 28px;
  right: -24px;
  background: var(--kc-orange);
  color: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 8px 24px rgba(255,121,52,.4);
  text-align: center;
  line-height: 1.4;
}
.kcp-founder-badge strong { display: block; font-size: 1.3rem; }
.kcp-founder-socials { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.kcp-social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--kc-border);
  color: var(--kc-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  text-decoration: none;
  transition: all .2s ease;
}
.kcp-social-btn:hover { background: var(--kc-navy); color: #fff; border-color: var(--kc-navy); transform: translateY(-2px); }

/* Pullquote */
.kcp-pullquote {
  background: var(--kc-navy);
  border-radius: 20px;
  padding: 48px 52px;
  position: relative;
}
.kcp-pullquote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 8rem;
  color: rgba(255,155,113,.2);
  position: absolute;
  top: -20px;
  left: 28px;
  line-height: 1;
}
.kcp-pullquote p {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}
.kcp-pullquote cite {
  display: block;
  margin-top: 20px;
  font-size: .82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--kc-orange);
  position: relative;
  z-index: 1;
}

/* Credentials / achievements chips */
.kcp-creds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.kcp-cred-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--kc-border);
  border-radius: 14px;
  padding: 20px;
  transition: box-shadow .2s ease;
}
.kcp-cred-item:hover { box-shadow: 0 6px 24px rgba(0,28,76,.08); }
.kcp-cred-icon {
  width: 40px; min-width: 40px; height: 40px;
  border-radius: 10px;
  background: #fff3ee;
  color: var(--kc-orange-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.kcp-cred-item h5 {
  font-family: 'Sora', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 2px;
}
.kcp-cred-item p { font-size: .8rem; color: var(--kc-body); margin: 0; line-height: 1.5; }

/* Founder letter */
.kcp-letter {
  background: #fff;
  border: 1px solid var(--kc-border);
  border-radius: 20px;
  padding: 52px 60px;
  position: relative;
}
.kcp-letter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(to right, var(--kc-orange), var(--kc-navy));
}
.kcp-letter p { font-size: .95rem; line-height: 1.8; color: var(--kc-body); margin-bottom: 16px; }
.kcp-letter-sig {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--kc-border);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--kc-navy);
}
.kcp-letter-sig span { display: block; font-size: .8rem; font-weight: 400; color: var(--kc-body); }

/* ============================================================
   MEET THE TEAM PAGE
   ============================================================ */
.kcp-team-intro {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 50% 0%, #0c3068 0%, var(--kc-navy) 58%, #00153a 100%);
  padding: 84px 0 116px;
  text-align: center;
}
/* Signature dot-grid texture (matches the site's hero language) */
.kcp-team-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
/* Warm glow to lift it off the navy page header above */
.kcp-team-intro::after {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  height: 440px;
  background: radial-gradient(circle, rgba(255,155,113,.16) 0%, transparent 70%);
  pointer-events: none;
}
.kcp-team-intro > .container { position: relative; z-index: 1; }
.kcp-team-intro .kcp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--kc-orange);
  background: rgba(255,155,113,.12);
  border: 1px solid rgba(255,155,113,.28);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.kcp-team-intro h2 {
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  margin: 0;
}
/* Accent divider under the heading */
.kcp-team-intro h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: var(--kc-orange);
  margin: 22px auto 0;
}
.kcp-team-intro p {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 20px auto 0;
}

.kcp-team-section { margin-top: -50px; padding: 0 0 80px; }
.kcp-dept-label {
  font-family: 'Sora', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--kc-orange-dark);
  border-bottom: 2px solid var(--kc-border);
  padding-bottom: 10px;
  margin-bottom: 28px;
}

.kcp-team-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.kcp-team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,28,76,.07);
  transition: all .3s ease;
}
.kcp-team-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,28,76,.14); }

.kcp-team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: var(--kc-warm-bg);
}
.kcp-team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.kcp-team-card:hover .kcp-team-img-wrap img { transform: scale(1.05); }
.kcp-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,28,76,.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}
.kcp-team-card:hover .kcp-team-overlay { opacity: 1; }
.kcp-team-overlay-socials { display: flex; gap: 8px; }
.kcp-team-overlay-socials a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background .2s;
}
.kcp-team-overlay-socials a:hover { background: var(--kc-orange); }
.kcp-team-body { padding: 24px; }
.kcp-team-body h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 4px;
}
.kcp-team-role {
  font-size: .8rem;
  font-weight: 600;
  color: var(--kc-orange-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
  display: block;
}
.kcp-team-bio { font-size: .84rem; color: var(--kc-body); line-height: 1.6; margin: 0; }
.kcp-team-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.kcp-tag {
  font-size: .7rem;
  font-weight: 600;
  background: var(--kc-soft-bg);
  color: var(--kc-navy);
  border-radius: 20px;
  padding: 3px 10px;
}

/* Placeholder card (no photo) */
.kcp-team-img-placeholder {
  height: 260px;
  background: linear-gradient(135deg, var(--kc-soft-bg) 0%, var(--kc-warm-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(0,28,76,.2);
}

/* Join the team card */
.kcp-join-card {
  background: var(--kc-navy);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.kcp-join-card h4 { color: #fff; font-size: 1.15rem; margin: 0; }
.kcp-join-card p { color: rgba(255,255,255,.7); font-size: .88rem; margin: 0; }
.kcp-join-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,155,113,.15);
  color: var(--kc-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

/* ============================================================
   EQUALITY & DIVERSITY PAGE
   ============================================================ */
.kcp-edi-hero {
  background: linear-gradient(150deg, #0a2d5e 0%, var(--kc-navy) 50%, #1a1050 100%);
  padding: 96px 0 104px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Warm corner glows + signature dot-grid texture for depth */
.kcp-edi-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,155,113,.14) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,155,113,.09) 0%, transparent 40%);
  pointer-events: none;
}
.kcp-edi-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.kcp-edi-hero > .container { position: relative; z-index: 1; }
.kcp-edi-hero .kcp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--kc-orange);
  background: rgba(255,155,113,.12);
  border: 1px solid rgba(255,155,113,.28);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.kcp-edi-hero h1 {
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  margin: 0 0 16px;
}
/* Accent divider under the heading */
.kcp-edi-hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: var(--kc-orange);
  margin: 22px auto 4px;
}
.kcp-edi-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 620px; margin: 0 auto 32px; line-height: 1.7; }

/* Commitment statement */
.kcp-commitment-banner {
  background: var(--kc-orange);
  padding: 36px 40px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.kcp-commitment-banner i { font-size: 2rem; color: rgba(255,255,255,.7); flex-shrink: 0; }
.kcp-commitment-banner p { margin: 0; font-size: 1.05rem; color: #fff; line-height: 1.65; font-weight: 500; }

/* Protected characteristics */
.kcp-chars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.kcp-char-card {
  background: #fff;
  border: 1px solid var(--kc-border);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all .22s ease;
}
.kcp-char-card:hover { border-color: var(--kc-orange); box-shadow: 0 6px 24px rgba(255,121,52,.12); transform: translateY(-3px); }
.kcp-char-icon {
  width: 44px; min-width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--kc-soft-bg);
  color: var(--kc-orange-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.kcp-char-card h5 {
  font-family: 'Sora', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 4px;
}
.kcp-char-card p { font-size: .8rem; color: var(--kc-body); margin: 0; line-height: 1.5; }

/* Commitment pillars */
.kcp-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.kcp-pillar {
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.kcp-pillar-num {
  font-family: 'Sora', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  opacity: .08;
  position: absolute;
  top: -8px;
  right: 20px;
  line-height: 1;
}
.kcp-pillar h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.kcp-pillar p { font-size: .88rem; line-height: 1.65; margin: 0; position: relative; z-index: 1; }
.kcp-pillar--1 { background: #eef4ff; }
.kcp-pillar--1 h4, .kcp-pillar--1 .kcp-pillar-num { color: #1a56db; }
.kcp-pillar--1 p { color: #374151; }
.kcp-pillar--2 { background: #f0fdf4; }
.kcp-pillar--2 h4, .kcp-pillar--2 .kcp-pillar-num { color: #16a34a; }
.kcp-pillar--2 p { color: #374151; }
.kcp-pillar--3 { background: #fff8ee; }
.kcp-pillar--3 h4, .kcp-pillar--3 .kcp-pillar-num { color: #d97706; }
.kcp-pillar--3 p { color: #374151; }
.kcp-pillar--4 { background: #fdf4ff; }
.kcp-pillar--4 h4, .kcp-pillar--4 .kcp-pillar-num { color: #9333ea; }
.kcp-pillar--4 p { color: #374151; }

/* EDI stats */
.kcp-edi-stats {
  background: var(--kc-navy);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.kcp-edi-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--kc-orange);
  display: block;
}
.kcp-edi-stat-label { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* Accordion (EDI principles) */
.kcp-accordion { border: 1px solid var(--kc-border); border-radius: 16px; overflow: hidden; }
.kcp-accordion-item { border-bottom: 1px solid var(--kc-border); }
.kcp-accordion-item:last-child { border-bottom: none; }
.kcp-accordion-btn {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 20px 24px;
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--kc-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background .2s;
}
.kcp-accordion-btn:hover { background: var(--kc-soft-bg); }
.kcp-accordion-btn .kcp-acc-icon { transition: transform .25s ease; color: var(--kc-orange-dark); flex-shrink: 0; }
.kcp-accordion-btn[aria-expanded="true"] .kcp-acc-icon { transform: rotate(180deg); }
.kcp-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  background: #fafafa;
}
.kcp-accordion-body.open { max-height: 600px; }
.kcp-accordion-body-inner { padding: 0 24px 20px; }
.kcp-accordion-body-inner p { font-size: .88rem; color: var(--kc-body); line-height: 1.7; margin: 0; }
.kcp-accordion-body-inner ul { padding-left: 20px; margin: 10px 0 0; }
.kcp-accordion-body-inner ul li { font-size: .88rem; color: var(--kc-body); line-height: 1.65; margin-bottom: 4px; }

/* ============================================================
   FEEDBACK PAGE
   ============================================================ */
.kcp-feedback-hero {
  background: linear-gradient(135deg, var(--kc-warm-bg) 0%, #fde8df 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.kcp-feedback-hero h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.kcp-feedback-hero p { color: var(--kc-body); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* Process steps */
.kcp-steps { display: flex; gap: 0; }
.kcp-step {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  position: relative;
}
.kcp-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 46px;
  right: -1px;
  width: 50%;
  height: 2px;
  background: var(--kc-border);
}
.kcp-step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--kc-orange);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(255,121,52,.3);
}
.kcp-step h5 {
  font-family: 'Sora', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 6px;
}
.kcp-step p { font-size: .8rem; color: var(--kc-body); margin: 0; line-height: 1.5; }

/* Star rating widget */
.kcp-star-rating {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}
.kcp-star-rating label {
  font-size: 2rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color .15s ease, transform .15s ease;
  line-height: 1;
}
.kcp-star-rating input { display: none; }
.kcp-star-rating label:hover,
.kcp-star-rating label:hover ~ label,
.kcp-star-rating input:checked ~ label { color: #f59e0b; }
/* .kcp-star-lit set by JS for correct reverse-sibling highlight on hover */
.kcp-star-rating label.kcp-star-lit { color: #f59e0b; }
.kcp-star-hint { font-size: .78rem; color: var(--kc-body); }

/* Feedback form */
.kcp-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,28,76,.08);
  border: 1px solid var(--kc-border);
}
.kcp-form-group { margin-bottom: 20px; }
.kcp-form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--kc-navy);
  margin-bottom: 7px;
  font-family: 'Inter', sans-serif;
}
.kcp-form-group label span { color: var(--kc-orange-dark); }
.kcp-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--kc-border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px; /* ≥16px prevents iOS Safari zoom-on-focus (R2) */
  color: var(--kc-navy);
  background: #fafafa;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
  -webkit-appearance: none;
}
.kcp-input:focus {
  border-color: var(--kc-orange);
  box-shadow: 0 0 0 3px rgba(255,155,113,.2);
  background: #fff;
}
textarea.kcp-input { min-height: 120px; resize: vertical; }
.kcp-input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.kcp-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--kc-orange);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.kcp-submit-btn:hover { background: var(--kc-orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,121,52,.35); }

/* Trust sidebar */
.kcp-trust-card {
  background: var(--kc-navy);
  border-radius: 18px;
  padding: 32px;
  color: #fff;
  margin-bottom: 20px;
}
.kcp-trust-card h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.kcp-trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.kcp-trust-item:last-child { margin-bottom: 0; }
.kcp-trust-item i { color: var(--kc-orange); margin-top: 2px; flex-shrink: 0; }
.kcp-trust-item p { font-size: .85rem; color: rgba(255,255,255,.75); margin: 0; line-height: 1.55; }

.kcp-testimonial-mini {
  background: var(--kc-warm-bg);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 16px;
  position: relative;
}
.kcp-testimonial-mini::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--kc-orange);
  position: absolute;
  top: -6px; left: 16px;
  line-height: 1;
}
.kcp-testimonial-mini p { font-size: .85rem; color: var(--kc-body); line-height: 1.6; margin-bottom: 10px; padding-top: 16px; }
.kcp-testimonial-mini cite { font-size: .75rem; font-weight: 700; color: var(--kc-navy); font-style: normal; }
.kcp-testimonial-stars { color: #f59e0b; font-size: .8rem; margin-bottom: 6px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes kcpFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.kcp-anim-fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.kcp-anim-fade-up.kcp-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .kcp-section { padding: 60px 0; }
  .kcp-mv-wrap { grid-template-columns: 1fr; }
  .kcp-values-grid { grid-template-columns: repeat(2, 1fr); }
  .kcp-why-grid { grid-template-columns: 1fr; }
  .kcp-creds-grid { grid-template-columns: 1fr; }
  .kcp-chars-grid { grid-template-columns: repeat(2, 1fr); }
  .kcp-pillar-grid { grid-template-columns: 1fr; }
  .kcp-edi-stats { grid-template-columns: repeat(2, 1fr); }
  .kcp-team-cards { grid-template-columns: repeat(2, 1fr); }
  .kcp-letter { padding: 40px 36px; }
  .kcp-cta-banner { padding: 48px 32px; }
  .kcp-input-grid { grid-template-columns: 1fr; }
  .kcp-steps { flex-direction: column; }
  .kcp-step:not(:last-child)::after { display: none; }
  .kcp-founder-badge { right: 0; }
}
@media (max-width: 576px) {
  .kcp-values-grid { grid-template-columns: 1fr; }
  .kcp-chars-grid { grid-template-columns: 1fr; }
  .kcp-edi-stats { grid-template-columns: repeat(2, 1fr); padding: 28px; }
  .kcp-team-cards { grid-template-columns: 1fr; }
  .kcp-mv-panel { padding: 36px 24px; }
  .kcp-letter { padding: 32px 24px; }
  .kcp-pullquote { padding: 36px 28px; }
  .kcp-form-card { padding: 28px 22px; }
}

/* ============================================================
   ADDITIONS — Meet the Founder, Meet the Team,
               Equality & Diversity, Feedback
   ============================================================ */

/* ── Eyebrow label ───────────────────────────────────────── */
.kcp-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--kc-orange-dark);
  margin-bottom: 14px;
}

/* ── Section background variants ─────────────────────────── */
.kcp-section--warm { background: var(--kc-warm-bg); }
.kcp-section--soft { background: var(--kc-soft-bg); }
.kcp-section--navy { background: var(--kc-navy); }
.kcp-section--navy h2, .kcp-section--navy h3 { color: #fff; }
.kcp-section--navy p { color: rgba(255,255,255,.75); }

/* ── Section header block ────────────────────────────────── */
.kcp-section-head h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 14px;
}

/* ── Two-column content layout ───────────────────────────── */
.kcp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.kcp-two-col h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 14px;
}
.kcp-two-col p { color: var(--kc-body); line-height: 1.7; margin-bottom: 12px; }

/* ── Founder hero two-column layout ─────────────────────── */
.kcp-founder-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
  padding-bottom: 60px;
}
.kcp-founder-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.kcp-founder-content p { color: var(--kc-body); line-height: 1.75; margin-bottom: 14px; }
.kcp-founder-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--kc-border);
}
.kcp-fact-item { text-align: center; }
.kcp-fact-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--kc-navy);
  display: block;
}
.kcp-fact-label { font-size: .72rem; color: var(--kc-body); margin-top: 3px; line-height: 1.4; display: block; }

/* letter-sig — add flex layout for img + text */
.kcp-letter-sig { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.kcp-letter-sig img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--kc-border);
}
.kcp-letter-sig strong { display: block; font-size: .95rem; color: var(--kc-navy); }

/* ── Team: commitment points ─────────────────────────────── */
.kcp-commit-points { display: flex; flex-direction: column; gap: 20px; }
.kcp-commit-item { display: flex; gap: 16px; align-items: flex-start; }
.kcp-commit-icon {
  width: 44px; min-width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff3ee;
  color: var(--kc-orange-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.kcp-commit-item h5 {
  font-family: 'Sora', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 4px;
}
.kcp-commit-item p { font-size: .83rem; color: var(--kc-body); margin: 0; line-height: 1.55; }

/* Join card — horizontal layout */
.kcp-join-card { text-align: left; }
.kcp-join-card h3 { color: #fff; font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.kcp-join-card-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.kcp-join-card-inner > div:first-child { flex: 1; min-width: 240px; }
.kcp-join-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── EDI: hero badges ────────────────────────────────────── */
.kcp-edi-hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.kcp-edi-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .82rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.kcp-edi-hero-badges span i { color: var(--kc-orange); }
.kcp-edi-hero-badges span:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,155,113,.45);
  transform: translateY(-2px);
}

/* Commitment banner — inner flex for icon + text */
.kcp-commitment-banner-inner { display: flex; align-items: center; gap: 24px; }
.kcp-commitment-banner-inner p { color: #fff; margin: 0; font-size: 1.05rem; line-height: 1.65; font-weight: 500; }
.kcp-commitment-icon {
  width: 56px; min-width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.kcp-commitment-banner h3 { color: #fff; font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }

/* EDI stats — override to block + add inner grid */
.kcp-edi-stats { display: block; padding: 56px 0; border-radius: 0; }
.kcp-edi-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

/* ── Feedback: layout ────────────────────────────────────── */
.kcp-feedback-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.kcp-feedback-sidebar { position: sticky; top: 100px; }
.kcp-form-card-head { margin-bottom: 28px; }
.kcp-form-card-head h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 8px;
}
.kcp-form-card-head p { font-size: .83rem; color: var(--kc-body); margin: 0; line-height: 1.6; }
.kcp-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kcp-input-group { margin-bottom: 20px; }
.kcp-input-group > label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--kc-navy);
  margin-bottom: 7px;
  font-family: 'Inter', sans-serif;
}
.kcp-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .83rem;
  color: var(--kc-body);
  line-height: 1.55;
  cursor: pointer;
}
.kcp-consent-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--kc-orange); }
.kcp-consent-label a { color: var(--kc-orange-dark); }

/* Trust card additions */
.kcp-trust-card p { font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 16px; line-height: 1.6; }
.kcp-trust-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,155,113,.18);
  color: var(--kc-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.kcp-trust-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--kc-orange);
  text-decoration: none;
}
.kcp-trust-link:hover { color: #ffd0b9; }

/* Testimonial mini: stars + span */
.kcp-testimonial-mini-stars { color: #f59e0b; font-size: .82rem; margin-bottom: 8px; display: block; }
.kcp-testimonial-mini span { font-size: .75rem; font-weight: 700; color: var(--kc-navy); display: block; }

/* ── Responsive additions ────────────────────────────────── */
@media (max-width: 991px) {
  .kcp-founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .kcp-founder-facts { grid-template-columns: repeat(2, 1fr); }
  .kcp-two-col { grid-template-columns: 1fr; gap: 36px; }
  .kcp-feedback-layout { grid-template-columns: 1fr; }
  .kcp-feedback-sidebar { position: static; }
  .kcp-form-row-2 { grid-template-columns: 1fr; }
  .kcp-edi-stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .kcp-founder-facts { grid-template-columns: 1fr; }
  .kcp-join-card-inner { flex-direction: column; }
  .kcp-edi-stats-inner { grid-template-columns: 1fr 1fr; }
  .kcp-commitment-banner-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   FOUNDER PAGE — Editorial redesign classes
   ============================================================ */

/* ── Masthead (typographic hero, no image) ───────────────── */
.kcp-fdr-masthead {
  background: var(--kc-navy);
  padding: 100px 0 88px;
  position: relative;
  overflow: hidden;
}
.kcp-fdr-masthead::before {
  content: '';
  position: absolute;
  top: -140px; right: -100px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,155,113,.1) 0%, transparent 65%);
  pointer-events: none;
}
.kcp-fdr-masthead::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 40%;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,155,113,.06) 0%, transparent 65%);
  pointer-events: none;
}
.kcp-fdr-masthead-inner { position: relative; z-index: 1; max-width: 900px; }
.kcp-fdr-masthead-eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--kc-orange);
  margin-bottom: 24px;
}
.kcp-fdr-masthead-name {
  margin-bottom: 20px;
  line-height: 0.88;
}
.kcp-fdr-n1 {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.025em;
}
.kcp-fdr-n2 {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.3);
}
.kcp-fdr-masthead-title {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.kcp-fdr-masthead-title::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--kc-orange);
  flex-shrink: 0;
  display: inline-block;
}
.kcp-fdr-masthead-tagline {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  padding-left: 50px;
}

/* Social button light variant (for dark backgrounds) */
.kcp-social-btn--light {
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.8);
}
.kcp-social-btn--light:hover {
  background: var(--kc-orange);
  border-color: var(--kc-orange);
  color: #fff;
}

/* ── Story section: float + text wrap ───────────────────── */
.kcp-fdr-float-img {
  float: right;
  width: 340px;
  margin: 6px 0 32px 48px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,28,76,.18);
  flex-shrink: 0;
}
.kcp-fdr-float-img-inner { line-height: 0; }
.kcp-fdr-float-img-inner img { width: 100%; height: auto; display: block; }

.kcp-fdr-float-nameplate {
  background: var(--kc-navy);
  padding: 18px 20px;
  text-align: center;
}
.kcp-fdr-float-nameplate strong {
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 3px;
}
.kcp-fdr-float-nameplate span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--kc-orange);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.kcp-fdr-float-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.kcp-fdr-float-socials a {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  text-decoration: none;
  transition: background .2s;
}
.kcp-fdr-float-socials a:hover { background: var(--kc-orange); color: #fff; }

.kcp-fdr-story-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.65rem, 2.8vw, 2.3rem);
  font-weight: 700;
  color: var(--kc-navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.kcp-section--warm .kcp-fdr-story-heading + p,
.kcp-section--warm p {
  color: var(--kc-body);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .95rem;
}

/* Inline year callout — sits within the paragraph flow */
.kcp-fdr-inline-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--kc-navy);
  border-radius: 10px;
  padding: 10px 18px;
  margin: 4px 0 20px;
}
.kcp-fdr-inline-stat strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--kc-orange);
  line-height: 1;
}
.kcp-fdr-inline-stat span {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
}

/* Credential tags after float clears */
.kcp-fdr-story-tags {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
}
.kcp-fdr-story-tags .kcp-tag { padding: 6px 14px; font-size: .75rem; }

/* Profile two-column layout */
.kcp-fdr-profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

/* Photo column */
.kcp-fdr-photo-col { text-align: center; }
.kcp-fdr-photo-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,28,76,.15);
  line-height: 0;
}
.kcp-fdr-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Name plate below photo */
.kcp-fdr-nameplate {
  margin-top: 20px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--kc-border);
}
.kcp-fdr-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin: 0 0 3px;
}
.kcp-fdr-role {
  font-size: .78rem;
  font-weight: 600;
  color: var(--kc-orange-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 14px;
}

/* Bio column */
.kcp-fdr-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--kc-navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.kcp-fdr-bio-col p { color: var(--kc-body); line-height: 1.75; margin-bottom: 14px; }

/* Journey timeline */
.kcp-fdr-timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.kcp-fdr-timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 76px;
  width: 2px;
  background: rgba(255,155,113,.25);
}
.kcp-fdr-milestone {
  display: flex;
  gap: 32px;
  padding-bottom: 44px;
  position: relative;
}
.kcp-fdr-milestone:last-child { padding-bottom: 0; }
.kcp-fdr-milestone-marker {
  width: 76px;
  flex-shrink: 0;
  text-align: right;
  padding-top: 4px;
  position: relative;
}
.kcp-fdr-milestone-marker::after {
  content: '';
  position: absolute;
  top: 9px;
  right: -18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--kc-orange);
  box-shadow: 0 0 0 3px rgba(255,155,113,.25);
  z-index: 1;
}
.kcp-fdr-milestone-year {
  font-family: 'Sora', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--kc-orange);
}
.kcp-fdr-milestone-body { flex: 1; padding-left: 20px; }
.kcp-fdr-milestone-body h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.kcp-fdr-milestone-body p {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin: 0;
}

/* Core values grid */
.kcp-fdr-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.kcp-fdr-value-card {
  background: #fff;
  border: 1px solid var(--kc-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.kcp-fdr-value-card:hover {
  box-shadow: 0 12px 40px rgba(0,28,76,.1);
  transform: translateY(-4px);
}
.kcp-fdr-value-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #fff3ee;
  color: var(--kc-orange-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.kcp-fdr-value-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin-bottom: 10px;
}
.kcp-fdr-value-card p {
  font-size: .85rem;
  color: var(--kc-body);
  line-height: 1.7;
  margin: 0;
}

/* Typographic signature — replaces photo-in-letter */
.kcp-fdr-sig {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--kc-border);
}
.kcp-fdr-sig-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  color: var(--kc-navy);
  margin: 0 0 4px;
  line-height: 1.2;
}
.kcp-fdr-sig-title {
  font-size: .8rem;
  font-weight: 600;
  color: var(--kc-body);
  letter-spacing: .03em;
}

/* Responsive */
@media (max-width: 991px) {
  .kcp-fdr-profile { grid-template-columns: 1fr; gap: 40px; }
  .kcp-fdr-photo-col { max-width: 360px; margin: 0 auto; }
  .kcp-fdr-masthead-name { line-height: .9; }
  .kcp-fdr-float-img { float: none; width: 100%; max-width: 340px; margin: 0 auto 32px; display: block; }
  .kcp-fdr-timeline::before { left: 60px; }
  .kcp-fdr-milestone-marker { width: 60px; }
  .kcp-fdr-milestone-marker::after { right: -14px; }
  .kcp-fdr-values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .kcp-fdr-n1, .kcp-fdr-n2 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .kcp-fdr-masthead-tagline { padding-left: 0; }
  .kcp-fdr-values { grid-template-columns: 1fr; }
  .kcp-fdr-timeline::before { left: 44px; }
  .kcp-fdr-milestone-marker { width: 44px; }
  .kcp-fdr-milestone-marker::after { right: -10px; width: 10px; height: 10px; }
  .kcp-fdr-milestone { gap: 20px; }
  .kcp-fdr-milestone-body { padding-left: 12px; }
}
