/* ===== Header ===== */
.fk-header {
	border-bottom: 1px solid var(--fk-gray-border);
	padding: 16px 0;
	position: sticky;
	top: 0;
	background: var(--fk-white);
	z-index: 100;
}
.fk-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.fk-logo { font-weight: 800; font-size: 20px; line-height: 1.1; letter-spacing: 0.5px; }
.fk-logo-red { color: var(--fk-red); }
.fk-logo-black { color: var(--fk-black); }
.fk-nav-list { display: flex; gap: 28px; }
.fk-nav-list a { font-weight: 500; font-size: 15px; }
.fk-nav-list a:hover { color: var(--fk-red); }
.fk-header-actions { display: flex; gap: 12px; }
.fk-header-actions .fk-btn { padding: 10px 18px; font-size: 14px; }

/* ===== Hero ===== */
.fk-hero { background: var(--fk-gray-bg); padding: 64px 0; overflow: hidden; }
.fk-hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.fk-hero h1 { font-size: 42px; line-height: 1.15; font-weight: 800; margin: 0 0 20px; }
.fk-red-text { color: var(--fk-red); }
.fk-hero-sub { font-size: 17px; color: var(--fk-gray-text); margin: 0 0 28px; }
.fk-hero-ctas { display: flex; gap: 14px; margin-bottom: 40px; }
.fk-hero-stats { display: flex; gap: 32px; }
.fk-hero-stats div { display: flex; flex-direction: column; }
.fk-hero-stats strong { font-size: 20px; color: var(--fk-red); }
.fk-hero-stats span { font-size: 13px; color: var(--fk-gray-text); }
.fk-hero-visual { max-width: 380px; margin: 0 auto; position: relative; }
#fk-globe { width: 100%; aspect-ratio: 1 / 1; }
#fk-globe canvas { border-radius: 50%; }
.fk-hero-search {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
	display: flex; align-items: center; background: var(--fk-white); border-radius: 999px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.18); padding: 4px 4px 4px 16px; width: 82%;
}
.fk-hero-search input[type="search"] {
	flex: 1; border: none; outline: none; font-size: 13px; padding: 8px 4px; font-family: inherit;
}
.fk-hero-search button {
	border: none; background: var(--fk-red); color: var(--fk-white); width: 32px; height: 32px;
	border-radius: 50%; cursor: pointer; font-size: 13px; flex-shrink: 0;
}

/* ===== Category pills ===== */
.fk-categories { padding: 32px 0; border-bottom: 1px solid var(--fk-gray-border); }
.fk-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.fk-pill {
	padding: 9px 20px; border-radius: 999px; border: 1.5px solid var(--fk-gray-border);
	background: var(--fk-white); font-size: 14px; font-weight: 600; cursor: pointer; color: var(--fk-black);
}
.fk-pill:hover { border-color: var(--fk-red); }
.fk-pill.is-active { background: var(--fk-red); border-color: var(--fk-red); color: var(--fk-white); }

/* ===== Brand grid ===== */
.fk-brand-grid-section { padding: 48px 0; }
.fk-brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fk-card {
	border: 1px solid var(--fk-gray-border); border-radius: var(--fk-radius); overflow: hidden;
	background: var(--fk-white); transition: box-shadow 0.15s ease, transform 0.15s ease; display: block;
}
.fk-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.fk-card-logo {
	position: relative; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center;
	background: var(--fk-silver-bg); padding: 20px;
}
.fk-card--platinum .fk-card-logo { background: var(--fk-black); }
.fk-card--platinum .fk-card-logo-fallback { color: var(--fk-white); }
.fk-card--gold .fk-card-logo { background: var(--fk-gold-bg); }
.fk-card--platinum { grid-column: span 2; grid-row: span 2; }
.fk-card--gold { grid-column: span 2; }
.fk-card-logo-fallback { font-weight: 700; font-size: 18px; text-align: center; }
.fk-verified-badge {
	position: absolute; top: 10px; right: 10px; background: #E8F5E9; color: #1B5E20;
	font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px;
}
.fk-card-body { padding: 14px 16px; }
.fk-card-title { font-size: 15px; font-weight: 700; margin: 0 0 8px; }
.fk-card-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--fk-gray-text); }
.fk-card-investment { color: var(--fk-red); font-weight: 700; }
.fk-empty-state { grid-column: 1 / -1; text-align: center; color: var(--fk-gray-text); padding: 40px 0; }

/* ===== List-your-brand / contact section ===== */
.fk-contact-section { background: var(--fk-black); color: var(--fk-white); padding: 64px 0; text-align: center; }
.fk-contact-section h2 { font-size: 30px; margin: 0 0 12px; }
.fk-contact-section p { color: #bbb; margin: 0 0 24px; }

/* ===== Footer ===== */
.fk-footer { background: var(--fk-black); color: #aaa; padding: 40px 0; border-top: 1px solid #2a2a2a; }
.fk-footer-inner { text-align: center; }
.fk-footer-brand p { font-size: 13px; margin: 6px 0 20px; }
.fk-footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }
.fk-footer-links a { font-size: 13px; color: #ccc; }
.fk-footer-links a:hover { color: var(--fk-red); }
.fk-footer-copy { font-size: 12px; color: #777; }

/* ===== Single brand page ===== */
.fk-brand-hero { position: relative; background: var(--fk-black); color: var(--fk-white); padding: 60px 0; }
.fk-brand-hero-bg { position: absolute; inset: 0; opacity: 0.35; }
.fk-brand-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.fk-brand-hero h1 { position: relative; font-size: 34px; margin: 0; }
.fk-brand-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; padding: 40px 24px 64px; }
.fk-brand-video-gallery { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
.fk-brand-video-gallery:has(.fk-brand-video:nth-child(2)) { grid-template-columns: repeat(2, 1fr); }
.fk-brand-video { border-radius: var(--fk-radius); overflow: hidden; }
.fk-brand-content { font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.fk-brand-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.fk-brand-gallery img { border-radius: 8px; aspect-ratio: 4/3; object-fit: cover; }

.fk-facts-card { border: 1px solid var(--fk-gray-border); border-radius: var(--fk-radius); padding: 20px; margin-bottom: 20px; }
.fk-facts-card h3 { margin: 0 0 12px; font-size: 16px; }
.fk-facts-card ul li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--fk-gray-border); font-size: 14px; }
.fk-facts-card ul li:last-child { border-bottom: none; }
.fk-facts-card ul li span { color: var(--fk-gray-text); }

.fk-sticky-form { position: sticky; top: 90px; }
.fk-contact-form-wrap { border: 1px solid var(--fk-gray-border); border-radius: var(--fk-radius); padding: 20px; }
.fk-contact-form-wrap h4 { margin: 0 0 6px; font-size: 16px; }
.fk-form-note { font-size: 12px; color: var(--fk-gray-text); margin: 0 0 14px; }
.fk-contact-form { display: flex; flex-direction: column; gap: 10px; }
.fk-contact-form input, .fk-contact-form textarea {
	padding: 11px 12px; border: 1px solid var(--fk-gray-border); border-radius: 6px; font-size: 14px; font-family: inherit;
}
.fk-form-submit { margin-top: 6px; width: 100%; }
.fk-form-success { background: #E8F5E9; color: #1B5E20; padding: 10px 14px; border-radius: 6px; font-size: 13px; margin-bottom: 12px; }
.fk-form-error { background: #FDECEA; color: #B71C1C; padding: 10px 14px; border-radius: 6px; font-size: 13px; margin-bottom: 12px; }

/* ===== Brand partner login ===== */
.fk-auth-wrap { display: flex; justify-content: center; padding: 64px 24px; }
.fk-auth-card { width: 100%; max-width: 380px; border: 1px solid var(--fk-gray-border); border-radius: var(--fk-radius); padding: 28px; }
.fk-auth-card h1 { font-size: 22px; margin: 0 0 8px; }

/* ===== Brand partner dashboard ===== */
.fk-dashboard { padding: 40px 24px 64px; }
.fk-dashboard-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.fk-dashboard-header h1 { font-size: 24px; margin: 0; }
.fk-dashboard-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.fk-dashboard-main .fk-facts-card { text-align: left; }
.fk-dashboard .fk-contact-form label { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--fk-gray-text); font-weight: 600; }
.fk-dashboard .fk-contact-form input, .fk-dashboard .fk-contact-form textarea { font-weight: 400; color: var(--fk-black); }
.fk-dash-media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.fk-dash-media-item { position: relative; aspect-ratio: 1; border-radius: 6px; overflow: hidden; }
.fk-dash-media-item img { width: 100%; height: 100%; object-fit: cover; }
.fk-dash-delete {
	position: absolute; top: 6px; right: 6px; width: 26px; height: 26px; border-radius: 50%;
	background: rgba(0,0,0,0.65); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.fk-dash-video-list { margin: 0 0 16px; }
.fk-dash-video-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--fk-gray-border); font-size: 14px; }
.fk-dash-video-list .fk-dash-delete { position: static; background: transparent; color: var(--fk-red); width: auto; height: auto; }
.fk-dash-leads-list li { display: flex; flex-direction: column; gap: 2px; padding: 10px 0; border-bottom: 1px solid var(--fk-gray-border); font-size: 13px; }
.fk-dash-lead-date { color: var(--fk-gray-text); font-size: 11px; }

/* ===== Simple page template (About, Privacy, Terms, Contact) ===== */
.fk-page-content { padding: 56px 24px; max-width: 820px; }
.fk-page-content h1 { font-size: 32px; margin: 0 0 24px; }
.fk-page-body { font-size: 16px; line-height: 1.8; color: var(--fk-black); }
.fk-page-body h2 { font-size: 22px; margin: 32px 0 12px; }
.fk-page-body p { margin: 0 0 16px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
	.fk-hero-inner { grid-template-columns: 1fr; }
	.fk-hero-visual { order: -1; max-width: 260px; }
	.fk-brand-grid { grid-template-columns: repeat(2, 1fr); }
	.fk-card--platinum, .fk-card--gold { grid-column: span 2; }
	.fk-brand-layout { grid-template-columns: 1fr; }
	.fk-header-inner { flex-wrap: wrap; }
	.fk-nav-list { display: none; }
}
@media (max-width: 560px) {
	.fk-hero h1 { font-size: 30px; }
	.fk-brand-grid { grid-template-columns: 1fr; }
	.fk-card--platinum, .fk-card--gold { grid-column: span 1; }
	.fk-hero-ctas { flex-direction: column; }
}
