* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg-base: #FFFFFF;
  --bg-surface: #F8FAFC;
  --bg-elevated: #F1F5F9;
  --accent: #0055FF;
  /* Vibrant Corporate Blue */
  --accent-dark: #003BB3;
  --text-main: #0B1221;
  --text-muted: #5B6B82;
  --border-light: rgba(11, 18, 33, 0.05);
  --border-heavy: rgba(11, 18, 33, 0.1);
}

body {
  overflow-x: hidden;
  width: 100%;
}

.kf-page {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-base);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  color: var(--text-main);
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* NAV */
.kf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid var(--border-heavy);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Hamburger Button */
.kf-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.kf-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  margin: 5px 0;
  transition: 0.3s;
}

.kf-nav-toggle.active span {
  background: #FFFFFF;
}

.kf-nav-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.kf-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.kf-nav-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.kf-nav:hover {
  background: rgba(255, 255, 255, 0.95);
}

.kf-logo {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Logo Hexagon Motif */
.kf-logo::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 18px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.kf-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.kf-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.15s;
}

.kf-nav-links a:hover {
  color: var(--text-main);
}

.kf-nav-cta {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--accent);
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.15s ease;
}

.kf-nav-cta:hover {
  background: var(--accent);
  color: #FFFFFF;
}

/* HERO */
.kf-hero {
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 40px;
  border-bottom: 1px solid var(--border-heavy);
  background: var(--bg-surface);
}

/* Grid lines in background for structural feel */
.kf-hero-bg {
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, var(--border-light) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-light) 1px, transparent 1px);
  opacity: 0.3;
  z-index: 0;
}

.kf-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.kf-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid var(--border-heavy);
  background: var(--bg-base);
}

/* Hexagonal tag indicator */
.kf-hero-tag::before {
  content: '';
  width: 8px;
  height: 9px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.kf-hero h1 {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 76px;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text-main);
}

.kf-hero p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 40px;
}

.kf-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.kf-btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.15s ease;
}

.kf-btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.kf-btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--accent);
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.15s ease;
}

.kf-btn-ghost:hover {
  background: var(--accent);
  color: #FFFFFF;
}

.kf-hero-right {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.kf-stat-card {
  background: var(--bg-base);
  border: 1px solid var(--border-heavy);
  padding: 24px;
  text-align: left;
  min-width: 180px;
  border-left: 4px solid var(--accent);
  transition: transform 0.2s;
}

.kf-stat-card:hover {
  transform: translateX(-4px);
}

.kf-stat-number {
  font-family: 'Clash Display', sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: var(--text-main);
}

.kf-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* TRUST BAR / TICKER */
.kf-trust {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-heavy);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.kf-trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  margin-right: 32px;
  flex-shrink: 0;
}

.kf-trust-items {
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
}

.kf-trust-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 25s linear infinite;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.kf-trust-group {
  display: flex;
  flex-shrink: 0;
}

.kf-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 40px;
  border-right: 1px solid var(--border-heavy);
  white-space: nowrap;
}

.kf-trust-flag {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.05em;
}

.kf-trust-country {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* SERVICES - COMPASS STYLE ASYMMETRICAL */
.kf-services {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border-heavy);
  background: var(--bg-base);
}

.kf-section-header {
  margin-bottom: 60px;
  max-width: 600px;
}

.kf-section-title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-main);
}

/* Compass signature red divider */
.kf-section-title::before {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin-bottom: 24px;
}

.kf-services-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.kf-service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-heavy);
  padding: 48px 40px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Asymmetry */
.kf-service-card:nth-child(1) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.kf-service-card:hover {
  background: var(--bg-elevated);
  border-color: var(--border-heavy);
  box-shadow: inset 4px 0 0 0 var(--accent);
}

/* Hexagonal Service Badges */
.kf-service-num-wrapper {
  width: 80px;
  height: 92px;
  background: var(--bg-base);
  border: 1px solid var(--border-heavy);
  /* Outer border */
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 0.3s ease;
}

.kf-service-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  user-select: none;
}

.kf-service-card:hover .kf-service-num-wrapper {
  background: var(--accent);
}

.kf-service-card:hover .kf-service-num {
  color: var(--bg-base);
}

.kf-service-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-main);
  margin-bottom: 16px;
  margin-top: 24px;
}

.kf-service-card:nth-child(1) .kf-service-title {
  margin-top: 0;
}

.kf-service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 90%;
}

/* TERRITORY MAP */
.kf-territory {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border-heavy);
  background: var(--bg-surface);
}

.kf-territory-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.kf-territory p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.kf-territory-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kf-country-tag {
  border: 1px solid var(--border-heavy);
  background: var(--bg-base);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-main);
  transition: all 0.15s ease;
}

.kf-country-tag:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.kf-map-container {
  position: relative;
  width: 100%;
  padding: 40px;
  background: var(--bg-base);
  border: 1px solid var(--border-heavy);
  /* Hexagonal container clip for the map area */
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

.kf-map-container::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.kf-map-svg {
  width: 100%;
  max-height: 700px;
  position: relative;
  z-index: 2;
}

/* PILLARS */
.kf-pillars {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border-heavy);
  background: var(--bg-base);
}

.kf-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.kf-pillar {
  border-top: 4px solid var(--border-heavy);
  padding-top: 24px;
  transition: border-color 0.2s;
}

.kf-pillar:hover {
  border-top-color: var(--accent);
}

.kf-pillar-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.kf-pillar-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* BBBEE */
.kf-compliance {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-heavy);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.kf-compliance-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.kf-bbbee-badge {
  background: var(--bg-base);
  border: 1px solid var(--border-heavy);
  padding: 24px 32px;
  text-align: center;
  flex-shrink: 0;
  /* Hexagonal badge shape */
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.kf-bbbee-level {
  font-family: 'Clash Display', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.kf-bbbee-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.kf-compliance-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 440px;
}

.kf-compliance-desc strong {
  color: var(--text-main);
}

.kf-compliance-stats {
  display: flex;
  gap: 48px;
  flex-shrink: 0;
}

.kf-c-stat {
  text-align: left;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

.kf-c-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1;
}

.kf-c-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* CTA SECTION */
.kf-cta-section {
  padding: 120px 40px;
  text-align: center;
  background: var(--bg-surface);
  position: relative;
}

.kf-cta-section h2 {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 64px;
  text-transform: uppercase;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 24px;
}

.kf-cta-section p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.kf-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.kf-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-heavy);
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s ease;
}

.kf-whatsapp-btn:hover {
  background: var(--bg-elevated);
  border-color: #1DB954;
  color: #1DB954;
}

.kf-whatsapp-btn svg {
  fill: currentColor;
}

/* FOOTER */
.kf-footer {
  background: var(--bg-base);
  border-top: 4px solid var(--accent);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kf-footer-logo {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.kf-footer-logo::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 14px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.kf-footer-info {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.kf-footer-apex {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}

.kf-footer-apex span {
  color: var(--text-main);
  font-weight: 600;
}

/* Map Interaction Styles */
.kf-country-tag {
  cursor: pointer;
}

.kf-country-tag.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.kf-map-node {
  cursor: pointer;
}

.kf-map-node circle {
  transition: fill 0.2s;
}

.kf-map-node text {
  transition: fill 0.2s, font-weight 0.2s;
}

.kf-map-node.active circle {
  fill: var(--accent) !important;
}

.kf-map-node.active text {
  fill: var(--text-main) !important;
  font-weight: 700 !important;
}

.route-anim {
  animation: dashAnim 2s linear infinite;
}

@keyframes dashAnim {
  from {
    stroke-dashoffset: 160;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* HERO ANIMATIONS */
@keyframes fadeUpIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRightIn {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.kf-hero-tag {
  opacity: 0;
  animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}

.kf-hero h1 {
  opacity: 0;
  animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.25s;
}

.kf-hero p {
  opacity: 0;
  animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
}

.kf-hero-actions {
  opacity: 0;
  animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.55s;
}

.kf-hero-right {
  opacity: 0;
  animation: fadeRightIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.7s;
}

/* SCROLL ANIMATIONS */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
  .kf-hero h1 {
    font-size: 56px;
  }

  .kf-hero-right {
    display: none;
  }

  .kf-services-grid {
    grid-template-columns: 1fr;
  }

  .kf-service-card:nth-child(1) {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kf-territory-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kf-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .kf-nav {
    padding: 20px;
  }

  .kf-nav-links {
    display: none;
  }

  .kf-hero {
    padding: 60px 20px;
    min-height: auto;
  }

  .kf-hero h1 {
    font-size: 42px;
  }

  .kf-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .kf-trust {
    padding: 12px 20px;
  }

  .kf-services,
  .kf-territory,
  .kf-pillars,
  .kf-compliance,
  .kf-cta-section {
    padding: 60px 20px;
  }

  .kf-pillars-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kf-compliance {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .kf-compliance-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .kf-compliance-stats {
    width: 100%;
    flex-wrap: wrap;
    gap: 24px;
  }

  .kf-cta-actions {
    flex-direction: column;
  }

  .kf-footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .kf-footer-apex {
    text-align: center;
  }
}

/* SERVICES PAGE SPECIFIC */
.kf-services-hero {
  height: 70vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: var(--text-main);
}

.kf-services-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: grayscale(0.5);
}

.kf-services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--text-main) 0%, transparent 100%);
  z-index: 1;
}

.kf-services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.kf-services-hero-content h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  color: #FFFFFF;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 24px 0;
}

.kf-services-hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
}

.kf-services-intro {
  padding: 120px 40px;
  background: var(--bg-base);
}

.kf-services-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.kf-intro-card {
  padding: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-heavy);
  transition: transform 0.3s ease;
}

.kf-intro-card:hover {
  transform: translateY(-8px);
}

.kf-intro-card h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 8px;
}

.kf-intro-card span {
  display: block;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.kf-intro-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* SERVICE DETAILS STAGGERED */
.kf-service-detail {
  padding: 120px 40px;
}

.kf-service-detail.bg-alt {
  background: var(--bg-surface);
}

.kf-service-detail-inner.staggered {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.kf-service-detail-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-elevated);
}

.kf-service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kf-service-detail-image:hover img {
  transform: scale(1.05);
}

.kf-service-list {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.kf-service-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

.kf-service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 14px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* PROCESS STEPPER */
.kf-process {
  padding: 120px 40px;
  background: var(--bg-base);
}

.kf-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.kf-process-step {
  position: relative;
}

.kf-step-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--border-heavy);
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.kf-process-step:hover .kf-step-num {
  color: var(--accent);
}

.kf-process-step h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* PLACEHOLDER BOXES */
.kf-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 0.8fr;
  gap: 12px;
  height: 100%;
}

.kf-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border-heavy);
}

.kf-image-grid img:nth-child(3) {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .kf-service-detail-inner.staggered {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kf-service-detail-inner.reverse {
    direction: ltr;
  }

  .kf-service-detail-inner.reverse .kf-service-detail-text {
    order: 2;
  }

  .kf-service-detail-inner.reverse .kf-service-detail-image {
    order: 1;
  }

  .kf-services-intro-grid,
  .kf-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .kf-services-intro-grid,
  .kf-process-grid {
    grid-template-columns: 1fr;
  }

  .kf-services-hero {
    height: 50vh;
    padding: 0 20px;
  }
}

/* COVERAGE PAGE SPECIFIC */
.kf-coverage-map-section {
  padding: 80px 40px;
  background: var(--bg-surface);
}

.kf-coverage-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}

.kf-map-primary {
  background: var(--bg-base);
  border: 1px solid var(--border-heavy);
  padding: 24px;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kf-map-container.large {
  width: 100%;
  max-width: 600px;
}

.kf-country-dossier {
  background: var(--text-main);
  color: #FFFFFF;
  padding: 32px;
  position: sticky;
  top: 100px;
  opacity: 0.5;
  filter: grayscale(1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.kf-country-dossier.active {
  opacity: 1;
  filter: grayscale(0);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.kf-dossier-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.kf-country-dossier h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.kf-dossier-stats {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.kf-d-stat label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.kf-d-val {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
}

.kf-dossier-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-bottom: 32px;
}

.kf-btn-primary.full-width {
  width: 100%;
}

/* STAT DASHBOARD */
.kf-stat-dashboard {
  padding: 60px 40px;
  background: var(--text-main);
  color: #FFFFFF;
}

.kf-stat-dashboard-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.kf-dashboard-item {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 24px;
}

.kf-dashboard-item:first-child {
  border-left: none;
  padding-left: 0;
}

.kf-counter {
  font-family: 'Clash Display', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 12px;
}

.kf-counter::after {
  content: '+';
  font-size: 0.5em;
  vertical-align: top;
  margin-left: 4px;
}

.kf-dashboard-item label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

/* CORRIDORS */
.kf-corridors {
  padding: 80px 40px;
  background: var(--bg-base);
}

.kf-corridors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kf-corridor-card {
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-heavy);
  position: relative;
  transition: all 0.3s ease;
}

.kf-corridor-card:hover {
  background: var(--bg-base);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
}

.kf-corridor-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.kf-corridor-card h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.kf-corridor-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.kf-corridor-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-elevated);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

@media (max-width: 1100px) {
  .kf-coverage-layout {
    grid-template-columns: 1fr;
  }

  .kf-country-dossier {
    position: static;
  }
}

@media (max-width: 1024px) {
  .kf-stat-dashboard-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .kf-dashboard-item {
    border-left: none;
    padding-left: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .kf-dashboard-item:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .kf-corridors-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT PAGE SPECIFIC */
.kf-contact-hero {
  min-height: 80vh;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-heavy);
}

/* Background grid for technical feel */
.kf-contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, var(--border-light) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-light) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
  opacity: 0.6;
}

.kf-contact-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.kf-contact-hero-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kf-contact-status {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.kf-status-dot {
  width: 8px;
  height: 8px;
  background: #1DB954; /* Green */
  border-radius: 50%;
  position: relative;
}

.kf-status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid #1DB954;
  border-radius: 50%;
  animation: kf-pulse 2s infinite;
}

@keyframes kf-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.kf-contact-hero-content h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(56px, 6vw, 110px);
  line-height: 0.85;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}

.kf-contact-hero-content h1 span {
  color: var(--accent);
  display: block;
}

.kf-contact-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 60px;
}

.kf-contact-hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-top: 1px solid var(--border-heavy);
  padding-top: 40px;
}

.kf-meta-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.kf-meta-value {
  font-family: 'Clash Display', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

.kf-contact-hero-visual {
  position: relative;
  height: 100%;
  min-height: 600px;
  background: var(--text-main);
  overflow: hidden;
}

.kf-contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: grayscale(0.2) contrast(1.1);
  transition: transform 10s linear;
}

.kf-contact-hero-visual:hover .kf-contact-hero-img {
  transform: scale(1.1);
}

.kf-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-base) 0%, transparent 20%);
  z-index: 1;
}

.kf-visual-data {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  background: rgba(11, 18, 33, 0.8);
  backdrop-filter: blur(8px);
  padding: 24px;
  border-left: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kf-data-row {
  display: flex;
  gap: 20px;
  font-family: 'Inter', monospace;
  font-size: 11px;
}

.kf-data-row span:first-child {
  color: var(--accent);
  font-weight: 700;
  width: 60px;
}

.kf-data-row span:last-child {
  color: #fff;
}

@media (max-width: 1024px) {
  .kf-contact-hero-inner {
    grid-template-columns: 1fr;
  }
  
  .kf-contact-hero-content {
    padding: 120px 40px 60px;
  }
  
  .kf-contact-hero-visual {
    height: 400px;
    min-height: auto;
  }
  
  .kf-visual-overlay {
    background: linear-gradient(to bottom, var(--bg-base) 0%, transparent 20%);
  }
}

.kf-contact-section {
  padding: 120px 40px;
  background: var(--bg-base);
}

.kf-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.kf-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.kf-contact-info-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-heavy);
  transition: all 0.3s ease;
}

.kf-contact-info-card:hover {
  background: var(--bg-elevated);
  transform: translateX(8px);
  border-color: var(--accent);
}

.kf-contact-icon-wrapper {
  width: 48px;
  height: 56px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: #fff;
  flex-shrink: 0;
}

.kf-contact-info-content h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-main);
}

.kf-contact-info-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* CONTACT FORM */
.kf-contact-form-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-heavy);
  padding: 60px;
  position: relative;
}

/* Hexagon motif corner */
.kf-contact-form-container::after {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 40px;
  height: 40px;
  background: var(--bg-base);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  border-left: 1px solid var(--border-heavy);
  border-bottom: 1px solid var(--border-heavy);
  z-index: 2;
}

.kf-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.kf-form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kf-form-group.full-width {
  grid-column: 1 / -1;
}

.kf-form-group label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-main);
}

.kf-form-input {
  background: var(--bg-base);
  border: 1px solid var(--border-heavy);
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.kf-form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 85, 255, 0.05);
}

textarea.kf-form-input {
  min-height: 150px;
  resize: vertical;
}

.kf-form-submit {
  margin-top: 16px;
  width: 100%;
}

/* MAP SECTION */
.kf-map-section {
  padding: 0 40px 100px;
}

.kf-map-frame {
  width: 100%;
  height: 600px;
  background: var(--bg-surface);
  border: 1px solid var(--border-heavy);
  position: relative;
  overflow: hidden;
  filter: grayscale(0.4) contrast(1.1);
  transition: all 0.5s ease;
}

.kf-map-frame:hover {
  filter: grayscale(0) contrast(1);
  border-color: var(--accent);
}

/* Stylized placeholder for map */
.kf-map-placeholder {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, var(--border-light) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-light) 1px, transparent 1px);
  background-size: 30px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kf-map-hq-pin {
  width: 120px;
  height: 140px;
  background: rgba(0, 85, 255, 0.05);
  border: 1px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.kf-map-hq-pin span {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  text-transform: uppercase;
}

@media (max-width: 968px) {
  .kf-contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .kf-contact-form-container {
    padding: 40px;
  }

  .kf-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ABOUT PAGE SPECIFIC */

/* Hero */
.kf-about-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 40px;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-heavy);
  position: relative;
  overflow: hidden;
}

.kf-about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: 100px 100px;
  background-image: 
    linear-gradient(to right, var(--border-light) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-light) 1px, transparent 1px);
  z-index: 0;
  opacity: 0.5;
}

.kf-about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.kf-about-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.kf-about-hero-left h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--text-main);
  margin: 0;
  letter-spacing: -0.02em;
}

.kf-about-hero-right {
  display: flex;
  align-items: flex-end;
  padding-bottom: 20px;
}

.kf-about-statement {
  border-left: 4px solid var(--accent);
  padding-left: 32px;
}

.kf-about-statement p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.kf-about-statement p:last-child {
  margin-bottom: 0;
}

/* Timeline */
.kf-timeline-section {
  padding: 120px 40px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-heavy);
}

.kf-timeline-container {
  max-width: 900px;
  margin: 0 auto;
}

.kf-timeline-track {
  margin-top: 80px;
  position: relative;
  padding-left: 60px;
}

.kf-timeline-track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-heavy);
}

.kf-timeline-item {
  position: relative;
  margin-bottom: 80px;
}

.kf-timeline-item:last-child {
  margin-bottom: 0;
}

.kf-timeline-year {
  position: absolute;
  left: -240px;
  top: 0;
  font-family: 'Clash Display', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-main);
  text-align: right;
  width: 150px;
  white-space: nowrap;
}

.kf-timeline-node {
  position: absolute;
  left: -59px;
  top: 12px;
  width: 16px;
  height: 16px;
  background: var(--bg-surface);
  border: 2px solid var(--border-heavy);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.kf-timeline-node.kf-node-active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 85, 255, 0.2);
}

.kf-timeline-item:hover .kf-timeline-node {
  border-color: var(--accent);
  transform: translateX(-50%) scale(1.2);
}

.kf-timeline-content h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-main);
}

.kf-timeline-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Creed */
.kf-creed-section {
  padding: 160px 40px;
  background: var(--text-main);
  color: #fff;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.kf-creed-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150vw;
  height: 150vw;
  background: radial-gradient(circle, rgba(0,85,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.kf-creed-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.kf-creed-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 40px;
}

.kf-creed-quote {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 60px;
  position: relative;
}

.kf-creed-quote::before, .kf-creed-quote::after {
  color: rgba(255, 255, 255, 0.1);
}

.kf-author-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.kf-author-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Fleet */
.kf-fleet-section {
  padding: 120px 40px;
  background: var(--bg-base);
}

.kf-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.kf-fleet-card {
  padding: 48px 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-heavy);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.kf-fleet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.kf-fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.kf-fleet-card:hover::before {
  transform: scaleX(1);
}

.kf-fleet-spec {
  font-family: 'Clash Display', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}

.kf-fleet-type {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-main);
  margin-bottom: 24px;
}

.kf-fleet-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 968px) {
  .kf-about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .kf-about-hero {
    min-height: auto;
    padding-top: 160px;
  }

  .kf-timeline-track {
    padding-left: 30px;
  }

  .kf-timeline-year {
    position: static;
    text-align: left;
    margin-bottom: 16px;
    font-size: 24px;
    color: var(--accent);
  }

  .kf-timeline-node {
    left: -38px;
  }

  .kf-fleet-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================= */
/* QUOTE MANIFEST PAGE                       */
/* ========================================= */

a.kf-nav-cta, a.kf-btn-primary {
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.kf-quote-header {
  padding: 100px 40px 60px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-heavy);
  position: relative;
}

.kf-manifest-badge {
  display: inline-block;
  font-family: 'Inter', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0, 85, 255, 0.1);
  padding: 6px 12px;
  border: 1px solid var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.kf-quote-title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 24px;
}

.kf-quote-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
}

.kf-quote-section {
  padding: 80px 40px;
  background: var(--bg-base);
}

.kf-manifest-form {
  max-width: 900px;
  margin: 0 auto;
}

.kf-manifest-block {
  border: 2px solid var(--border-heavy);
  margin-bottom: 40px;
  background: var(--bg-base);
  box-shadow: 8px 8px 0 rgba(11, 18, 33, 0.03);
  transition: border-color 0.3s;
}

.kf-manifest-block:hover {
  border-color: var(--text-main);
}

.kf-manifest-block-header {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--border-heavy);
  background: var(--bg-surface);
}

.kf-manifest-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  padding: 16px 24px;
  border-right: 2px solid var(--border-heavy);
  background: var(--bg-base);
}

.kf-manifest-block-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-main);
  padding: 0 24px;
}

.kf-manifest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.kf-m-input-group {
  padding: 24px;
  border-bottom: 1px solid var(--border-heavy);
  border-right: 1px solid var(--border-heavy);
  display: flex;
  flex-direction: column;
}

.kf-m-input-group:nth-child(even) {
  border-right: none;
}

/* Fix borders for full width */
.kf-m-input-group.full-width {
  grid-column: 1 / -1;
  border-right: none;
}

/* Remove bottom border from last items */
.kf-manifest-grid > .kf-m-input-group:last-child,
.kf-manifest-grid > .kf-m-input-group:nth-last-child(2):not(:nth-child(even)) {
  border-bottom: none;
}
.kf-manifest-grid > .kf-m-input-group.full-width:last-child {
  border-bottom: none;
}

.kf-m-input-group label {
  font-family: 'Inter', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.kf-m-input-group input[type="text"],
.kf-m-input-group input[type="email"],
.kf-m-input-group input[type="tel"],
.kf-m-input-group input[type="number"],
.kf-m-input-group input[type="date"],
.kf-m-input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px dashed var(--border-heavy);
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-main);
  transition: border-color 0.2s;
}

.kf-m-input-group input:focus,
.kf-m-input-group textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.kf-m-input-group input::placeholder,
.kf-m-input-group textarea::placeholder {
  color: rgba(11, 18, 33, 0.2);
}

.kf-m-input-group textarea {
  resize: vertical;
  min-height: 40px;
}

/* Input with Addon (Tons, CBM) */
.kf-m-input-with-addon {
  display: flex;
  align-items: flex-end;
}

.kf-m-input-with-addon input {
  flex: 1;
}

.kf-m-addon {
  font-family: 'Inter', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-left: 12px;
  padding-bottom: 8px;
}

/* Checkbox group */
.kf-m-checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.kf-m-checkbox-group label {
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  text-transform: none;
  cursor: pointer;
}

.kf-m-checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-heavy);
  background: var(--bg-surface);
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}

.kf-m-checkbox-group input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.kf-m-checkbox-group input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 8px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.kf-manifest-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
}

.kf-manifest-submit {
  display: flex;
  align-items: center;
  background: var(--text-main);
  color: var(--bg-base);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.kf-manifest-submit:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.kf-submit-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 24px 32px;
}

.kf-submit-icon {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive Base */
@media (max-width: 1024px) {
  .kf-nav {
    padding: 12px 24px;
  }
  
  .kf-nav-links {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* Global Spacing */
  .kf-hero, .kf-services, .kf-territory, .kf-pillars, .kf-mainlines, .kf-cta-section {
    padding: 60px 20px;
  }
  
  .kf-nav-links {
    display: none; /* Hidden by default on mobile */
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--text-main);
    flex-direction: column;
    padding: 100px 40px;
    transition: 0.3s ease-in-out;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    z-index: 1000;
  }
  
  .kf-nav-links.active {
    display: flex;
    right: 0;
  }
  
  .kf-nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
  }
  
  .kf-nav-links a {
    color: #FFFFFF;
    font-size: 18px;
    display: block;
  }
  
  .kf-nav-toggle {
    display: block;
  }
  
  .kf-nav-cta {
    display: none; /* Hide in nav on small mobile */
  }
  
  .kf-nav-links .kf-nav-cta-mobile {
    display: block !important;
    margin-top: 20px;
    text-align: center;
  }

  /* Typography Scaling */
  .kf-hero h1 {
    font-size: 48px;
  }
  
  .kf-section-title {
    font-size: 32px;
  }
  
  .kf-cta-section h2 {
    font-size: 40px;
  }

  /* Grid Stack */
  .kf-services-grid, .kf-pillars-grid, .kf-intel-grid {
    grid-template-columns: 1fr !important;
  }
  
  .kf-service-card:nth-child(1) {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .kf-service-num-wrapper {
    margin: 0 auto;
  }

  .kf-hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding-top: 80px;
  }
  
  .kf-hero-content {
    max-width: 100%;
  }
  
  .kf-hero-right {
    position: static;
    transform: none;
    margin-top: 60px;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .kf-stat-card {
    flex: 1;
    min-width: 140px;
  }

  /* Territory Map */
  .kf-territory-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .kf-map-container {
    padding: 20px;
  }

  /* Compliance Bar */
  .kf-compliance {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
  }
  
  .kf-compliance-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .kf-compliance-stats {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }
  
  .kf-c-stat {
    padding-left: 12px;
  }
  
  .kf-c-num {
    font-size: 24px;
  }

  /* Footer */
  .kf-footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .kf-footer-apex {
    text-align: center;
  }

  /* Form Elements */
  .kf-quote-title {
    font-size: 48px;
  }
  .kf-manifest-grid {
    grid-template-columns: 1fr;
  }
  .kf-m-input-group {
    border-right: none;
    border-bottom: 1px solid var(--border-heavy);
  }
  .kf-manifest-grid > .kf-m-input-group:nth-last-child(2) {
    border-bottom: 1px solid var(--border-heavy);
  }
  .kf-manifest-grid > .kf-m-input-group:last-child {
    border-bottom: none;
  }
}

/* --- COVERAGE PAGE REFRESH (COMMAND CENTER AESTHETIC) --- */

.kf-coverage-hero-cmd {
  background: var(--text-main);
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.kf-coverage-hero-cmd::before {
  content: "COVERAGE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Clash Display", sans-serif;
  font-size: 25vw;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  pointer-events: none;
  white-space: nowrap;
}

.kf-hero-cmd-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.kf-hero-cmd-content h1 {
  font-family: "Clash Display", sans-serif;
  font-size: 84px;
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #fff;
}

.kf-hero-cmd-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin-bottom: 40px;
}

.kf-cmd-status-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.kf-status-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 24px;
}

.kf-status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: kf-pulse 2s infinite;
}

@keyframes kf-pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

.kf-status-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.kf-s-item label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.kf-s-item span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* MAP DASHBOARD */
.kf-map-dashboard-wrap {
  background: var(--bg-surface);
  padding: 80px 40px;
  border-bottom: 1px solid var(--border-heavy);
}

.kf-map-instruction {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 85, 255, 0.05);
  border: 1px solid rgba(0, 85, 255, 0.1);
  padding: 10px 20px;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.kf-map-instruction .kf-status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: kf-pulse 2s infinite;
}

.kf-map-dashboard {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.kf-map-primary-wrap {
  background: #fff;
  border: 1px solid var(--border-heavy);
  padding: 20px;
  position: relative;
}

/* Dossier Terminal Style */
.kf-dossier-terminal {
  background: var(--text-main);
  color: #fff;
  padding: 40px;
  border-left: 4px solid var(--accent);
  position: sticky;
  top: 100px;
  transition: all 0.3s ease;
}

.kf-terminal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.kf-terminal-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}

.kf-terminal-title {
  font-family: "Clash Display", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  margin: 0;
}

.kf-terminal-stats {
  display: grid;
  gap: 20px;
}

.kf-t-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.kf-t-stat label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.kf-t-stat .kf-d-val {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #fff;
}

.kf-terminal-desc {
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* INTEL STATS */
.kf-intel-row {
  background: var(--text-main);
  padding: 60px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.kf-intel-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.kf-intel-item {
  background: var(--text-main);
  padding: 40px;
  text-align: center;
}

.kf-intel-num {
  font-family: "Clash Display", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.kf-intel-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

/* MAINLINE ROUTES */
.kf-mainlines {
  padding: 100px 40px;
  background: #fff;
}

.kf-mainline-list {
  max-width: 1000px;
  margin: 60px auto 0;
  display: grid;
  gap: 32px;
}

.kf-mainline-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 32px;
  border: 1px solid var(--border-heavy);
  transition: all 0.3s ease;
}

.kf-mainline-item:hover {
  border-color: var(--accent);
  background: var(--bg-surface);
  transform: translateX(10px);
}

.kf-mainline-route-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.kf-mainline-info h4 {
  font-family: "Clash Display", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kf-mainline-info p {
  font-size: 14px;
  color: var(--text-muted);
}

.kf-mainline-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-heavy);
}

/* Map Hitbox Interactions */
.kf-map-svg-new {
  width: 100%;
  height: auto;
  max-height: 750px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.kf-map-hitbox {
  cursor: pointer;
  pointer-events: all;
  outline: none;
}
/* Page Specific Mobile Overrides */
@media (max-width: 768px) {
  /* Coverage Page */
  .kf-hero-cmd-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .kf-hero-cmd-content h1 {
    font-size: 56px;
  }
  
  .kf-hero-cmd-content p {
    margin: 0 auto 40px;
  }
  
  .kf-coverage-hero-cmd::before {
    font-size: 40vw;
    top: 30%;
  }
  
  .kf-map-dashboard {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .kf-map-dashboard-wrap {
    padding: 40px 0;
  }
  
  .kf-map-primary-wrap {
    border-left: none;
    border-right: none;
    padding: 10px;
  }
  
  .kf-dossier-terminal {
    position: static;
    border-left: none;
    border-top: 4px solid var(--accent);
    padding: 30px 20px;
  }
  
  .kf-terminal-title {
    font-size: 28px;
  }
  
  .kf-intel-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .kf-intel-item {
    padding: 24px;
  }
  
  .kf-intel-num {
    font-size: 32px;
  }

  .kf-mainline-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 24px;
  }
  
  .kf-mainline-route-icon {
    margin: 0 auto;
  }
  
  .kf-mainline-tag {
    justify-self: center;
  }

  /* Services Page */
  .kf-services-hero {
    height: 400px;
  }
  
  .kf-services-hero-content h1 {
    font-size: 40px;
  }
  
  .kf-services-intro-grid {
    grid-template-columns: 1fr;
  }
  
  .kf-service-detail-inner {
    flex-direction: column !important;
    gap: 40px;
  }
  
  .kf-service-detail-inner.reverse {
    flex-direction: column !important;
  }
  
  .kf-service-detail-image, .kf-service-detail-text {
    width: 100% !important;
  }
  
  .kf-image-grid {
    grid-template-columns: 1fr;
  }
  
  .kf-process-grid {
    grid-template-columns: 1fr;
  }

  /* About Page */
  .kf-about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .kf-about-hero-left h1 {
    font-size: 64px;
  }
  
  .kf-about-statement {
    font-size: 16px;
    padding-left: 0;
    border-left: none;
    border-top: 2px solid var(--accent);
    padding-top: 32px;
    margin-top: 32px;
  }
  
  .kf-timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 32px;
  }
  
  .kf-timeline-year {
    margin-bottom: 8px;
  }
  
  .kf-timeline-node {
    left: 0;
  }
  
  .kf-creed-quote {
    font-size: 28px;
  }
  
  .kf-fleet-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Page */
  .kf-contact-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .kf-contact-hero-content h1 {
    font-size: 44px;
  }
  
  .kf-contact-hero-meta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .kf-contact-grid {
    grid-template-columns: 1fr;
  }
  
  .kf-map-frame {
    height: 300px;
  }
  
  .kf-form-grid {
    grid-template-columns: 1fr;
  }
  
  .kf-form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .kf-hero h1 {
    font-size: 36px;
  }
  
  .kf-section-title {
    font-size: 28px;
  }
  
  .kf-intel-grid {
    grid-template-columns: 1fr !important;
  }
  
  .kf-bbbee-badge {
    width: 90px;
    height: 90px;
  }
  
  .kf-bbbee-level {
    font-size: 24px;
  }
}
