:root {
    --qk-primary: #143d8d;
    --qk-secondary: #0f766e;
    --qk-dark: #111827;
    --qk-light: #f8fafc;
    --qk-soft: #eef4ff;
    --qk-border: #e5e7eb;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: var(--qk-dark);
}

a { text-decoration: none; }

.qk-header {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.qk-logo-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--qk-primary);
}

.qk-logo-text span { color: var(--qk-secondary); }
.qk-tenant-logo {
    max-height: 42px;
    width: auto;
}
.nav-link { font-weight: 600; color: #1f2937; }

.qk-btn {
    background: linear-gradient(135deg, var(--qk-primary), var(--qk-secondary));
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: 700;
    border: 0;
}

.qk-outline {
    border: 2px solid var(--qk-primary);
    color: var(--qk-primary);
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: 700;
}

.qk-hero {
    background: linear-gradient(135deg, #eaf1ff, #ffffff, #e9fff9);
    padding: 80px 0;
}

.qk-badge {
    display: inline-block;
    background: #ffffff;
    color: var(--qk-primary);
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.qk-hero h1 {
    font-size: 52px;
    font-weight: 900;
    margin-top: 20px;
    line-height: 1.1;
}

.qk-hero p {
    font-size: 18px;
    color: #4b5563;
    margin-top: 15px;
}

.qk-search-box {
    margin-top: 30px;
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.qk-search-box input {
    border: none;
    flex: 1;
    padding: 15px 20px;
    border-radius: 8px;
    outline: none;
}

.qk-search-box button {
    border: none;
    background: var(--qk-primary);
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 700;
}

.qk-hero-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.qk-hero-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.qk-hero-card h3 {
    font-weight: 800;
    margin-bottom: 20px;
}

.qk-platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.qk-platform-grid span,
.qk-platform-pill {
    background: var(--qk-soft);
    padding: 18px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
}

.qk-section { padding: 70px 0; }
.qk-soft-bg { background: #f8fbff; }

.qk-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.qk-section-title h2 {
    font-size: 36px;
    font-weight: 900;
}

.qk-section-title p { color: #6b7280; }

.qk-color-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.qk-color-grid .box {
    min-height: 120px;
    border-radius: 8px;
    padding: 22px;
    color: #ffffff;
    font-weight: 800;
    display: flex;
    align-items: end;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.b1 { background: linear-gradient(135deg, #15803d, #22c55e); }
.b2 { background: linear-gradient(135deg, #166534, #16a34a); }
.b3 { background: linear-gradient(135deg, #0369a1, #38bdf8); }
.b4 { background: linear-gradient(135deg, #075985, #0ea5e9); }
.b5 { background: linear-gradient(135deg, #991b1b, #ef4444); }
.b6 { background: linear-gradient(135deg, #1d4ed8, #60a5fa); }
.b7 { background: linear-gradient(135deg, #be185d, #fb7185); }
.b8 { background: linear-gradient(135deg, #4c1d95, #8b5cf6); }
.b9 { background: linear-gradient(135deg, #0f172a, #38bdf8); }
.b10 { background: linear-gradient(135deg, #075985, #2563eb); }
.b11 { background: linear-gradient(135deg, #334155, #06b6d4); }
.b12 { background: linear-gradient(135deg, #854d0e, #f59e0b); }

.qk-group-card {
    background: #ffffff;
    border: 1px solid var(--qk-border);
    border-radius: 8px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    transition: 0.3s;
}

.qk-group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.qk-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qk-card-top img,
.qk-default-logo {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
}

.qk-default-logo {
    background: linear-gradient(135deg, var(--qk-primary), var(--qk-secondary));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 28px;
}

.qk-verified {
    background: #dcfce7;
    color: #166534;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

.qk-group-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-top: 18px;
}

.qk-group-card p {
    color: #6b7280;
    min-height: 48px;
}

.qk-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.qk-tags span {
    background: #eef2ff;
    color: #3730a3;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.qk-card-btn {
    display: block;
    background: var(--qk-dark);
    color: #ffffff;
    text-align: center;
    padding: 11px;
    border-radius: 8px;
    font-weight: 800;
}

.qk-warning {
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
    text-align: center;
}

.qk-warning h2 { font-weight: 900; }

.qk-footer {
    background: #0f172a;
    color: #ffffff;
    padding: 55px 0 20px;
}

.qk-footer h4,
.qk-footer h5 { font-weight: 800; }

.qk-footer a {
    display: block;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.qk-copy {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 35px;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

.qk-auth-section,
.qk-dashboard-section {
    background: linear-gradient(135deg, #eef4ff, #ffffff, #ecfdf5);
    padding: 70px 0;
    min-height: 80vh;
}

.qk-auth-box,
.qk-form-card {
    background: #ffffff;
    max-width: 760px;
    margin: auto;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

.qk-dashboard-wide {
    max-width: 1100px;
}

.qk-auth-box h2,
.qk-form-card h2 {
    font-weight: 900;
    color: #143d8d;
}

.qk-form-card label,
.qk-auth-box label {
    font-weight: 700;
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: 12px;
}

.qk-policy-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
}

.qk-table-card {
    background: #ffffff;
    border: 1px solid var(--qk-border);
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.stat-box {
    background: #ffffff;
    border: 1px solid var(--qk-border);
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.qk-inner-hero {
    background: linear-gradient(135deg, #eaf1ff, #ffffff, #ecfdf5);
    padding: 55px 0;
}

.qk-inner-hero h1 {
    font-weight: 900;
    font-size: 42px;
    color: #0f172a;
}

.qk-inner-hero p {
    color: #64748b;
    font-size: 17px;
}

.qk-breadcrumb {
    font-size: 14px;
    margin-bottom: 15px;
    color: #64748b;
}

.qk-breadcrumb a {
    color: #143d8d;
    font-weight: 700;
}

.qk-filter-box {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.qk-empty-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    font-weight: 800;
}

.qk-detail-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
}

.qk-detail-head {
    display: flex;
    align-items: center;
    gap: 20px;
}

.qk-detail-head img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
}

.qk-detail-head h2 {
    font-weight: 900;
    margin-bottom: 5px;
}

.qk-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.qk-info-grid div {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
}

.qk-action-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.qk-review-box,
.qk-report-box,
.qk-qr-box {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.qk-review-box h4,
.qk-report-box h4,
.qk-qr-box h4 {
    font-weight: 900;
    margin-bottom: 16px;
}

.qk-qr-box {
    text-align: center;
}

.qk-price-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    height: 100%;
}

.qk-price-card h3 {
    font-weight: 900;
    color: #143d8d;
}

.qk-price {
    font-size: 34px;
    font-weight: 900;
    margin: 20px 0;
}

.qk-price span {
    font-size: 14px;
    color: #64748b;
}

.qk-price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.qk-price-card li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
}

.qk-status-badge {
    display: inline-block;
    padding: 6px 13px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
}

.qk-badge-success { background: #dcfce7; color: #166534; }
.qk-badge-warning { background: #fef3c7; color: #92400e; }
.qk-badge-danger { background: #fee2e2; color: #991b1b; }
.qk-badge-dark { background: #e5e7eb; color: #374151; }
.qk-badge-default { background: #e0f2fe; color: #075985; }

.qk-empty-state {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 45px 25px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.qk-empty-icon {
    display: inline-block;
    margin-bottom: 12px;
    color: #143d8d;
    font-weight: 900;
}

.qk-empty-state h4 {
    font-weight: 900;
    color: #143d8d;
}

.qk-empty-state p { color: #64748b; }

.qk-alert {
    padding: 15px 18px;
    border-radius: 8px;
    font-weight: 800;
    margin-bottom: 20px;
}

.qk-alert-success { background: #dcfce7; color: #166534; }
.qk-alert-danger { background: #fee2e2; color: #991b1b; }

.premium-card {
    position: relative;
    overflow: hidden;
}

.qk-ribbon {
    position: absolute;
    top: 14px;
    right: -34px;
    background: #f59e0b;
    color: #111827;
    padding: 6px 42px;
    font-size: 12px;
    font-weight: 900;
    transform: rotate(35deg);
}

.qk-card-stats {
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 800;
    color: #475569;
}

.qk-trust-section {
    background: linear-gradient(135deg, #eef4ff, #ecfdf5);
    padding: 55px 0;
}

.qk-trust-box {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.qk-trust-box h4 {
    font-weight: 900;
    color: #143d8d;
}

.qk-trust-box p {
    color: #64748b;
    margin: 0;
}

.qk-dashboard-card {
    background: linear-gradient(135deg, #ffffff, #eef4ff);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 14px 32px rgba(0,0,0,0.07);
    height: 100%;
}

.qk-dashboard-card p {
    color: #64748b;
    font-weight: 800;
    margin: 0;
}

.qk-dashboard-card h3 {
    font-size: 34px;
    font-weight: 900;
    color: #143d8d;
    margin: 6px 0 0;
}

.qk-dashboard-card span {
    font-size: 34px;
    color: #0f766e;
    font-weight: 900;
}

.qk-blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0,0,0,0.08);
    height: 100%;
}

.qk-blog-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.qk-blog-content {
    padding: 22px;
}

.qk-blog-content h3 {
    font-weight: 900;
    font-size: 21px;
}

.qk-blog-content p {
    color: #64748b;
}

.qk-blog-detail {
    background: #ffffff;
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.qk-blog-detail img {
    width: 100%;
    border-radius: 22px;
    margin-bottom: 25px;
}

.qk-blog-body {
    font-size: 18px;
    line-height: 1.8;
}

.qk-ad-box {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.qk-ad-box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

.qk-reputation-badge {
    display: inline-block;
    padding: 6px 13px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
}

.qk-rep-new {
    background: #e5e7eb;
    color: #374151;
}

.qk-rep-bronze {
    background: #ffedd5;
    color: #9a3412;
}

.qk-rep-silver {
    background: #f1f5f9;
    color: #334155;
}

.qk-rep-gold {
    background: #fef3c7;
    color: #92400e;
}

.qk-rep-diamond {
    background: #e0f2fe;
    color: #075985;
}

@media(max-width: 991px) {
    .qk-hero h1 { font-size: 38px; }
    .qk-color-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 576px) {
    .qk-hero { padding: 50px 0; }
    .qk-hero h1 { font-size: 32px; }
    .qk-search-box {
        flex-direction: column;
        border-radius: 8px;
    }
    .qk-search-box button {
        width: 100%;
        margin-top: 8px;
    }
    .qk-color-grid { grid-template-columns: 1fr; }
}

@media(max-width: 768px) {
    .qk-inner-hero h1 { font-size: 30px; }
    .qk-info-grid { grid-template-columns: 1fr; }
    .qk-detail-head { align-items: flex-start; }
    .table { font-size: 13px; }
    .qk-table-card { overflow-x: auto; }
    .qk-card-stats { flex-direction: column; gap: 5px; }
}

/* Global polish pass */
:root {
    --qk-primary: #0b5cff;
    --qk-secondary: #00a884;
    --qk-accent: #ffb020;
    --qk-ink: #0b1220;
    --qk-muted: #64748b;
    --qk-surface: #f6f8fb;
    --qk-border: #dbe3ef;
}

html { scroll-behavior: smooth; }

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    background: var(--qk-surface);
    color: var(--qk-ink);
}

.qk-header {
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid rgba(219,227,239,0.85);
    box-shadow: 0 18px 50px rgba(15,23,42,0.08);
    backdrop-filter: blur(14px);
}

.navbar { gap: 12px; }

.navbar-nav {
    align-items: center;
    gap: 2px;
}

.nav-link {
    border-radius: 8px;
    color: #243044;
    font-size: 14px;
    padding: 9px 11px !important;
}

.nav-link:hover {
    background: #eef4ff;
    color: var(--qk-primary);
}

.navbar-toggler {
    border: 1px solid var(--qk-border);
    border-radius: 8px;
    padding: 8px 10px;
}

.qk-tenant-logo {
    max-height: 46px;
    max-width: 238px;
    object-fit: contain;
}

.qk-btn,
.qk-outline,
.qk-card-btn {
    border-radius: 10px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.qk-btn {
    background: linear-gradient(135deg, var(--qk-primary), #06b6d4 55%, var(--qk-secondary));
    box-shadow: 0 12px 24px rgba(11,92,255,0.22);
}

.qk-btn:hover,
.qk-card-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(11,92,255,0.25);
}

.qk-outline {
    background: #fff;
    border: 1px solid #b9c8dc;
    color: #0b3b8f;
}

.qk-outline:hover {
    background: #eef4ff;
    color: #0b3b8f;
}

.qk-hero,
.qk-inner-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(0,168,132,0.16), transparent 28%),
        radial-gradient(circle at 85% 14%, rgba(255,176,32,0.18), transparent 30%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 42%, #eef8f4 100%);
}

.qk-hero::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, rgba(11,92,255,.16), rgba(0,168,132,.16));
    border-radius: 50%;
    filter: blur(2px);
}

.qk-hero .container,
.qk-inner-hero .container { position: relative; z-index: 1; }

.qk-badge {
    border: 1px solid #dbeafe;
    color: #0b3b8f;
    box-shadow: 0 10px 24px rgba(11,92,255,0.12);
}

.qk-hero h1 {
    letter-spacing: 0;
    color: #07111f;
}

.qk-search-box,
.qk-filter-box,
.qk-hero-card,
.qk-group-card,
.qk-table-card,
.qk-auth-box,
.qk-form-card,
.qk-detail-card,
.qk-price-card,
.qk-trust-box,
.qk-dashboard-card,
.qk-blog-card,
.qk-blog-detail,
.stat-box {
    border: 1px solid rgba(219,227,239,0.95);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

.qk-search-box input,
.form-control,
.form-select {
    border-color: #cfd9e8;
    border-radius: 10px;
}

.qk-search-box button {
    background: #071b55;
    border-radius: 10px;
}

.qk-hero-card {
    background: linear-gradient(160deg, rgba(255,255,255,.96), rgba(239,247,255,.96));
}

.qk-platform-grid span {
    border: 1px solid #dbeafe;
    background: #ffffff;
    color: #0b3b8f;
}

.qk-section { padding: 78px 0; }
.qk-soft-bg { background: #eef5ff; }

.qk-section-title h2 {
    color: #07111f;
    letter-spacing: 0;
}

.qk-section-title p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.qk-color-grid .box,
.qk-category-tile {
    min-height: 132px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.qk-color-grid .box::before,
.qk-category-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.2), transparent 55%);
}

.qk-color-grid .box {
    align-items: flex-end;
    isolation: isolate;
}

.qk-category-band {
    background: linear-gradient(135deg, #fbfdff, #f3fff9);
}

.qk-section-trending {
    background:
        radial-gradient(circle at 15% 10%, rgba(255,176,32,.18), transparent 30%),
        linear-gradient(135deg, #fffaf1, #eef6ff);
}

.qk-company-featured {
    background:
        radial-gradient(circle at 85% 18%, rgba(0,168,132,.13), transparent 32%),
        linear-gradient(135deg, #ffffff, #f1fff8);
}

.qk-section-platforms {
    background:
        linear-gradient(135deg, rgba(11,92,255,.08), rgba(124,58,237,.08)),
        #ffffff;
}

.qk-section-featured {
    background:
        radial-gradient(circle at 8% 18%, rgba(11,92,255,.14), transparent 30%),
        linear-gradient(135deg, #eef5ff, #fbfdff);
}

.qk-section-latest {
    background:
        radial-gradient(circle at 90% 12%, rgba(0,168,132,.12), transparent 30%),
        #ffffff;
}

.qk-category-tiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.qk-category-tile {
    color: #fff;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 16px 34px rgba(15,23,42,0.13);
    transition: transform .2s ease, box-shadow .2s ease;
}

.qk-category-tile:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(15,23,42,0.18);
}

.qk-category-tile span,
.qk-category-tile strong,
.qk-category-tile small {
    position: relative;
    z-index: 1;
}

.qk-category-tile span {
    font-size: 13px;
    opacity: .85;
    font-weight: 900;
}

.qk-category-tile strong {
    font-size: 20px;
    line-height: 1.15;
}

.qk-category-tile small {
    font-weight: 800;
    opacity: .92;
}

.t1 { background: linear-gradient(135deg, #0b5cff, #06b6d4); }
.t2 { background: linear-gradient(135deg, #00a884, #16a34a); }
.t3 { background: linear-gradient(135deg, #7c3aed, #d946ef); }
.t4 { background: linear-gradient(135deg, #f97316, #ffb020); }
.t5 { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.t6 { background: linear-gradient(135deg, #dc2626, #fb7185); }
.t7 { background: linear-gradient(135deg, #334155, #0ea5e9); }
.t8 { background: linear-gradient(135deg, #4338ca, #2563eb); }

.qk-group-card {
    background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.qk-group-card h3 {
    color: #111827;
    line-height: 1.25;
}

.qk-group-card p {
    color: #5f6f85;
}

.qk-card-top img,
.qk-default-logo {
    border-radius: 12px;
    border: 1px solid #e7edf6;
}

.qk-tags span {
    background: #eef6ff;
    color: #0b3b8f;
}

.qk-card-btn {
    background: #101827;
}

.qk-footer {
    background:
        linear-gradient(135deg, rgba(11,92,255,.14), transparent 35%),
        radial-gradient(circle at 92% 0%, rgba(0,168,132,.2), transparent 28%),
        #07111f;
}

.qk-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 26px;
    margin-bottom: 34px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
}

.qk-footer-top h3 {
    font-weight: 900;
    margin: 0 0 6px;
}

.qk-footer-top p {
    margin: 0;
}

.qk-footer-whatsapp {
    background: linear-gradient(135deg, #00a884, #22c55e);
    color: #fff;
    border: 0;
    white-space: nowrap;
}

.qk-footer-whatsapp:hover {
    color: #fff;
}

.qk-footer-links-two {
    column-count: 2;
    column-gap: 18px;
}

.qk-footer p,
.qk-footer small {
    color: #c7d2e1;
}

.qk-footer a {
    color: #d9e3f0;
    font-size: 14px;
}

.qk-footer a:hover { color: #ffffff; }

.qk-breadcrumb {
    display: inline-flex;
    gap: 8px;
    background: rgba(255,255,255,.72);
    border: 1px solid #dbeafe;
    border-radius: 999px;
    padding: 8px 13px;
}

.pagination {
    gap: 6px;
    flex-wrap: wrap;
}

.page-link {
    border-radius: 8px;
    color: var(--qk-primary);
}

.active > .page-link,
.page-link.active {
    background: var(--qk-primary);
    border-color: var(--qk-primary);
}

.qk-table-card .table {
    min-width: 760px;
}

.qk-platform-pill {
    border: 1px solid #dbeafe;
    background: #fff;
    color: #0b3b8f;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(15,23,42,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.qk-platform-pill:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(15,23,42,.14);
}

.p1:hover { background: linear-gradient(135deg, #128c7e, #25d366); }
.p2:hover { background: linear-gradient(135deg, #00a884, #16a34a); }
.p3:hover { background: linear-gradient(135deg, #229ed9, #0ea5e9); }
.p4:hover { background: linear-gradient(135deg, #0088cc, #38bdf8); }
.p5:hover { background: linear-gradient(135deg, #ef4444, #dc2626); }
.p6:hover { background: linear-gradient(135deg, #1877f2, #0b5cff); }
.p7:hover { background: linear-gradient(135deg, #e1306c, #f77737); }
.p8:hover { background: linear-gradient(135deg, #5865f2, #7c3aed); }
.p9:hover { background: linear-gradient(135deg, #0f172a, #38bdf8); }
.p10:hover { background: linear-gradient(135deg, #0a66c2, #2563eb); }

.qk-contact-hero {
    background:
        radial-gradient(circle at 12% 20%, rgba(0,168,132,.16), transparent 30%),
        radial-gradient(circle at 85% 12%, rgba(255,176,32,.18), transparent 30%),
        linear-gradient(135deg, #f7fbff, #ffffff);
}

.qk-contact-section {
    background: linear-gradient(135deg, #ffffff, #eef7ff);
}

.qk-contact-card {
    height: 100%;
    padding: 32px;
    border-radius: 14px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255,176,32,.22), transparent 34%),
        linear-gradient(160deg, #07111f, #0b3b8f);
    box-shadow: 0 20px 44px rgba(15,23,42,.18);
}

.qk-contact-card h2 {
    font-weight: 900;
    margin: 12px 0;
}

.qk-contact-card p {
    color: #dbeafe;
}

.qk-mini-label {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
}

.qk-contact-method {
    margin-top: 18px;
    padding: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
}

.qk-contact-method strong,
.qk-contact-method a,
.qk-contact-method span {
    display: block;
}

.qk-contact-method a {
    color: #ffffff;
    font-weight: 900;
    margin-top: 4px;
}

.qk-contact-form {
    max-width: none;
}

.qk-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.qk-auth-switch {
    margin-top: 22px;
    padding: 16px;
    border-radius: 12px;
    background: #eef6ff;
    border: 1px solid #dbeafe;
    color: #38506f;
    text-align: center;
    font-weight: 800;
}

.qk-auth-switch a {
    color: #0b5cff;
    font-weight: 900;
}

.qk-register-box {
    max-width: 980px;
}

.qk-otp-verify-box {
    padding: 18px;
    border-radius: 12px;
    background: #f8fbff;
    border: 1px solid #dbe3ef;
}

.qk-legal-content {
    color: #233044;
    line-height: 1.75;
}

.qk-legal-content h1,
.qk-legal-content h2,
.qk-legal-content h3 {
    color: #07111f;
    font-weight: 900;
    letter-spacing: 0;
}

.qk-legal-content h2,
.qk-legal-content h3 {
    margin-top: 28px;
}

.qk-legal-content ul {
    padding-left: 22px;
}

.qk-legal-content li {
    margin-bottom: 8px;
}

@media(max-width: 1199px) {
    .qk-color-grid { grid-template-columns: repeat(3, 1fr); }
    .qk-category-tiles { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width: 991px) {
    .navbar-collapse {
        margin-top: 14px;
        padding: 14px;
        background: #ffffff;
        border: 1px solid var(--qk-border);
        border-radius: 12px;
        box-shadow: 0 16px 36px rgba(15,23,42,0.10);
    }

    .navbar-nav { align-items: stretch; }
    .qk-hero { padding: 58px 0; }
    .qk-hero h1 { font-size: 40px; }
    .qk-category-tiles { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 576px) {
    .qk-tenant-logo {
        max-width: 176px;
        max-height: 38px;
    }

    .qk-hero h1 { font-size: 32px; }
    .qk-hero p,
    .qk-inner-hero p { font-size: 16px; }
    .qk-section { padding: 52px 0; }
    .qk-section-title h2 { font-size: 28px; }
    .qk-category-tiles,
    .qk-color-grid { grid-template-columns: 1fr; }
    .qk-hero-actions .btn,
    .qk-action-row .btn,
    .qk-action-row a {
        width: 100%;
        text-align: center;
    }
    .qk-filter-box { padding: 16px; }
    .qk-footer { text-align: center; }
    .qk-footer-top {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .qk-footer-whatsapp { width: 100%; }
    .qk-footer-links-two { column-count: 1; }
}

/* Homepage growth sections */
.qk-hero-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.qk-hero-checks span {
    background: rgba(255,255,255,.78);
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 10px 12px;
    color: #123056;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(15,23,42,.06);
}

.qk-hero-checks span::before {
    content: "✓ ";
    color: var(--qk-secondary);
    font-weight: 900;
}

.qk-hero-free {
    margin-top: 16px;
    color: #0b3b8f;
    font-weight: 900;
}

.qk-counter-band {
    background: #07111f;
    color: #fff;
    padding: 28px 0;
}

.qk-counter-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.qk-counter-grid div {
    padding: 18px;
    border-radius: 12px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.11);
    text-align: center;
}

.qk-counter-grid strong,
.qk-counter-grid span {
    display: block;
}

.qk-counter-grid strong {
    font-size: 24px;
    font-weight: 900;
}

.qk-counter-grid span {
    color: #cbd5e1;
    font-weight: 700;
}

.qk-counter-band p {
    margin: 18px 0 0;
    text-align: center;
    color: #dbeafe;
    font-weight: 900;
}

.qk-why-list {
    background:
        radial-gradient(circle at 80% 20%, rgba(11,92,255,.13), transparent 32%),
        linear-gradient(135deg, #ffffff, #f2fff9);
}

.qk-why-list h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0;
}

.qk-why-list p {
    color: #5f6f85;
    font-size: 17px;
}

.qk-mini-label.light {
    background: #eef6ff;
    border-color: #cfe0ff;
    color: #0b3b8f;
}

.qk-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.qk-audience-grid span {
    padding: 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #dbe3ef;
    box-shadow: 0 14px 30px rgba(15,23,42,.07);
    color: #0b3b8f;
    font-weight: 900;
}

.qk-benefits-section {
    background:
        linear-gradient(135deg, rgba(255,176,32,.12), rgba(11,92,255,.08)),
        #fbfdff;
}

.qk-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.qk-benefit-card {
    min-height: 190px;
    padding: 24px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #dbe3ef;
    box-shadow: 0 18px 38px rgba(15,23,42,.08);
}

.qk-benefit-card h3 {
    font-size: 20px;
    font-weight: 900;
    color: #07111f;
}

.qk-benefit-card p {
    color: #64748b;
    margin: 0;
}

.qk-listing-types {
    background:
        radial-gradient(circle at 15% 10%, rgba(0,168,132,.14), transparent 30%),
        linear-gradient(135deg, #f8fbff, #ffffff);
}

.qk-list-panel {
    height: 100%;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 44px rgba(15,23,42,.1);
}

.qk-list-panel h2 {
    font-weight: 900;
    letter-spacing: 0;
}

.qk-list-panel.dark {
    color: #fff;
    background:
        radial-gradient(circle at 95% 0%, rgba(255,176,32,.24), transparent 30%),
        linear-gradient(160deg, #07111f, #0b3b8f);
}

.qk-list-panel.dark p {
    color: #dbeafe;
}

.qk-list-panel.light {
    background: #fff;
    border: 1px solid #dbe3ef;
}

.qk-chip-list,
.qk-perfect-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.qk-chip-list span,
.qk-perfect-grid span {
    padding: 10px 13px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
}

.qk-chip-list span {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
}

.qk-perfect-grid span {
    background: #eef6ff;
    border: 1px solid #dbeafe;
    color: #0b3b8f;
}

.qk-final-cta {
    padding: 74px 0;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 18% 0%, rgba(0,168,132,.26), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(255,176,32,.22), transparent 30%),
        linear-gradient(135deg, #07111f, #0b3b8f);
}

.qk-final-cta span {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    font-weight: 900;
}

.qk-final-cta h2 {
    margin-top: 16px;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 0;
}

.qk-final-cta p {
    max-width: 760px;
    margin: 14px auto 24px;
    color: #dbeafe;
    font-size: 17px;
}

@media(max-width: 1199px) {
    .qk-benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .qk-counter-grid { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width: 991px) {
    .qk-why-list h2,
    .qk-final-cta h2 { font-size: 34px; }
}

@media(max-width: 576px) {
    .qk-hero-checks,
    .qk-audience-grid,
    .qk-benefit-grid,
    .qk-counter-grid { grid-template-columns: 1fr; }
}

/* Homepage professional refinements */
.qk-hero {
    padding: 74px 0 64px;
}

.qk-hero h1 {
    max-width: 900px;
}

.qk-hero-card.qk-hero-showcase {
    padding: 26px;
    min-height: 100%;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,176,32,.18), transparent 30%),
        linear-gradient(160deg, rgba(255,255,255,.98), rgba(240,247,255,.98));
}

.qk-showcase-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 14px;
    margin-bottom: 18px;
}

.qk-showcase-head span {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.qk-showcase-head strong {
    display: block;
    color: #07111f;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.05;
    text-align: right;
}

.qk-hero-showcase .qk-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.qk-hero-showcase .qk-platform-pill {
    min-height: 74px;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    padding: 13px;
    border-radius: 14px;
    color: #10233f;
}

.qk-hero-showcase .qk-platform-pill span {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 10px;
    background: #eef6ff;
    color: #0b5cff;
    font-weight: 900;
}

.qk-hero-showcase .qk-platform-pill strong {
    display: block;
    font-size: 14px;
    line-height: 1.15;
}

.qk-hero-showcase .qk-platform-pill:hover span {
    background: rgba(255,255,255,.18);
    color: #fff;
}

.qk-showcase-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.qk-showcase-metrics div {
    padding: 14px 10px;
    border-radius: 12px;
    background: #07111f;
    color: #fff;
    text-align: center;
}

.qk-showcase-metrics strong,
.qk-showcase-metrics span {
    display: block;
}

.qk-showcase-metrics strong {
    font-size: 20px;
    font-weight: 900;
}

.qk-showcase-metrics span {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 800;
}

.qk-showcase-note {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: rgba(255,255,255,.78);
    color: #38506f;
    font-weight: 700;
    line-height: 1.45;
}

.qk-benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.qk-benefit-card {
    position: relative;
    overflow: hidden;
    min-height: 205px;
}

.qk-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #0b5cff, #00a884);
}

.qk-benefit-card::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(11,92,255,.08);
}

.qk-benefit-card h3,
.qk-benefit-card p {
    position: relative;
    z-index: 1;
}

@media(max-width: 1199px) {
    .qk-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width: 991px) {
    .qk-showcase-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .qk-showcase-head strong {
        text-align: left;
    }
}

@media(max-width: 576px) {
    .qk-hero-showcase .qk-platform-grid,
    .qk-showcase-metrics,
    .qk-benefit-grid {
        grid-template-columns: 1fr;
    }
}
