/* Inter font - local system stack fallback */
@font-face {
	font-family: 'Inter';
	src: local('Inter'), local('Segoe UI'), local('system-ui');
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }

body {
	font-family: 'Inter', 'Segoe UI', sans-serif;
	background: #ffffff;
	color: #1a1a2e;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a { color: #1E40AF; text-decoration: none; }
a:hover { color: #1e3a8a; }
img { max-width: 100%; height: auto; }
html { scroll-behavior: smooth; }

.fk-btn-primary {
	display: inline-block;
	background: #1E40AF;
	color: #ffffff;
	border-radius: 8px;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.22s ease;
	text-decoration: none;
}
.fk-btn-primary:hover {
	background: #1e3a8a;
	color: #ffffff;
	transform: translateY(-1px);
}

.fk-btn-secondary {
	display: inline-block;
	background: transparent;
	color: #1E40AF;
	border: 2px solid #1E40AF;
	border-radius: 8px;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.22s ease;
	text-decoration: none;
}
.fk-btn-secondary:hover {
	background: rgba(30,64,175,0.06);
	color: #1E40AF;
}

.fk-btn-white {
	display: inline-block;
	background: #ffffff;
	color: #1E40AF;
	border-radius: 8px;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.22s ease;
	text-decoration: none;
}
.fk-btn-white:hover {
	background: #e8f0fe;
	color: #1E40AF;
}

.fk-link {
	color: #1E40AF;
	background: none;
	border: none;
	text-decoration: none;
	cursor: pointer;
}
.fk-link:hover {
	text-decoration: underline;
	color: #1e3a8a;
}

.fk-section-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: #1E40AF;
	margin-bottom: 12px;
}

.fk-section-title {
	font-size: 36px;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.2;
	letter-spacing: -0.3px;
	margin-bottom: 16px;
}

.fk-section-desc {
	font-size: 18px;
	color: #556070;
	line-height: 1.65;
	max-width: 640px;
	margin: 0 auto;
}

.fk-section-header {
	text-align: center;
	margin-bottom: 56px;
}

.fk-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.fk-section {
	padding: 80px 0;
}

.fk-section-alt {
	padding: 80px 0;
	background: #f0f4f8;
}

.fk-section-dark {
	padding: 80px 0;
	background: #0f1c38;
}

.fk-section-blue {
	padding: 80px 0;
	background: #1E40AF;
}

.fk-section-white {
	padding: 80px 0;
	background: #ffffff;
}

.fk-section-compact {
	padding: 60px 0;
}

.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #ffffff;
	height: 72px;
	display: flex;
	align-items: center;
	transition: box-shadow 0.22s ease;
}

.site-nav.scrolled {
	box-shadow: 0 2px 12px rgba(30,64,175,0.08);
}

.site-nav .fk-nav-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-nav .fk-nav-logo {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a2e;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
}

.site-nav .fk-nav-logo img {
	height: 36px;
	width: auto;
}

.site-nav .fk-nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav .fk-nav-links li a {
	font-size: 15px;
	font-weight: 500;
	color: #1a1a2e;
	text-decoration: none;
	padding: 6px 14px;
	border-radius: 6px;
	transition: all 0.22s ease;
}

.site-nav .fk-nav-links li a:hover,
.site-nav .fk-nav-links li a.active {
	color: #1E40AF;
	background: rgba(30,64,175,0.06);
}

.site-nav .fk-nav-cta {
	margin-left: 8px;
}

/* CTA inside nav has its own solid background; keep button text white
   and override the generic .fk-nav-links li a color (higher specificity). */
.site-nav .fk-nav-links li a.fk-btn-primary {
	color: #ffffff;
	background: #1E40AF;
}
.site-nav .fk-nav-links li a.fk-btn-primary:hover,
.site-nav .fk-nav-links li a.fk-btn-primary:focus {
	color: #ffffff;
	background: #1e3a8a;
}

.site-nav .fk-nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	flex-direction: column;
	gap: 5px;
}

.site-nav .fk-nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #1a1a2e;
	border-radius: 2px;
	transition: all 0.22s ease;
}

body { padding-top: 72px; }

@media (max-width: 991px) {
	.site-nav .fk-nav-toggle { display: flex; }
	.site-nav .fk-nav-links {
		display: none;
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		background: #ffffff;
		flex-direction: column;
		padding: 16px 24px 24px;
		gap: 4px;
		box-shadow: 0 8px 24px rgba(30,64,175,0.1);
	}
	.site-nav .fk-nav-links.open { display: flex; }
	.site-nav .fk-nav-links li { width: 100%; }
	.site-nav .fk-nav-links li a { display: block; padding: 10px 14px; }
	.site-nav .fk-nav-cta { margin-top: 8px; }
}

.fk-hero--split {
	padding: 80px 0;
	background: #ffffff;
}

.fk-hero--split .fk-hero-title {
	font-size: 48px;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.15;
	letter-spacing: -0.5px;
	margin-bottom: 20px;
}

.fk-hero--split .fk-hero-sub {
	font-size: 18px;
	color: #556070;
	line-height: 1.65;
	margin-bottom: 32px;
}

.fk-hero--split .fk-hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.fk-hero--split .fk-hero-trust {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.fk-hero--split .fk-trust-badge {
	font-size: 13px;
	font-weight: 600;
	color: #556070;
	display: flex;
	align-items: center;
	gap: 6px;
}

.fk-hero--split .fk-trust-badge::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #16a34a;
	border-radius: 50%;
}

.fk-hero--split .fk-hero-img {
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(30,64,175,0.14);
}

.fk-hero--center {
	padding: 80px 0;
	text-align: center;
}

.fk-hero--center .fk-hero-title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.3px;
	margin-bottom: 20px;
}

.fk-hero--center .fk-hero-sub {
	font-size: 18px;
	line-height: 1.65;
	margin-bottom: 32px;
}

.fk-hero--center .fk-hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

.fk-hero--dark {
	background: #0f1c38;
}

.fk-hero--dark .fk-hero-title {
	color: #ffffff;
}

.fk-hero--dark .fk-hero-sub {
	color: #8fabc4;
}

.fk-hero--blue {
	background: #1E40AF;
}

.fk-hero--blue .fk-hero-title {
	color: #ffffff;
}

.fk-hero--blue .fk-hero-sub {
	color: #e8f0fe;
}

.fk-hero--light {
	background: #f0f4f8;
}

.fk-hero--light .fk-hero-title {
	color: #1a1a2e;
}

.fk-hero--light .fk-hero-sub {
	color: #556070;
}

.fk-stats--bar {
	padding: 48px 0;
	background: #e8f0fe;
}

.fk-stats--bar .fk-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.fk-stats--bar .fk-stats-item {
	text-align: center;
	padding: 24px 16px;
	border-right: 1px solid #d1dce8;
}

.fk-stats--bar .fk-stats-item:last-child {
	border-right: none;
}

.fk-stats--bar .fk-stats-number {
	display: block;
	font-size: 36px;
	font-weight: 700;
	color: #1E40AF;
	line-height: 1.1;
	margin-bottom: 6px;
}

.fk-stats--bar .fk-stats-label {
	display: block;
	font-size: 14px;
	color: #556070;
	font-weight: 500;
}

@media (max-width: 768px) {
	.fk-stats--bar .fk-stats-grid { grid-template-columns: repeat(2, 1fr); }
	.fk-stats--bar .fk-stats-item { border-right: none; border-bottom: 1px solid #d1dce8; }
	.fk-stats--bar .fk-stats-item:last-child { border-bottom: none; }
}

.fk-stats--cards .fk-stats-card {
	background: #ffffff;
	border: 1px solid #d1dce8;
	border-radius: 10px;
	padding: 32px 24px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(30,64,175,0.08);
	height: 100%;
}

.fk-stats--cards .fk-stats-number {
	display: block;
	font-size: 40px;
	font-weight: 700;
	color: #1E40AF;
	margin-bottom: 8px;
}

.fk-stats--cards .fk-stats-label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 8px;
}

.fk-stats--cards .fk-stats-desc {
	font-size: 14px;
	color: #556070;
}

.fk-features--grid .fk-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.fk-features--grid .fk-feature-card {
	background: #ffffff;
	border: 1px solid #d1dce8;
	border-radius: 10px;
	padding: 28px;
	box-shadow: 0 4px 20px rgba(30,64,175,0.08);
	transition: all 0.22s ease;
}

.fk-features--grid .fk-feature-card:hover {
	box-shadow: 0 8px 32px rgba(30,64,175,0.14);
	transform: translateY(-2px);
}

.fk-features--grid .fk-feature-icon {
	width: 52px;
	height: 52px;
	background: #e8f0fe;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.fk-features--grid .fk-feature-icon i {
	font-size: 22px;
	color: #1E40AF;
}

.fk-features--grid .fk-feature-name {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 10px;
}

.fk-features--grid .fk-feature-text {
	font-size: 15px;
	color: #556070;
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 991px) {
	.fk-features--grid .fk-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
	.fk-features--grid .fk-features-grid { grid-template-columns: 1fr; }
}

.fk-features--alternating .fk-alt-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	margin-bottom: 80px;
}

.fk-features--alternating .fk-alt-row:last-child {
	margin-bottom: 0;
}

.fk-features--alternating .fk-alt-row--reverse {
	direction: rtl;
}

.fk-features--alternating .fk-alt-row--reverse > * {
	direction: ltr;
}

.fk-features--alternating .fk-alt-name {
	font-size: 26px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 16px;
}

.fk-features--alternating .fk-alt-text {
	font-size: 16px;
	color: #556070;
	line-height: 1.7;
	margin-bottom: 16px;
}

.fk-features--alternating .fk-alt-bullets {
	list-style: none;
	padding: 0;
	margin: 0;
}

.fk-features--alternating .fk-alt-bullets li {
	font-size: 15px;
	color: #1a1a2e;
	padding: 6px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.fk-features--alternating .fk-alt-bullets li i {
	color: #1E40AF;
	font-size: 14px;
	flex-shrink: 0;
}

.fk-features--alternating .fk-alt-img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(30,64,175,0.08);
}

@media (max-width: 991px) {
	.fk-features--alternating .fk-alt-row {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.fk-features--alternating .fk-alt-row--reverse { direction: ltr; }
}

.fk-process .fk-process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.fk-process .fk-process-step {
	background: #ffffff;
	border: 1px solid #d1dce8;
	border-radius: 10px;
	padding: 32px 24px;
	box-shadow: 0 4px 20px rgba(30,64,175,0.08);
}

.fk-process .fk-process-num {
	display: block;
	font-size: 42px;
	font-weight: 900;
	color: #1E40AF;
	opacity: 0.3;
	line-height: 1;
	margin-bottom: 16px;
}

.fk-process .fk-process-name {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 10px;
}

.fk-process .fk-process-text {
	font-size: 15px;
	color: #556070;
	line-height: 1.7;
	margin: 0;
}

@media (max-width: 991px) {
	.fk-process .fk-process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
	.fk-process .fk-process-steps { grid-template-columns: 1fr; }
}

.fk-timeline {
	overflow-x: auto;
	padding-bottom: 16px;
}

.fk-timeline__track {
	display: flex;
	gap: 0;
	min-width: 700px;
	position: relative;
}

.fk-timeline__track::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 32px;
	right: 32px;
	height: 2px;
	background: #d1dce8;
	z-index: 0;
}

.fk-timeline__step {
	flex: 1;
	text-align: center;
	padding: 0 16px;
	position: relative;
}

.fk-timeline__dot {
	width: 40px;
	height: 40px;
	background: #1E40AF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	position: relative;
	z-index: 1;
}

.fk-timeline__name {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 6px;
}

.fk-timeline__desc {
	font-size: 13px;
	color: #556070;
}

.fk-testimonials .fk-test-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.fk-testimonials .fk-test-card {
	background: #ffffff;
	border: 1px solid #d1dce8;
	border-radius: 10px;
	padding: 28px;
	box-shadow: 0 4px 20px rgba(30,64,175,0.08);
	display: flex;
	flex-direction: column;
}

.fk-testimonials .fk-test-quote {
	font-size: 16px;
	color: #1a1a2e;
	line-height: 1.65;
	margin-bottom: 24px;
	flex: 1;
}

.fk-testimonials .fk-test-quote::before {
	content: "\201C";
	display: block;
	font-size: 48px;
	color: #1E40AF;
	line-height: 1;
	margin-bottom: 8px;
}

.fk-testimonials .fk-test-author {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a2e;
}

.fk-testimonials .fk-test-role {
	font-size: 13px;
	color: #556070;
	margin-top: 2px;
}

@media (max-width: 991px) {
	.fk-testimonials .fk-test-grid { grid-template-columns: 1fr; }
}

.fk-cta--banner {
	padding: 80px 0;
	background: #0f1c38;
	text-align: center;
}

.fk-cta--banner .fk-cta-title {
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
}

.fk-cta--banner .fk-cta-desc {
	font-size: 18px;
	color: #8fabc4;
	margin-bottom: 36px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.fk-cta--banner .fk-cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.fk-cta--banner .fk-cta-link {
	color: #e2e8f0;
	font-size: 15px;
	text-decoration: none;
	font-weight: 500;
}

.fk-cta--banner .fk-cta-link:hover {
	color: #ffffff;
	text-decoration: underline;
}

.fk-cta--card {
	padding: 80px 0;
	background: #f0f4f8;
}

.fk-cta--card .fk-cta-inner {
	background: #ffffff;
	border: 1px solid #d1dce8;
	border-radius: 16px;
	padding: 60px 48px;
	text-align: center;
	max-width: 680px;
	margin: 0 auto;
	box-shadow: 0 4px 20px rgba(30,64,175,0.08);
}

.fk-cta--card .fk-cta-title {
	font-size: 32px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 16px;
}

.fk-cta--card .fk-cta-desc {
	font-size: 16px;
	color: #556070;
	margin-bottom: 32px;
}

.site-footer {
	background: #0f1c38;
	padding: 64px 0 32px;
}

.site-footer .fk-footer-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.site-footer .fk-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 48px;
	margin-bottom: 48px;
}

.site-footer .fk-footer-logo {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	display: block;
	margin-bottom: 12px;
}

.site-footer .fk-footer-tagline {
	font-size: 14px;
	color: #8fabc4;
	line-height: 1.6;
}

.site-footer .fk-footer-col h4 {
	font-size: 13px;
	font-weight: 600;
	color: #e2e8f0;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 16px;
}

.site-footer .fk-footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer .fk-footer-col ul li {
	margin-bottom: 10px;
}

.site-footer .fk-footer-col ul li a {
	font-size: 14px;
	color: #8fabc4;
	text-decoration: none;
	transition: color 0.22s ease;
}

.site-footer .fk-footer-col ul li a:hover {
	color: #ffffff;
}

.site-footer .fk-footer-contact p {
	font-size: 14px;
	color: #8fabc4;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
}

.site-footer .fk-footer-contact p i {
	color: #3b82f6;
	margin-top: 2px;
	flex-shrink: 0;
}

.site-footer .fk-footer-contact a {
	color: #8fabc4;
	text-decoration: none;
}

.site-footer .fk-footer-contact a:hover {
	color: #ffffff;
}

.site-footer .fk-footer-bottom {
	border-top: 1px solid #1a2d52;
	padding-top: 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.site-footer .fk-footer-bottom p {
	font-size: 13px;
	color: #8fabc4;
	margin: 0;
}

.site-footer .fk-footer-legal {
	display: flex;
	gap: 20px;
}

.site-footer .fk-footer-legal a {
	font-size: 13px;
	color: #8fabc4;
	text-decoration: none;
	transition: color 0.22s ease;
}

.site-footer .fk-footer-legal a:hover {
	color: #ffffff;
}

@media (max-width: 991px) {
	.site-footer .fk-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 576px) {
	.site-footer .fk-footer-grid { grid-template-columns: 1fr; }
	.site-footer .fk-footer-bottom { flex-direction: column; text-align: center; }
}

.fk-team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.fk-team-card {
	text-align: center;
}

.fk-team-card .fk-team-photo {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 16px;
}

.fk-team-card .fk-team-name {
	font-size: 17px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 4px;
}

.fk-team-card .fk-team-role {
	font-size: 14px;
	color: #556070;
	margin: 0;
}

@media (max-width: 991px) {
	.fk-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
	.fk-team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

.fk-contact-section {
	padding: 80px 0;
	background: #ffffff;
}

.fk-contact-form-wrap {
	background: #ffffff;
}

.fk-contact-form-wrap h2 {
	font-size: 28px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 28px;
}

.fk-contact-form input,
.fk-contact-form select,
.fk-contact-form textarea {
	display: block;
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1dce8;
	border-radius: 8px;
	font-size: 15px;
	color: #1a1a2e;
	background: #ffffff;
	margin-bottom: 16px;
	font-family: 'Inter', 'Segoe UI', sans-serif;
	transition: border-color 0.22s ease;
}

.fk-contact-form input:focus,
.fk-contact-form select:focus,
.fk-contact-form textarea:focus {
	outline: none;
	border-color: #1E40AF;
	box-shadow: 0 0 0 3px rgba(30,64,175,0.08);
}

.fk-contact-form .fk-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.fk-contact-form .fk-form-row input {
	margin-bottom: 0;
}

.fk-contact-form .fk-form-gap {
	margin-bottom: 16px;
}

.fk-contact-info-wrap {
	padding-left: 32px;
}

.fk-contact-info-wrap h3 {
	font-size: 20px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 24px;
}

.fk-contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 20px;
}

.fk-contact-info-item i {
	font-size: 16px;
	color: #1E40AF;
	margin-top: 3px;
	flex-shrink: 0;
	width: 20px;
	text-align: center;
}

.fk-contact-info-item .fk-info-text {
	font-size: 15px;
	color: #556070;
	line-height: 1.6;
}

.fk-contact-info-item a {
	color: #1E40AF;
	text-decoration: none;
}

.fk-contact-info-item a:hover {
	color: #1e3a8a;
	text-decoration: underline;
}

.fk-contact-hours {
	margin-top: 32px;
	padding: 20px;
	background: #f0f4f8;
	border-radius: 8px;
}

.fk-contact-hours h4 {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 8px;
}

.fk-contact-hours p {
	font-size: 14px;
	color: #556070;
	margin: 0;
}

@media (max-width: 767px) {
	.fk-contact-info-wrap { padding-left: 0; margin-top: 40px; }
	.fk-contact-form .fk-form-row { grid-template-columns: 1fr; }
	.fk-contact-form .fk-form-row input { margin-bottom: 16px; }
}

.fk-blog-grid {
	padding: 80px 0;
	background: #ffffff;
}

.fk-blog-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.fk-blog-card {
	display: flex;
	flex-direction: column;
	border: 1px solid #d1dce8;
	border-radius: 10px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(30,64,175,0.06);
	transition: all 0.22s ease;
	height: 100%;
}

.fk-blog-card:hover {
	box-shadow: 0 8px 32px rgba(30,64,175,0.12);
	transform: translateY(-2px);
}

.fk-blog-card-img-link {
	display: block;
	overflow: hidden;
}

.fk-blog-card .fk-blog-thumb {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: transform 0.22s ease;
}

.fk-blog-card:hover .fk-blog-thumb {
	transform: scale(1.03);
}

.fk-blog-card .fk-blog-body {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.fk-blog-card .fk-blog-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.fk-blog-card .fk-blog-cat {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #1E40AF;
	background: #e8f0fe;
	padding: 3px 8px;
	border-radius: 4px;
}

.fk-blog-card .fk-blog-date {
	font-size: 12px;
	color: #556070;
}

.fk-blog-card .fk-blog-title {
	font-size: 17px;
	font-weight: 600;
	color: #1a1a2e;
	line-height: 1.4;
	margin-bottom: 10px;
	text-decoration: none;
	display: block;
}

.fk-blog-card .fk-blog-title:hover {
	color: #1E40AF;
}

.fk-blog-card .fk-blog-excerpt {
	font-size: 14px;
	color: #556070;
	line-height: 1.6;
	margin-bottom: 0;
	flex: 1;
}

.fk-blog-card .fk-blog-read {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: #1E40AF;
	text-decoration: none;
	margin-top: auto;
	padding-top: 16px;
}

.fk-blog-card .fk-blog-read:hover {
	color: #1e3a8a;
	text-decoration: underline;
}

@media (max-width: 991px) {
	.fk-blog-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
	.fk-blog-list { grid-template-columns: 1fr; }
}

.fk-principles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.fk-principle-card {
	background: #ffffff;
	border: 1px solid #d1dce8;
	border-radius: 10px;
	padding: 36px 28px;
	box-shadow: 0 4px 20px rgba(30,64,175,0.08);
}

.fk-principle-icon {
	width: 52px;
	height: 52px;
	background: #e8f0fe;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.fk-principle-icon i {
	font-size: 22px;
	color: #1E40AF;
}

.fk-principle-name {
	font-size: 20px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 12px;
}

.fk-principle-text {
	font-size: 15px;
	color: #556070;
	line-height: 1.7;
	margin: 0;
}

@media (max-width: 767px) {
	.fk-principles-grid { grid-template-columns: 1fr; }
}

.fk-legal-content {
	max-width: 840px;
	margin: 0 auto;
	padding: 60px 24px;
}

.fk-legal-content h1 {
	font-size: 32px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 8px;
}

.fk-legal-content .fk-legal-date {
	font-size: 14px;
	color: #556070;
	margin-bottom: 40px;
}

.fk-legal-content h2 {
	font-size: 22px;
	font-weight: 600;
	color: #1a1a2e;
	margin-top: 40px;
	margin-bottom: 12px;
}

.fk-legal-content p {
	font-size: 16px;
	color: #556070;
	line-height: 1.7;
	margin-bottom: 16px;
}

.fk-legal-content ul {
	padding-left: 20px;
	margin-bottom: 16px;
}

.fk-legal-content ul li {
	font-size: 16px;
	color: #556070;
	line-height: 1.7;
	margin-bottom: 8px;
}

.fk-legal-content a {
	color: #1E40AF;
}

.fk-story-section .fk-story-text h3 {
	font-size: 26px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 20px;
}

.fk-story-section .fk-story-text p {
	font-size: 16px;
	color: #556070;
	line-height: 1.7;
	margin-bottom: 16px;
}

.fk-story-section .fk-story-img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(30,64,175,0.08);
}

.fk-404-page {
	min-height: calc(100vh - 72px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f4f8;
	padding: 60px 24px;
}

.fk-404-inner {
	text-align: center;
	max-width: 560px;
}

.fk-404-code {
	font-size: 120px;
	font-weight: 700;
	color: #1E40AF;
	line-height: 1;
	margin-bottom: 24px;
}

.fk-404-title {
	font-size: 28px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 16px;
}

.fk-404-text {
	font-size: 16px;
	color: #556070;
	margin-bottom: 36px;
}

.fk-404-logo {
	font-size: 20px;
	font-weight: 700;
	color: #1E40AF;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 32px;
}

#fk-cookie-banner {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #0f1c38;
	border-top: 1px solid #1a2d52;
	padding: 16px 24px;
	z-index: 9999;
}

.fk-cookie-inner {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.fk-cookie-text {
	font-size: 14px;
	color: #e2e8f0;
	line-height: 1.5;
	flex: 1;
}

.fk-cookie-text a {
	color: #3b82f6;
	text-decoration: underline;
}

.fk-cookie-buttons {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.fk-cookie-accept {
	background: #1E40AF;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: 9px 20px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.22s ease;
}

.fk-cookie-accept:hover {
	background: #1e3a8a;
}

.fk-cookie-manage {
	background: none;
	border: none;
	color: #8fabc4;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	text-decoration: underline;
	padding: 9px 0;
}

.fk-cookie-manage:hover {
	color: #ffffff;
}

@media (max-width: 576px) {
	.fk-cookie-inner { flex-direction: column; align-items: flex-start; }
	.fk-hero--split .fk-hero-title { font-size: 34px; }
	.fk-hero--center .fk-hero-title { font-size: 30px; }
	.fk-section-title { font-size: 26px; }
	.fk-cta--banner .fk-cta-title { font-size: 26px; }
}

@media (max-width: 767px) {
	.fk-hero--split { padding: 60px 0; }
	.fk-hero--split .fk-hero-img { margin-top: 40px; }
	.fk-principles-grid { grid-template-columns: 1fr; }
	.fk-testimonials .fk-test-grid { grid-template-columns: 1fr; }
}

/* === Logo v2: dual-variant dark/light === */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}

/* Nav default: show dark logo (for light bg), hide light logo */
.logo-img--light { display: none !important; }
.logo-img--dark  { display: inline-block !important; }

/* When nav has dark background (hero overlay, scroll state), swap variants */
.navbar-dark .logo-img--light,
.c-nav--dark .logo-img--light,
.nav--hero .logo-img--light,
body.hero-dark .logo-img--light {
  display: inline-block !important;
}
.navbar-dark .logo-img--dark,
.c-nav--dark .logo-img--dark,
.nav--hero .logo-img--dark,
body.hero-dark .logo-img--dark {
  display: none !important;
}

/* Footer logo always shows light variant */
footer .logo-img { max-height: 48px; }
