<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
	--kk-primary-color: #F6C3A5;
}

.poppins-thin {
	font-family: "Poppins", sans-serif;
	font-weight: 100;
	font-style: normal;
  }
  
  .poppins-extralight {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: normal;
  }
  
  .poppins-light {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
  }
  
  .poppins-regular {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
  }
  
  .poppins-medium {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
  }
  
  .poppins-semibold {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
  }
  
  .poppins-bold {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
  }
  
  .poppins-extrabold {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: normal;
  }
  
  .poppins-black {
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	font-style: normal;
  }
  
  .poppins-thin-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 100;
	font-style: italic;
  }
  
  .poppins-extralight-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: italic;
  }
  
  .poppins-light-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: italic;
  }
  
  .poppins-regular-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: italic;
  }
  
  .poppins-medium-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: italic;
  }
  
  .poppins-semibold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: italic;
  }
  
  .poppins-bold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: italic;
  }
  
  .poppins-extrabold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: italic;
  }
  
  .poppins-black-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	font-style: italic;
  }
  


body.kk-agent-portal {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #363636;
	color: #D0D0D0;
}

.kk-main-layout {
	display: grid;
	grid-template-columns: 258px 1fr minmax(340px, 25%);
	min-height: 100vh; /* Allow layout to grow with content */
}

.kk-sidebar {
	/* Sidebar styles will go here */
	background-color: #2D2D2D;
	padding: 20px 0;
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
}

.kk-sidebar-nav {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: 16px;
	gap: 60px;
	height: 100%;
}

.kk-nav-group {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%; /* Ensure group takes full width for alignment */
	padding: 0 20px; /* Add horizontal padding */
	box-sizing: border-box; /* Include padding in width calculation */
}

.kk-nav-group-title {
	color: rgb(208, 208, 208);
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.kk-nav-link {
	color: rgb(255, 255, 255);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 12px;
}

.kk-nav-link:hover {
	color: var(--kk-primary-color);
}

.kk-nav-link.active {
	color: var(--kk-primary-color);
	font-weight: 600;
}

.kk-nav-link.active svg {
	color: var(--kk-primary-color);
}

.kk-center-pane {
	/* Center pane styles will go here */
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-width: 0;
	overflow-x: auto;
}

.kk-center-pane-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	border-bottom: 1px solid #4A4A4A;
}

.kk-breadcrumb a {
	color: #D0D0D0;
	text-decoration: none;
}

.kk-breadcrumb a:hover {
	text-decoration: underline;
}

.kk-breadcrumb span {
	margin: 0 8px;
	color: #8A8A8A;
}

.kk-live-indicator {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #FF5B5B; /* Red color for the text */
	font-weight: bold;
}

.kk-live-dot {
	width: 10px;
	height: 10px;
	background-color: #FF5B5B;
	border-radius: 50%;
	animation: kk-blink 1.5s infinite;
}

@keyframes kk-blink {
	0% { opacity: 1; }
	50% { opacity: 0.2; }
	100% { opacity: 1; }
}

#player-wrapper {
	width: 100%;
	margin: 20px auto;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	border: 1px solid #4a4a4a;
	overflow: hidden; /* Ensures the iframe corners are rounded and clips canvas */
	position: relative; /* Important for absolute positioning of mouse tail canvas */
	/* Height is set dynamically by JS */
}

#player-wrapper iframe {
	background-color: white;
}

/* This is the class rrweb adds inside our wrapper */
.replayer-wrapper {
	width: 100% !important;
	height: 100% !important;
}

/* Position the rrweb mouse-tail canvas properly within the container */
.replayer-wrapper canvas.replayer-mouse-tail {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	pointer-events: none !important;
	z-index: 10 !important; /* Above iframe but below other UI elements */
	/* Canvas size will be set dynamically by JavaScript to match container */
}

/* Ensure the replayer wrapper clips overflowing content */
.replayer-wrapper {
	overflow: hidden !important;
	position: relative !important;
}

.replayer-wrapper iframe {
	display: block !important;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1; /* Below mouse tail canvas */
}

.kk-right-toolkit {
	/* Right toolkit styles will go here */
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 40px; /* Space between sections */
	background-color: #2D2D2D;
	border-left: 1px solid #4A4A4A;
}

.kk-toolkit-title {
	font-size: 20px;
	font-weight: bold;
	color: #FFFFFF;
}

.kk-toolkit-section {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.kk-toolkit-section-title {
	font-size: 16px;
	font-weight: bold;
	color: #D0D0D0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.kk-customer-info {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.kk-customer-info li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #D0D0D0; /* Set color for icon and text */
}

.kk-icon {
	width: 20px;
	height: 20px;
}

.kk-tool-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.kk-btn-tool {
	display: flex;
	align-items: center;
	gap: 8px; /* Add gap between icon and text in buttons */
	justify-content: space-between; /* Re-add for toggle alignment */
	padding: 12px 16px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	text-align: left;
}

.kk-btn-tool &gt; span {
	flex-grow: 1; /* Make text take up remaining space */
}

/* Primary Button */
.kk-btn-alert {
	background-color: var(--kk-primary-color);
	color: #000000;
}

/* Other buttons when enabled */
.kk-btn-chat.enabled {
	background-color: #4A8D5F; /* Green */
	color: #FFFFFF;
}
.kk-btn-share-cursor.enabled {
	background-color: #4A5568; /* Blue-grey */
	color: #FFFFFF;
}

/* Disabled State */
.kk-btn-tool:disabled {
	background-color: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.5);
	cursor: not-allowed;
}

.kk-btn-tool:disabled .kk-icon {
	stroke: rgba(255, 255, 255, 0.4);
}

.kk-btn-tool.loading {
	position: relative;
	color: transparent !important; /* Hide text */
}

.kk-btn-tool.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-top-color: #FFFFFF;
	border-radius: 50%;
	animation: kk-spinner 0.6s linear infinite;
}

@keyframes kk-spinner {
	to { transform: rotate(360deg); }
}

.kk-cursor-toggle {
	display: inline-flex;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.2);
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}

/* Snippet Page Styles */
.kk-snippet-container { max-width:100%; overflow-x:auto; }
.kk-snippet-container pre{ width: max-content; min-width:100%; }

.kk-snippet-container pre {
	background-color: #2D2D2D;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid #4A4A4A;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.kk-snippet-container code {
	color: #F6C3A5; /* Use primary color for the code text */
}

/* --- 5.3 Agent Cursor Note --- */
.kk-cursor-note {
	position: fixed;
	z-index: 10001; /* Above replayer, below chat bubble if any */
	padding: 12px;
	background: rgba(255, 255, 255, 0.80);
	color: #1F2937;
	border-radius: 12px;
	font-size: 14px;
	pointer-events: none; /* So it doesn't interfere with mouse events */
	display: none; /* Initially hidden */
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	line-height: 1.4;
	max-width: 250px;
}

/* --- Agent Log Page Styles --- */
.kk-agent-log-card {
	background-color: #2d2d2d;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	overflow-x: auto;
}

.kk-agent-log-card h1 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 24px;
	color: #FFFFFF;
}

#session-list {
	list-style: none;
	padding: 0;
}

#session-list li {
	background-color: #363636;
	padding: 16px;
	margin-bottom: 12px;
	border-radius: 8px;
	transition: background-color 0.2s;
}

#session-list li:hover {
	background-color: #4a4a4a;
}

#session-list a {
	text-decoration: none;
	color: #F6C3A5; /* Primary interactive color */
	font-weight: 500;
	font-size: 16px;
}

/* Agent Chat Panel Styles */
.kk-chat-panel {
	background-color: #2D2D2D;
	border-radius: 16px;
	padding: 16px;
	border: 1px solid #4A4A4A;
}

.kk-chat-panel-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.kk-close-chat {
	background: none;
	border: none;
	color: #D0D0D0;
	cursor: pointer;
	padding: 4px;
	border-radius: 4px;
	display: flex;
	align-items: center;
}

.kk-close-chat:hover {
	background-color: #4A4A4A;
}

.kk-agent-message-history {
	height: 200px;
	overflow-y: auto;
	border: 1px solid #4A4A4A;
	border-radius: 8px;
	padding: 12px;
	margin-bottom: 12px;
	background-color: #363636;
}

.kk-agent-chat-input-area {
	display: flex;
	gap: 8px;
	align-items: center;
}

.kk-agent-chat-input-area .kk-chat-input {
	flex-grow: 1;
	background-color: #363636;
	border: 1px solid #4A4A4A;
	border-radius: 8px;
	padding: 12px;
	color: #D0D0D0;
	font-size: 14px;
}

.kk-agent-chat-input-area .kk-chat-input:focus {
	outline: none;
	border-color: var(--kk-primary-color);
}

.kk-agent-chat-input-area .kk-chat-input::placeholder {
	color: #8A8A8A;
}

.kk-agent-chat-input-area .kk-chat-send {
	background: var(--kk-primary-color);
	border: none;
	border-radius: 8px;
	padding: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	color: #000;
}

.kk-agent-chat-input-area .kk-chat-send:hover {
	background-color: #f0b592;
}

.kk-agent-message {
	margin-bottom: 8px;
	padding: 8px 12px;
	border-radius: 12px;
	max-width: 80%;
	font-size: 14px;
	word-wrap: break-word;
}

.kk-agent-agent-message {
	background-color: var(--kk-primary-color);
	color: #000;
	margin-left: auto;
	text-align: right;
}

.kk-agent-user-message {
	background-color: #4A5568;
	color: #FFFFFF;
}

/* Cursor Help Section */
.kk-help-text {
	color: #D0D0D0;
	font-size: 14px;
	line-height: 1.4;
}

.kk-help-text p {
	margin: 0 0 12px 0;
}

.kk-help-text ul {
	margin: 0;
	padding-left: 20px;
	list-style-type: none;
}

.kk-help-text li {
	margin-bottom: 8px;
	position: relative;
}

.kk-help-text li::before {
	content: "•";
	color: var(--kk-primary-color);
	font-weight: bold;
	position: absolute;
	left: -15px;
}

.kk-help-text strong {
	color: var(--kk-primary-color);
	font-weight: 600;
}

/* Session Table Styles */
#kk-session-table {
	margin-top: 20px;
}

#kk-session-table th {
	border-bottom: 2px solid #4A4A4A;
	font-weight: 600;
	color: #D0D0D0;
	user-select: none;
}

#kk-session-table th:hover {
	background-color: rgba(255, 255, 255, 0.05);
}

#kk-session-table td {
	vertical-align: middle;
	border-bottom: 1px solid #4A4A4A;
}

#kk-session-table .kk-live-dot {
	display: inline-block;
	margin-right: 8px;
	vertical-align: middle;
}

.sort-indicator {
	color: var(--kk-primary-color);
	font-size: 12px;
}

/* --- Snippet Page Dark Mode Styles --- */
.kk-snippets-wrapper {
    color: #D0D0D0;
    padding-bottom: 80px; /* Prevent footer overlap */
    width: 100%;
}

.kk-snippets-wrapper .text-muted {
    color: #A0A0A0 !important;
}

.kk-page-title {
    color: #FFFFFF;
    font-size: 1.75rem;
    font-weight: 700;
}

.kk-snippet-card {
    background-color: #2A2A2A;
    border: 1px solid #4A4A4A;
    border-radius: 12px;
    padding: 24px;
}

.kk-section-title {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Override Bootstrap muted text in dark context */
.kk-snippet-card .text-muted {
    color: #A0A0A0 !important;
}

/* Prism tweaks for dark background */
.kk-snippet-card pre[class*="language-"] {
    background: #1E1E1E !important;
    border: 1px solid #3A3A3A;
    border-radius: 8px;
}

.kk-snippet-card code[class*="language-"] {
    font-size: 0.85rem;
}

/* Landing Page Styles */
.landing-page {
	margin: 0;
	padding: 0;
	background-color: #ffffff;
}

.landing-hero {
	padding-top: 100px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.landing-hero-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 2rem;
	width: 100%;
	position: relative;
	z-index: 2;
}

.landing-hero-content {
	color: #1a1a1a;
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 4rem;
}

.landing-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(99, 102, 241, 0.1);
	color: #6366f1;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
	border: 1px solid rgba(99, 102, 241, 0.2);
}

.landing-hero h1 {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	color: #1a1a1a;
}

.landing-hero p {
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
	opacity: 0.8;
	line-height: 1.6;
	color: #4b5563;
}

.landing-hero-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.landing-hero-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: white;
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	font-weight: 600;
	color: #374151;
	font-size: 0.9rem;
}

.landing-hero-feature-icon {
	width: 24px;
	height: 24px;
	border-radius: 40%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.75rem;
}

.landing-hero-feature:nth-child(1) .landing-hero-feature-icon {
	background: #6366f1;
}

.landing-hero-feature:nth-child(2) .landing-hero-feature-icon {
	background: #06b6d4;
}

.landing-hero-feature:nth-child(3) .landing-hero-feature-icon {
	background: #84cc16;
}

.landing-3d-scene {
	position: relative;
	height: 500px;
	width: 100%;
	perspective: 1000px;
	margin: 0 auto;
}

.landing-3d-platform {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 300px;
	background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
	border-radius: 20px;
	transform-style: preserve-3d;
	transform: translateX(-50%) rotateX(60deg) rotateY(-5deg);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.landing-3d-object {
	position: absolute;
	transform-style: preserve-3d;
}

.landing-3d-tree {
	bottom: 120px;
	left: 100px;
	width: 60px;
	height: 120px;
}

.landing-3d-tree-trunk {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 40px;
	background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
	border-radius: 10px;
}

.landing-3d-tree-top {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
	border-radius: 50%;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.landing-3d-shapes {
	bottom: 100px;
	left: 200px;
	width: 80px;
	height: 80px;
}

.landing-3d-shape-1 {
	position: absolute;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
	border-radius: 20px;
	transform: rotateX(45deg) rotateY(45deg);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.landing-3d-shape-2 {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	border-radius: 15px;
	transform: rotateX(30deg) rotateY(60deg);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.landing-3d-car {
	bottom: 120px;
	right: 150px;
	width: 120px;
	height: 60px;
}

.landing-3d-car-body {
	position: absolute;
	bottom: 0;
	width: 120px;
	height: 40px;
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	border-radius: 20px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.landing-3d-car-top {
	position: absolute;
	bottom: 25px;
	left: 30px;
	width: 60px;
	height: 30px;
	background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
	border-radius: 15px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.landing-3d-car-windshield {
	position: absolute;
	bottom: 30px;
	left: 35px;
	width: 50px;
	height: 20px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 10px;
	backdrop-filter: blur(10px);
}

.landing-3d-floating-ui {
	position: absolute;
	bottom: 200px;
	right: 200px;
	background: white;
	padding: 1rem;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	transform: rotateX(10deg) rotateY(-10deg);
	min-width: 150px;
}

.landing-3d-floating-ui::before {
	content: '▶';
	color: #6366f1;
	margin-right: 0.5rem;
}

.landing-3d-floating-ui::after {
	content: 'Visionner';
	color: #374151;
	font-weight: 600;
	font-size: 0.9rem;
}

.landing-cta-primary {
	background: #363636;
	color: white;
	border: none;
	padding: 1rem 2.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 25px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	margin-right: 1rem;
}

.landing-cta-secondary {
	background: #9747FF;
	color: #ffffff;
	border: none;
	padding: 1rem 2.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 25px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	margin-right: 1rem;
}

.landing-cta-primary:hover {
	background: #E5E3FF;
	color: #363636;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


.landing-cta-secondary:hover {
	background: #f9fafb;
	color: #374151;
	border-color: #d1d5db;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.landing-hero h1 {
		font-size: 2.5rem;
	}
	
	.landing-hero p {
		font-size: 1.1rem;
	}
	
	.landing-hero-features {
		gap: 1rem;
	}
	
	.landing-3d-scene {
		height: 300px;
	}
	
	.landing-3d-platform {
		width: 400px;
		height: 200px;
	}
	
	.landing-3d-car,
	.landing-3d-tree,
	.landing-3d-shapes {
		transform: scale(0.7);
	}
}

.landing-section {
	padding: 5rem 0;
}

.landing-features {
	background: #f8f9fa;
	color: #333;
}

.landing-feature-card {
	background: white;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.landing-feature-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: white;
	font-size: 1.5rem;
}

.landing-feature-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.landing-feature-card p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 0;
}

.landing-social-proof {
	background: #1a1a1a;
	color: white;
	text-align: center;
}

.landing-social-proof h6 {
	color: #999;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 2rem;
}

.landing-logo-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	opacity: 0.6;
}

.landing-logo-item {
	font-size: 1.1rem;
	font-weight: 500;
	color: #ccc;
}

.landing-cta-section {
	background: #363636;
	color: white;
	text-align: center;
}

.landing-cta-form {
	max-width: 500px;
	margin: 0 auto;
}

.landing-cta-form .form-control {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	padding: 1rem;
	font-size: 1rem;
	border-radius: 8px;
}

.landing-cta-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.landing-cta-form .form-control:focus {
	background: rgba(255, 255, 255, 0.15);
	border-color: #ffd700;
	color: white;
	box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.landing-cta-form label {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	margin-bottom: 0.5rem;
}

/* Feature Images Section */
.landing-feature-images {
	padding: 0;
	margin: 0;
	background: #ffffff;
	position: relative;
	z-index: 1;
}

.landing-feature-images-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 24px;
	width: 100%;
	padding: 0 24px;
	box-sizing: border-box;
	position: relative;
}

.landing-feature-image {
	aspect-ratio: 4/3;
	background: #f1f5f9;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.landing-feature-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px;
}

.landing-feature-image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
	font-weight: 600;
	font-size: 1.1rem;
}

/* Overlapping Card Section */
.landing-overlap-section {
	padding: 0;
	margin-top: -40px; /* Creates the overlap */
	position: relative;
	z-index: 10;
}

.landing-overlap-card {
	background: #E5E3FF;
	border-radius: 32px;
	padding-left: 2rem;
	padding-top: 2rem;
	padding-right: 2rem;
	padding-bottom: 2rem;
	color: black;
	position: relative;
	overflow: hidden;
	margin: 0 24px; /* Match the padding from images */
}


.landing-overlap-card-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.landing-overlap-card-text h2 {
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.landing-overlap-card-text p {
	font-size: 1.1rem;
	line-height: 1.6;
	opacity: 0.9;
	margin-bottom: 0;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}

.landing-overlap-card-visual {
	position: relative;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.landing-overlap-visual-element {
	position: absolute;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.landing-overlap-visual-car {
	width: 120px;
	height: 60px;
	background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
	right: 50px;
	top: 50px;
	border-radius: 20px;
}

.landing-overlap-visual-tree {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	left: 30px;
	bottom: 80px;
	border-radius: 50%;
}

.landing-overlap-visual-shape {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.3);
	right: 20px;
	bottom: 40px;
	border-radius: 30px;
	backdrop-filter: blur(10px);
}

.landing-overlap-visual-bot {
	position: absolute;
	right: 80px;
	bottom: 120px;
	background: #1a1a1a;
	color: white;
	padding: 0.75rem 1rem;
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.landing-overlap-visual-bot::before {
	content: '🤖';
	font-size: 1rem;
}

/* Add spacing after overlap section */
.landing-overlap-section + .landing-section {
	margin-top: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.landing-feature-images-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 0 1rem;
	}
	
	.landing-feature-image {
		aspect-ratio: 16/9;
	}
	
	.landing-overlap-section {
		margin-top: -60px;
	}
	
	.landing-overlap-card {
		padding: 2.5rem;
		border-radius: 24px;
		margin: 0 1rem;
	}
	
	.landing-overlap-card-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
	
	.landing-overlap-card-text h2 {
		font-size: 2rem;
	}
	
	.landing-overlap-card-visual {
		height: 200px;
	}
	
	.landing-overlap-visual-element {
		transform: scale(0.8);
	}
}

/* ROI Section */
.landing-roi-section {
	padding: 80px 0;
	background: #ffffff;
}

.landing-roi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.landing-roi-card {
	background: #f8fafc;
	border-radius: 24px;
	padding: 1.25rem;
	position: relative;
	overflow: hidden;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.landing-roi-card-large {
	grid-row: span 2;
	min-height: 400px;
}

.landing-roi-card-blue {
	background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
}

.landing-roi-card-gray {
	background: #e5e7eb;
}

.landing-roi-card-purple {
	background: #E5E3FF;
}

.landing-roi-card-white {
	background: #F1EAE5;
	border: 1px solid #e5e7eb;
}

.landing-roi-card-text {
	font-size: 0.5rem;
	line-height: 1.4;
	color: #374151;
	margin-bottom: 1rem;
	font-family: "Poppins", sans-serif;
}

.landing-roi-card-content {
	max-width: 50%;
}

.landing-roi-card-metric {
	font-size: 4rem;
	line-height: 1;
	color: #000000;
	font-family: "Poppins", sans-serif;
	margin-bottom: 0.5rem;
}

.landing-roi-card-metric-small {
	font-size: 2.5rem;
}

.landing-roi-card-label {
	font-size: 1rem;
	color: #6b7280;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
}

.landing-roi-visual {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.landing-roi-visual-3d {
	position: relative;
	width: 120px;
	height: 80px;
}

.landing-roi-platform {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 40px;
	background: #d1d5db;
	border-radius: 8px;
	transform: perspective(200px) rotateX(45deg);
}

.landing-roi-tree {
	position: absolute;
	bottom: 30px;
	left: 20px;
	width: 20px;
	height: 40px;
	background: #84cc16;
	border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.landing-roi-tree::before {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 15px;
	background: #92400e;
	border-radius: 3px;
}

.landing-roi-shapes {
	position: absolute;
	right: 10px;
	top: 10px;
}

.landing-roi-shape {
	position: absolute;
	border-radius: 8px;
}

.landing-roi-shape-1 {
	width: 30px;
	height: 30px;
	background: #84cc16;
	border-radius: 50%;
	top: 0;
	right: 0;
}

.landing-roi-shape-2 {
	width: 20px;
	height: 20px;
	background: #f59e0b;
	border-radius: 4px;
	bottom: -10px;
	left: -10px;
}

.landing-roi-bot {
	position: absolute;
	right: 15px;
	bottom: 20px;
	background: #1a1a1a;
	color: white;
	padding: 0.5rem;
	border-radius: 8px;
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.landing-roi-bot::before {
	content: '🤖';
	font-size: 0.9rem;
}

/* Special positioning for grid layout */
.landing-roi-card:nth-child(1) {
	grid-column: 1;
	grid-row: 1 / 3;
}

.landing-roi-card:nth-child(2) {
	grid-column: 2;
	grid-row: 1;
}

.landing-roi-card:nth-child(3) {
	grid-column: 3;
	grid-row: 1;
}

.landing-roi-card:nth-child(4) {
	grid-column: 2;
	grid-row: 2;
}

.landing-roi-card:nth-child(5) {
	grid-column: 3;
	grid-row: 2;
}

.landing-roi-card:nth-child(6) {
	grid-column: 1;
	grid-row: 3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.landing-roi-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 0 1rem;
	}
	
	.landing-roi-card {
		grid-column: 1 !important;
		grid-row: auto !important;
		min-height: 200px;
	}
	
	.landing-roi-card-metric {
		font-size: 3rem;
	}
	
	.landing-roi-visual {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		margin-top: 1rem;
	}
}

/* Navbar Styles */
.navbar-public {
	background: #ffffff;
	border-bottom: 1px solid #e5e7eb;
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar-public .navbar-brand {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #1a1a1a;
	font-weight: 600;
	font-size: 1.25rem;
}

.navbar-public .navbar-brand:hover {
	color: #1a1a1a;
	text-decoration: none;
}

.navbar-public .navbar-logo {
	height: 32px;
	width: auto;
	margin-right: 0.75rem;
}

.navbar-btn-small {
	background: #363636;
	color: white;
	border: none;
	padding: 0.5rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 500;
	border-radius: 20px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.navbar-btn-small:hover {
	background: #E5E3FF;
	color: #363636;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Theme Classes */
body.dark-mode {
	color: #ffffff;
	background-color: #2D2D2D;
}

body.light-mode {
	color: #1a1a1a;
	background-color: #ffffff;
}

/* Footer Theme Classes */
.footer-dark {
	background-color: #2D2D2D;
	color: #ffffff;
}

.footer-dark .footer-link {
	color: #ffffff;
	text-decoration: none;
}

.footer-dark .footer-link:hover {
	color: #E5E3FF;
}

.footer-light {
	background-color: #f8f9fa;
	color: #1a1a1a;
}

.footer-light .footer-link {
	color: #1a1a1a;
	text-decoration: none;
}

.footer-light .footer-link:hover {
	color: #374151;
}

.footer-divider {
	margin: 0 0.5rem;
	color: inherit;
}

.kk-sidebar .kk-logo {
    filter: brightness(0) invert(1);
}

/* Sidebar User Menu */
.kk-user-menu {
    margin-top: auto;
    width: 100%;
    padding: 0 20px;
}

.kk-user-trigger {
    padding: 12px 0;
    color: #D0D0D0;
    text-decoration: none;
    width: 100%;
}

.kk-user-trigger:hover {
    color: #ffffff;
    text-decoration: none;
}

.kk-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

/* Dark profile card */
.kk-dark-card {
    background-color: #3D3D3D;
    border: 1px solid #555;
    color: #fff;
}
.kk-dark-card .card-header {
    background-color: #2D2D2D;
    border-bottom: 1px solid #555;
    color: #fff;
}
.kk-dark-card .form-control {
    background-color: #2D2D2D;
    border: 1px solid #555;
    color: #fff;
}
.kk-dark-card .form-control::placeholder {
    color: #ccc;
}
.kk-dark-card .form-control:focus {
    background-color: #2D2D2D;
    color: #fff;
}

@media (max-width: 991.98px) {
    .kk-sidebar, .kk-right-toolkit {
        display:none;
    }
    .kk-main-layout {
        grid-template-columns: 1fr !important;
    }
}

.kk-mobile-header { background:#1e1e1e; }

.kk-offcanvas { background:#2D2D2D; width:258px; }
#kkToolkitOC.kk-offcanvas { width:340px; }

.no-toolkit .kk-main-layout{ grid-template-columns:258px 1fr; }
@media (max-width:991.98px){ .no-toolkit .kk-main-layout{ grid-template-columns:1fr !important; }}</pre></body></html>