/* ═══════════════════════════════════════════════════════
   KENNETIK KOMMUNICATIONS — GLOBAL STYLES v2
   Fonts:  Fraunces (display) + Manrope (body)
   Colors: Navy #1B2A6B | Orange #E8681A
   Typography Standard: 18px body | 1.6 lh | heading scale applied
   Layout: Full-width sections | 720px prose cap | 1160px layout cap
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,700;1,9..144,800;1,9..144,900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --navy:       #1B2A6B;
  --navy-deep:  #111d4e;
  --navy-mid:   #243580;
  --orange:     #E8681A;
  --orange-lt:  #f57c35;
  --white:      #ffffff;
  --light-bg:   #f0f3fc;
  --text:       #1a1a2e;
  --muted:      #6b7099;
  --border:     #dde1f0;

  /* Fonts */
  --font-display: 'Fraunces', serif;
  --font-body:    'Manrope', sans-serif;

  /* Typography Standard */
  --body-size:  18px;
  --body-lh:    1.6;
  --h1-size:    2.2rem;
  --h2-size:    1.75rem;
  --h3-size:    1.4rem;

  /* Layout */
  --max-layout: 1160px;
  --max-prose:  720px;
  --pad:        clamp(20px, 5vw, 64px);

  /* Logo bar height — standard across all pages */
  --logo-height: 28px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── HEADING SCALE (Typography Standard) ── */
h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

/* ── LAYOUT HELPERS ── */
.container {
  max-width: var(--max-layout);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.prose {
  max-width: var(--max-prose);
}
.section       { padding: 96px var(--pad); }
.section-sm    { padding: 64px var(--pad); }
.section-lg    { padding: 120px var(--pad); }
.page-top      { padding-top: 68px; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200; height: 68px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 var(--pad);
  box-shadow: 0 1px 12px rgba(27,42,107,.08);
}
.nav-inner {
  width: 100%; max-width: var(--max-layout);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 600;
  color: var(--navy);
  padding: 6px 12px; border-radius: 4px;
  transition: all .15s;
}
.nav-links a:hover { color: var(--orange); background: rgba(232,104,26,.06); }
.nav-links .nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 8px 18px; font-weight: 700; margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--orange-lt); color: var(--white) !important; }
.nav-links .nav-speak {
  font-size: 0.82rem !important; font-weight: 500 !important;
  color: var(--muted) !important;
  border-left: 1px solid var(--border);
  margin-left: 8px; padding-left: 14px !important;
}
.nav-links .nav-speak:hover { color: var(--navy) !important; background: transparent !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .6rem; }
.dropdown-menu {
  display: none; position: absolute;
  top: 100%; left: 0;
  /* padding-top creates an invisible bridge between the
     nav link and the menu so the hover doesn't break
     as the mouse travels downward to click an item    */
  padding-top: 8px;
  min-width: 220px;
  z-index: 300;
}
/* The visible panel sits inside the padding bridge */
.dropdown-menu-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(27,42,107,.12);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 16px;
  font-size: .88rem; font-weight: 500;
  color: var(--navy) !important;
  border-radius: 0 !important; background: transparent !important;
  transition: all .1s;
}
.dropdown-menu a:hover {
  background: var(--light-bg) !important;
  color: var(--orange) !important;
}
.dd-label {
  display: block; padding: 10px 16px 5px;
  font-size: .6rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.dd-label:first-child { border-top: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.875rem; border-radius: 4px;
  padding: 14px 28px; transition: all .15s;
  cursor: pointer; border: none;
  text-decoration: none;
}
.btn-primary   { background: var(--orange); color: var(--white); }
.btn-primary:hover   { background: var(--orange-lt); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,104,26,.3); }
.btn-primary:visited { background: var(--orange); color: var(--white); }

.btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn-secondary:hover  { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.05); }
.btn-secondary:visited { color: var(--white); }

.btn-navy      { background: var(--navy); color: var(--white); }
.btn-navy:hover      { background: var(--navy-mid); transform: translateY(-1px); }
.btn-navy:visited    { background: var(--navy); color: var(--white); }

.btn-outline   { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover   { background: var(--navy); color: var(--white); }
.btn-outline:visited { color: var(--navy); }

.btn-lg { padding: 16px 36px; font-size: .95rem; }
.btn-sm { padding: 9px 18px; font-size: .8rem; }

/* ── EYEBROW LABELS ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: .7rem;
  font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 26px; height: 2px; background: var(--orange);
}
.eyebrow-white { color: rgba(255,255,255,.55); }
.eyebrow-white::before { background: rgba(255,255,255,.25); }

/* ── PILLS ── */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(232,104,26,.1);
  border: 1px solid rgba(232,104,26,.25);
  border-radius: 100px; padding: 4px 13px;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange);
}

/* ── CLIENT LOGO BAR ──
   Recommended logo height: 28px
   This keeps logos consistent, readable, and non-distracting
   at both desktop and mobile. Use 28px height, auto width,
   desaturated to ~15% opacity (filter: grayscale(100%) opacity(0.35))
   so they read as a unified trust strip, not a color clash.
   On hover, animate to full opacity.
── */
.logo-bar {
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--pad);
  overflow: hidden;
}
.logo-bar-inner {
  max-width: var(--max-layout); margin: 0 auto;
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.logo-bar-label {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; flex-shrink: 0;
}
.logo-list {
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 28px;
}
/* Real logo images — use this class on <img> tags */
.client-logo {
  height: var(--logo-height); /* 28px — standard across all pages */
  width: auto;
  filter: grayscale(100%) opacity(0.35);
  transition: filter .2s;
}
.client-logo:hover { filter: grayscale(0%) opacity(1); }

/* Text fallback while images load */
.logo-text-fallback {
  font-family: var(--font-display); font-weight: 700;
  font-size: .88rem; color: #b8bdd4;
  line-height: var(--logo-height);
  transition: color .2s;
}
.logo-text-fallback:hover { color: var(--navy); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--orange); padding: 40px var(--pad);
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.stat-item {
  text-align: center; padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,.25);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 2.8rem; color: var(--white);
  line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ── CREDIBILITY STRIP (replaces RK3 guide section on homepage) ── */
.cred-strip {
  background: var(--navy-deep);
  padding: 22px var(--pad);
  border-top: 1px solid rgba(255,255,255,.05);
}
.cred-strip-inner {
  max-width: var(--max-layout); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.cred-items {
  display: flex; align-items: center;
  gap: 0; flex-wrap: wrap;
}
.cred-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  font-size: .78rem; color: rgba(255,255,255,.45);
}
.cred-item:first-child { padding-left: 0; }
.cred-item:last-child { border-right: none; }
.cred-item strong { color: rgba(255,255,255,.7); font-weight: 600; }
.cred-dot { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.cred-link {
  font-size: .78rem; font-weight: 700; color: var(--orange);
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap; transition: gap .15s;
}
.cred-link:hover { gap: 9px; }

/* ── TESTIMONIALS ── */
.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.t-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 28px;
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.t-card:hover {
  box-shadow: 0 12px 40px rgba(27,42,107,.09);
  transform: translateY(-2px);
}

/* Optional: testimonial with image above quote */
.t-card-img {
  width: 100%; aspect-ratio: 16/9;
  border-radius: 6px; overflow: hidden;
  margin-bottom: 20px; position: relative;
  background: var(--light-bg);
}
.t-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}
/* Image placeholder style */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  background: var(--light-bg);
  border: 2px dashed var(--border);
  border-radius: 6px;
}
.img-placeholder .ph-icon { font-size: 1.4rem; opacity: .4; }
.img-placeholder .ph-label {
  font-size: .72rem; font-weight: 600;
  color: var(--muted); text-align: center;
  letter-spacing: .04em; line-height: 1.4;
  padding: 0 12px;
}
.img-placeholder .ph-spec {
  font-size: .65rem; color: #b8bdd4;
  letter-spacing: .02em;
}

.t-stars { color: var(--orange); font-size: .88rem; margin-bottom: 14px; }
.t-quote {
  font-family: var(--font-display); font-style: italic;
  font-weight: 700; font-size: .95rem; line-height: 1.5;
  color: var(--text); margin-bottom: 20px; flex: 1;
}
.t-quote::before {
  content: '\201C'; color: var(--orange);
  font-size: 1.8rem; line-height: 0;
  vertical-align: -.35em; margin-right: 2px;
}
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: var(--font-display); font-weight: 900;
  font-size: .88rem; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.t-name { font-size: .8rem; font-weight: 700; color: var(--text); }
.t-org  { font-size: .72rem; color: var(--muted); }

/* ── CALLOUT BOX ── */
.callout {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px; margin: 28px 0;
}
.callout h4 {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 800;
  color: var(--navy); margin-bottom: 7px;
}
.callout p {
  font-size: .875rem; line-height: 1.7; color: var(--muted);
}

/* ── CARD ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(27,42,107,.08);
  transform: translateY(-3px);
}
.card-dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px; padding: 36px;
  transition: all .2s;
}
.card-dark:hover {
  background: rgba(232,104,26,.07);
  border-color: rgba(232,104,26,.28);
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--navy);
  padding: 96px var(--pad);
  text-align: center; position: relative; overflow: hidden;
}
/* Optional dark background image behind CTA */
.cta-bg-img {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .08; pointer-events: none;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 80px var(--pad) 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.012) 0, rgba(255,255,255,.012) 1px,
    transparent 1px, transparent 48px
  );
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-layout); margin: 0 auto;
  position: relative; z-index: 2;
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-style: italic; letter-spacing: -.03em;
  line-height: 1.05; color: var(--white);
  margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero .hero-sub {
  font-size: 1.05rem; line-height: 1.75;
  color: rgba(255,255,255,.5);
  max-width: 560px; font-weight: 300;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: .75rem; color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.35); transition: color .15s; }
.breadcrumb a:hover { color: rgba(255,255,255,.7); }
.breadcrumb .sep { color: rgba(255,255,255,.15); }

/* ── MODULE LIST ── */
.module-list { display: flex; flex-direction: column; gap: 7px; }
.module-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .83rem; font-weight: 500;
  color: rgba(255,255,255,.55);
}
.module-item::before {
  content: ''; width: 5px; height: 5px;
  background: var(--orange); border-radius: 50%; flex-shrink: 0;
}
.module-item-dark { color: var(--muted); }
.module-item-dark::before { background: var(--orange); }

/* ── OUTCOMES LIST ── */
.outcomes { list-style: none; }
.outcomes li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: .9rem; line-height: 1.6; color: var(--text);
}
.outcomes li:last-child { border-bottom: none; }
.outcomes li::before {
  content: '✦'; color: var(--orange);
  font-size: .68rem; margin-top: 4px; flex-shrink: 0;
}

/* ── WHO GRID ── */
.who-grid { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.who-item {
  background: var(--light-bg); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 15px;
  font-size: .78rem; font-weight: 500; color: var(--muted);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-deep);
  padding: 56px var(--pad) 32px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  max-width: var(--max-layout); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-brand .logo {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.05rem; color: var(--white); margin-bottom: 7px;
}
.footer-brand .logo .k { color: var(--orange); }
.footer-brand .tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: .82rem; color: rgba(255,255,255,.28);
  margin-bottom: 18px;
}
.footer-brand .contact {
  font-size: .78rem; color: rgba(255,255,255,.32);
  line-height: 1.7;
}
.footer-col h5 {
  font-family: var(--font-body); font-size: .63rem;
  font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: .8rem;
  color: rgba(255,255,255,.38); margin-bottom: 9px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-layout); margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.2); }

/* ── IMAGE PLACEHOLDER UTILITY ── */
.ph-block {
  background: var(--light-bg);
  border: 2px dashed var(--border);
  border-radius: 8px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 24px;
  position: relative;
}
.ph-block .ph-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--orange); color: var(--white);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 3px;
}
.ph-block .ph-icon-lg { font-size: 2.2rem; opacity: .35; }
.ph-block .ph-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: .95rem; color: var(--muted);
}
.ph-block .ph-desc {
  font-size: .78rem; line-height: 1.55; color: #b8bdd4;
  max-width: 240px;
}
.ph-block .ph-size {
  font-size: .65rem; color: #cdd0df;
  font-weight: 600; letter-spacing: .04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links .nav-speak { display: none; }
}
@media (max-width: 640px) {
  :root { --pad: 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-item { padding: 0 20px; }
  .stats-bar { gap: 0; }
  .cred-items { flex-direction: column; gap: 8px; }
  .cred-item { padding-left: 0; border-right: none; }
}
