/* ============================================================
   Centrik Brand Layer  —  modern light theme overlay
   Loaded after style.css; overrides the legacy theme to match
   the Centrik brand (gradient swirl, purple/pink/orange/blue).
   ============================================================ */

:root {
    --ctk-violet: #7C3AED;
    --ctk-violet-d: #5B21B6;
    --ctk-indigo: #4F46E5;
    --ctk-blue: #2563EB;
    --ctk-pink: #EC4899;
    --ctk-pink-d: #BE185D;
    --ctk-amber: #F59E0B;
    --ctk-orange: #F97316;

    --ctk-ink: #1A1633;          /* headings / dark navy */
    --ctk-body: #5A5775;         /* body text */
    --ctk-muted: #8A87A3;
    --ctk-line: #ECEAF3;
    --ctk-bg: #FFFFFF;
    --ctk-bg-soft: #F7F6FB;      /* soft section bg */
    --ctk-bg-tint: #F3F0FC;

    --ctk-grad: linear-gradient(95deg, #7C3AED 0%, #A21CAF 38%, #EC4899 66%, #F97316 100%);
    --ctk-grad-cta: linear-gradient(95deg, #7C3AED 0%, #EC4899 60%, #F97316 100%);
    --ctk-grad-soft: linear-gradient(135deg, #F5F1FE 0%, #FCEEF6 55%, #FEF3EA 100%);

    --ctk-shadow-sm: 0 4px 14px rgba(26,22,51,.06);
    --ctk-shadow: 0 18px 44px rgba(70,40,130,.12);
    --ctk-shadow-lg: 0 30px 70px rgba(70,40,130,.16);
    --ctk-radius: 18px;
}

/* ---------- Typography ---------- */
body {
    font-family: 'Inter', 'Roboto', sans-serif !important;
    color: var(--ctk-body);
    -webkit-font-smoothing: antialiased;
    background: var(--ctk-bg);
}
h1, h2, h3, h4, h5, h6,
.section-header h2, .lab-content h2, .banner-section h2, .banner-section h3 {
    font-family: 'Poppins', 'Roboto', sans-serif !important;
    color: var(--ctk-ink);
    letter-spacing: -0.01em;
}
p { color: var(--ctk-body); }
a { transition: all .25s ease; }

/* ---------- Buttons ---------- */
.lab-btn {
    background: var(--ctk-grad-cta) !important;
    border-radius: 999px !important;
    padding: 15px 30px !important;
    box-shadow: 0 12px 26px rgba(124,58,237,.28);
    border: none;
}
.lab-btn::after { background: var(--ctk-violet) !important; border-radius: 999px; }
.lab-btn span { font-family: 'Poppins', sans-serif; font-weight: 600 !important; letter-spacing: .2px; }
.lab-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(236,72,153,.32); }
.ctk-btn-ghost {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1.5px solid var(--ctk-line);
    background: #fff;
    color: var(--ctk-ink) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.ctk-btn-ghost:hover { border-color: var(--ctk-violet); color: var(--ctk-violet) !important; transform: translateY(-2px); }

/* ---------- Header (solid, sticky, light) ---------- */
.header-section.transparent-header,
.header-section {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    overflow: visible !important;
    background: #161031 !important;
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 45px rgba(20,12,45,.18);
}
.header-section .primary-menu { padding: 10px 0; overflow: visible !important; }
.header-section .header-area, .header-section .main-area, .header-section .main-menu { overflow: visible !important; }
.header-section .logo img { max-height: 46px; width: auto; }
.ctk-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.ctk-brand img { height: 46px; width: auto; }
.ctk-brand .ctk-word {
    font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 25px;
    color: #fff; letter-spacing: -.5px; line-height: 1;
}
.header-section .main-menu ul li a {
    color: rgba(255,255,255,.82) !important;
    font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15.5px;
    padding: 10px 15px; position: relative;
}
.header-section .main-menu ul li a:hover { color: #fff !important; }
.header-section .main-menu ul li a::after {
    content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
    background: var(--ctk-grad); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; border-radius: 2px;
}
.header-section .main-menu ul li a:hover::after { transform: scaleX(1); }
.mobile-menu .mobile-header { background: #161031 !important; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu .mobile-header .header-bar span { background: #fff !important; }
.mobile-menu .mobile-menu-area-inner ul li a { color: var(--ctk-ink) !important; font-weight: 500; }
/* push content below fixed header */
body.ctk main, .ctk-page-top { padding-top: 0; }

/* ---------- Section headers ---------- */
.section-header h2, .section-header.style-2 h2 { color: var(--ctk-ink) !important; font-weight: 700; font-size: 38px; }
.section-header p { color: var(--ctk-body) !important; font-size: 17px; }
.ctk-eyebrow {
    display: inline-block; font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 13px;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px;
    background: var(--ctk-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============================================================
   HERO  (homepage + module pages)
   ============================================================ */
.banner-section, .banner-section.style-3 {
    background: var(--ctk-grad-soft) !important;
    position: relative; overflow: hidden;
}
.banner-section .banner-area { padding-top: 72px; padding-bottom: 90px; }
.banner-section .content-part .section-header h2,
.banner-section .content-part .section-header h3 {
    color: var(--ctk-ink) !important; font-size: 52px !important; line-height: 1.08; font-weight: 700;
}
.banner-section .content-part .section-header span { color: var(--ctk-violet) !important; font-weight: 600; }
.banner-section .content-part .section-header p { color: var(--ctk-body) !important; }
.ctk-grad-text { background: var(--ctk-grad); -webkit-background-clip: text; background-clip: text; color: transparent !important; }

/* decorative blobs */
.ctk-blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; z-index: 0; }
.ctk-blob.b1 { width: 320px; height: 320px; background: radial-gradient(circle,#d8c6ff,transparent 70%); top: -60px; right: -40px; }
.ctk-blob.b2 { width: 280px; height: 280px; background: radial-gradient(circle,#ffd6ec,transparent 70%); bottom: -70px; left: -50px; }

/* ============================================================
   MODULE GRID  (homepage)
   ============================================================ */
.ctk-section { padding: 84px 0; }
.ctk-section.soft { background: var(--ctk-bg-soft); }
.ctk-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.ctk-head h2 { font-size: 40px; font-weight: 700; margin-bottom: 14px; }
.ctk-head p { font-size: 17.5px; }

.ctk-modules {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ctk-module-card {
    display: block; background: #fff; border: 1px solid var(--ctk-line);
    border-radius: var(--ctk-radius); padding: 30px 28px; text-decoration: none;
    box-shadow: var(--ctk-shadow-sm); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    position: relative; overflow: hidden;
}
.ctk-module-card::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--ctk-grad);
    transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.ctk-module-card:hover { transform: translateY(-6px); box-shadow: var(--ctk-shadow); border-color: transparent; }
.ctk-module-card:hover::before { transform: scaleX(1); }
.ctk-module-card .ctk-ico { width: 60px; height: 60px; margin-bottom: 18px; }
.ctk-module-card h4 { font-family: 'Poppins',sans-serif; font-weight: 600; font-size: 21px; color: var(--ctk-ink); margin-bottom: 8px; }
.ctk-module-card p { font-size: 15px; color: var(--ctk-body); margin: 0; line-height: 1.6; }
.ctk-module-card .ctk-more { display: inline-block; margin-top: 16px; font-family:'Poppins',sans-serif; font-weight: 600; font-size: 14px; color: var(--ctk-violet); }
.ctk-module-card .ctk-more svg { vertical-align: -2px; margin-left: 4px; transition: transform .25s ease; }
.ctk-module-card:hover .ctk-more svg { transform: translateX(4px); }

/* ============================================================
   FEATURE STRIP  (trust row)
   ============================================================ */
.ctk-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.ctk-feature { text-align: left; padding: 8px 6px; }
.ctk-feature .fic {
    width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
    margin-bottom: 16px; background: var(--ctk-grad); box-shadow: 0 10px 22px rgba(124,58,237,.22);
}
.ctk-feature .fic svg { width: 26px; height: 26px; }
.ctk-feature h5 { font-family:'Poppins',sans-serif; font-weight: 600; font-size: 19px; color: var(--ctk-ink); margin-bottom: 7px; }
.ctk-feature p { font-size: 15px; margin: 0; }

/* ---------- Stats band ---------- */
.ctk-stats { background: var(--ctk-grad); border-radius: 24px; padding: 44px 30px; box-shadow: var(--ctk-shadow); }
.ctk-stats .row > div { text-align: center; color: #fff; }
.ctk-stats .num { font-family:'Poppins',sans-serif; font-weight: 700; font-size: 40px; line-height: 1; }
.ctk-stats .lbl { font-size: 15px; opacity: .92; margin-top: 8px; }

/* ============================================================
   ERP-MANAGER alternating feature sections (existing markup)
   ============================================================ */
.erp-manager { background: #fff; }
.erp-manager.bgc-1, .erp-manager.bgc-2 { background: var(--ctk-bg-soft) !important; }
.erp-manager .lab-content h2 { font-size: 34px; font-weight: 700; }
.erp-manager .lab-thumb img { border-radius: 16px; }
.erp-manager .lab-content ul li .accordion-list .left span {
    width: 46px; height: 46px; border-radius: 12px; display: grid !important; place-items: center;
    background: var(--ctk-grad);
}
.erp-manager .lab-content ul li .accordion-list .left span img { filter: brightness(0) invert(1); width: 22px; height: 22px; }
.erp-manager .lab-content ul li .accordion-list .right h6 { color: var(--ctk-ink); font-family:'Poppins',sans-serif; font-weight: 600; }
.abs-lab-thumb { background: var(--ctk-grad) !important; }

/* ---------- About / module cards (legacy erp-about) ---------- */
.about-section.erp-about .lab-item .lab-inner {
    border-radius: var(--ctk-radius); box-shadow: var(--ctk-shadow-sm); border: 1px solid var(--ctk-line);
    transition: transform .28s ease, box-shadow .28s ease;
}
.about-section.erp-about .lab-item .lab-inner:hover { transform: translateY(-6px); box-shadow: var(--ctk-shadow); }
.about-section.erp-about .lab-content h4 { color: var(--ctk-ink); font-family:'Poppins',sans-serif; font-weight: 600; }

/* ============================================================
   CTA + FOOTER
   ============================================================ */
.app-footer { background: #14102B !important; padding-top: 0; }
.app-footer .footer-top { background: transparent !important; padding: 30px 0 56px; }
.app-footer .footer-content .title h6 { color: #fff; font-family:'Poppins',sans-serif; font-weight: 600; letter-spacing:.3px; margin-bottom: 18px; }
.app-footer .footer-content p, .app-footer .footer-content a, .app-footer .footer-content li a { color: rgba(255,255,255,.62) !important; font-size: 14.5px; line-height: 1.7; }
.app-footer .footer-content ul { list-style: none; padding: 0; margin: 0; }
.app-footer .footer-content ul li { margin-bottom: 9px; }
.app-footer .footer-content a:hover { color: #fff !important; }
.app-footer .footer-content .content p span { color: rgba(255,255,255,.92); font-weight: 600; }
.app-footer .footer-bottom { background: rgba(0,0,0,.28) !important; padding: 18px 0; }
.app-footer .footer-bottom p, .app-footer .footer-bottom a { color: rgba(255,255,255,.6) !important; margin: 0; text-align: center; }
.app-footer .footer-bottom a:hover { color:#fff !important; }
.footer-brand { display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.footer-brand img { height: 54px; }
.footer-brand-col p { max-width: 340px; }

/* footer closing CTA (consistent on every page) */
.app-footer { padding-top: 58px; margin-top: 0; clear: both; }
.ctk-foot-cta { transform: none; padding-top: 58px; margin-bottom: 46px; }
.ctk-foot-cta-inner {
    background: var(--ctk-grad); background-size: 160% auto; border-radius: 24px; padding: 38px 44px;
    box-shadow: var(--ctk-shadow-lg); display: flex; align-items: center; justify-content: space-between;
    gap: 28px; flex-wrap: wrap;
}
.ctk-foot-cta-inner h2 { color:#fff !important; font-family:'Poppins',sans-serif; font-weight:700; font-size:30px; margin:0 0 6px; }
.ctk-foot-cta-inner p { color: rgba(255,255,255,.9) !important; font-size:16px; margin:0; }
.ctk-foot-cta-btns { display:flex; align-items:center; gap:14px; }
.ctk-foot-cta .lab-btn { background:#fff !important; box-shadow:0 12px 26px rgba(0,0,0,.18); }
.ctk-foot-cta .lab-btn span { color: var(--ctk-violet) !important; }
.ctk-foot-cta .lab-btn::after { background:#fff !important; }
.ctk-foot-demo { display:inline-flex; align-items:center; padding:14px 26px; border-radius:999px; border:1.5px solid rgba(255,255,255,.6); color:#fff !important; font-family:'Poppins',sans-serif; font-weight:600; font-size:15px; }
.ctk-foot-demo:hover { background:rgba(255,255,255,.12); color:#fff !important; }

/* footer social */
.ctk-foot-social { display:flex; gap:10px; margin-top:20px; }
.ctk-foot-social a { width:40px; height:40px; border-radius:11px; display:grid; place-items:center; background:rgba(255,255,255,.07); color:rgba(255,255,255,.8) !important; font-size:17px; transition:all .25s ease; }
.ctk-foot-social a:hover { background:var(--ctk-grad); color:#fff !important; transform:translateY(-3px); }

@media (max-width: 767px){
    .ctk-foot-cta-inner { padding: 28px 24px; text-align:center; justify-content:center; }
    .ctk-foot-cta-inner h2 { font-size:24px; }
    .footer-brand-col { margin-bottom: 30px; }
}

/* ---------- CTA band (reusable) ---------- */
.ctk-cta { background: var(--ctk-grad); border-radius: 26px; padding: 56px 48px; text-align: center; box-shadow: var(--ctk-shadow-lg); }
.ctk-cta h2 { color: #fff !important; font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.ctk-cta p { color: rgba(255,255,255,.9) !important; font-size: 18px; margin-bottom: 26px; }
.ctk-cta .lab-btn { background: #fff !important; box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.ctk-cta .lab-btn span { color: var(--ctk-violet) !important; }
.ctk-cta .lab-btn::after { background: #fff !important; }

/* scroll-to-top */
.scrollToTop i { background: var(--ctk-grad) !important; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .ctk-modules, .ctk-features { grid-template-columns: 1fr 1fr; }
    .banner-section .content-part .section-header h2,
    .banner-section .content-part .section-header h3 { font-size: 40px !important; }
    .header-section .logo img, .ctk-brand img { height: 34px; }
}
@media (max-width: 600px) {
    .ctk-modules, .ctk-features { grid-template-columns: 1fr; }
    .ctk-head h2, .section-header h2 { font-size: 30px; }
    .ctk-cta { padding: 40px 24px; }
    .banner-section .content-part .section-header h2,
    .banner-section .content-part .section-header h3 { font-size: 34px !important; }
}

/* ============================================================
   HERO (homepage) — custom layout + dashboard mockup
   ============================================================ */
.ctk-hero { position: relative; background: var(--ctk-grad-soft); overflow: hidden; }
.ctk-hero .container { position: relative; z-index: 2; padding-top: 66px; padding-bottom: 90px; }
.ctk-hero .badge-pill {
    display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--ctk-line);
    border-radius: 999px; padding: 7px 16px; font-family:'Poppins',sans-serif; font-weight: 600; font-size: 13px;
    color: var(--ctk-ink); box-shadow: var(--ctk-shadow-sm); margin-bottom: 22px;
}
.ctk-hero .badge-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ctk-grad); }
.ctk-hero h1 { font-family:'Poppins',sans-serif; font-weight: 700; font-size: 56px; line-height: 1.06; color: var(--ctk-ink); margin-bottom: 20px; }
.ctk-hero .lead { font-size: 19px; color: var(--ctk-body); max-width: 520px; margin-bottom: 30px; }
.ctk-hero .btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.ctk-hero .mini-trust { margin-top: 30px; color: var(--ctk-muted); font-size: 14px; }
.ctk-hero .mini-trust strong { color: var(--ctk-ink); }

/* dashboard mockup card */
.ctk-mock { position: relative; background: #fff; border: 1px solid var(--ctk-line); border-radius: 22px; box-shadow: var(--ctk-shadow-lg); padding: 18px; }
.ctk-mock .mock-bar { display: flex; gap: 6px; padding: 4px 6px 14px; }
.ctk-mock .mock-bar span { width: 11px; height: 11px; border-radius: 50%; background: #E3E0EE; }
.ctk-mock .mock-bar span:nth-child(1){ background:#FF7A7A;} .ctk-mock .mock-bar span:nth-child(2){ background:#FFC24B;} .ctk-mock .mock-bar span:nth-child(3){ background:#4BD18B;}
.ctk-mock .tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ctk-tile { border: 1px solid var(--ctk-line); border-radius: 14px; padding: 14px 16px; background: #fff; }
.ctk-tile .t-ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; margin-bottom: 10px; }
.ctk-tile .t-lbl { font-size: 12px; color: var(--ctk-muted); }
.ctk-tile .t-val { font-family:'Poppins',sans-serif; font-weight: 700; font-size: 18px; color: var(--ctk-ink); }
.ctk-tile .t-val small { font-size: 11px; font-weight: 600; color: #16a34a; margin-left: 6px; }
.ctk-mock .mock-chart { margin-top: 12px; border: 1px solid var(--ctk-line); border-radius: 14px; padding: 14px 16px; }
.ctk-mock .mock-chart .mc-top { display: flex; justify-content: space-between; font-size: 12px; color: var(--ctk-muted); margin-bottom: 12px; }
.ctk-mock .mock-chart .bars { display: flex; align-items: flex-end; gap: 9px; height: 78px; }
.ctk-mock .mock-chart .bars i { flex: 1; border-radius: 5px 5px 0 0; background: var(--ctk-grad); opacity: .85; display: block; }
.ctk-hub-icon { position: absolute; border-radius: 14px; box-shadow: var(--ctk-shadow); width: 56px; height: 56px; z-index: 3; }
.ctk-hub-icon.h1 { top: -22px; right: 34px; }
.ctk-hub-icon.h2 { bottom: -20px; left: -22px; }

/* trust / stats */
.ctk-trust-strip { display: flex; justify-content: center; gap: 46px; flex-wrap: wrap; color: var(--ctk-muted); font-weight: 600; font-family:'Poppins',sans-serif; }

@media (max-width: 991px) {
    .ctk-hero h1 { font-size: 42px; }
    .ctk-mock { margin-top: 44px; }
}
@media (max-width: 600px) {
    .ctk-hero h1 { font-size: 33px; }
    .ctk-mock .tiles { grid-template-columns: 1fr; }
}

/* ---------- Module page feature checklist ---------- */
.ctk-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ctk-check { display: flex; gap: 15px; align-items: flex-start; background: #fff; border: 1px solid var(--ctk-line); border-radius: 16px; padding: 22px 22px; box-shadow: var(--ctk-shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.ctk-check:hover { transform: translateY(-4px); box-shadow: var(--ctk-shadow); }
.ctk-check .ck { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--ctk-grad); }
.ctk-check .ck svg { width: 20px; height: 20px; }
.ctk-check h5 { font-family:'Poppins',sans-serif; font-weight: 600; font-size: 17px; color: var(--ctk-ink); margin: 2px 0 6px; }
.ctk-check p { font-size: 14.5px; margin: 0; line-height: 1.55; }
@media (max-width: 700px){ .ctk-checks { grid-template-columns: 1fr; } }

/* ============================================================
   HERO SAFETY — readability across ALL legacy banner variants
   (style-2/3/4/5/6, shopapp, marketing, pos, vpn, erp)
   ============================================================ */
.banner-section,
.banner-section.style-2, .banner-section.style-4, .banner-section.style-5,
.banner-section.style-6, .banner-section.seo-banner {
    background: var(--ctk-grad-soft) !important;
}
.banner-section .banner-area .content-part .section-header h1,
.banner-section .banner-area .content-part .section-header h2,
.banner-section .banner-area .content-part .section-header h3,
.banner-section .content-part .section-header h2,
.banner-section .content-part .section-header h3 {
    color: var(--ctk-ink) !important;
}
.banner-section .content-part .section-header p { color: var(--ctk-body) !important; }
.banner-section .content-part .section-header span { color: var(--ctk-violet) !important; }
/* keep hero illustration tidy on light bg */
.banner-section .banner-thumb > img { border-radius: 14px; }

/* remove leftover decorative stock "shape" graphics for a clean look */
.banner-thumb .thumb-shape,
.banner-section .pos-banner-shape,
.banner-section .round-shape,
.erp-manager .shape-1, .erp-manager .shape-2 { display: none !important; }

/* illustrations scale cleanly inside legacy containers */
.banner-thumb img, .lab-thumb > img, .about-thumb img, .pos-thmub img { max-width: 100%; height: auto; }
.erp-manager .lab-thumb img { box-shadow: var(--ctk-shadow); }

/* ============================================================
   MOTION LAYER — keyframes used across the site
   ============================================================ */
@keyframes ctkFloat   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes ctkFloatSm { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes ctkGradient{ 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes ctkPulse   { 0% { box-shadow: 0 0 0 0 rgba(124,58,237,.45); } 70% { box-shadow: 0 0 0 14px rgba(124,58,237,0); } 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); } }
@keyframes ctkFadeUp  { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ctkSpinSlow{ to { transform: rotate(360deg); } }

.ctk-reveal { animation: ctkFadeUp .7s cubic-bezier(.22,.61,.36,1) both; }
.ctk-grad-text { background-size: 200% auto; animation: ctkGradient 6s linear infinite alternate; }

/* ============================================================
   NAV — logo lockup, links, Book a demo, mega-menu
   ============================================================ */
.ctk-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.ctk-brand .ctk-brand-text { display: flex; flex-direction: column; line-height: 1; }
.ctk-brand .ctk-word { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 24px; color: #fff; letter-spacing: -.5px; }
.ctk-brand .ctk-tag { font-family: 'Inter', sans-serif; font-size: 10.5px; letter-spacing: .3px; color: rgba(255,255,255,.55); margin-top: 3px; }
.ctk-brand img { height: 48px; width: auto; transition: transform .4s ease; }
.ctk-brand:hover img { transform: translateY(-1px); }

.header-section .main-area { display: flex; align-items: center; gap: 22px; }
.header-section .main-menu ul { display: flex; align-items: center; gap: 2px; margin: 0; }
.header-section .main-menu ul li { position: static; }
.header-section .main-menu ul li a { display: inline-flex; align-items: center; gap: 6px; }
.ctk-chev { width: 14px; height: 14px; transition: transform .3s ease; }
.ctk-has-mega:hover .ctk-chev { transform: rotate(180deg); }

.ctk-demo {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px;
    background: var(--ctk-grad-cta); background-size: 160% auto; color: #fff !important;
    font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; white-space: nowrap;
    box-shadow: 0 12px 24px rgba(124,58,237,.28); transition: all .3s ease;
}
.ctk-demo:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(236,72,153,.34); color:#fff !important; }
.ctk-demo svg { transition: transform .3s ease; }
.ctk-demo:hover svg { transform: translateX(4px); }
.ctk-signin { color: #fff !important; font-weight: 600 !important; }

/* mega-menu panel */
.primary-menu { position: relative; }
.ctk-mega {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
    width: min(760px, 94vw); background: #161031; border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px; padding: 20px; box-shadow: 0 40px 90px rgba(20,12,45,.45);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s ease .14s, transform .25s ease .14s, visibility 0s linear .39s; z-index: 60;
}
.ctk-mega::before { content:""; position:absolute; top:-9px; left:50%; transform:translateX(-50%) rotate(45deg); width:18px; height:18px; background:#161031; border-left:1px solid rgba(255,255,255,.08); border-top:1px solid rgba(255,255,255,.08); border-radius:4px 0 0 0; z-index:1; }
/* invisible bridge across the gap so hover survives the trip to the panel */
.ctk-mega::after { content:""; position:absolute; left:0; right:0; top:-20px; height:22px; background:transparent; }
/* keep the whole trigger li hoverable down to the panel */
.ctk-has-mega { padding-bottom: 4px; }
.ctk-has-mega:hover .ctk-mega, .ctk-has-mega:focus-within .ctk-mega {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
    transition: opacity .25s ease, transform .25s ease, visibility 0s;
}
.ctk-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ctk-mega-item { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 14px; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.ctk-mega-item:hover { background: rgba(255,255,255,.06); transform: translateX(3px); }
.ctk-mega-item .mi-ico { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; }
.ctk-mega-item .mi-ico img { width: 44px; height: 44px; }
.ctk-mega-item h6 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; color: #fff; margin: 0 0 2px; }
.ctk-mega-item p { font-size: 12.5px; color: rgba(255,255,255,.55); margin: 0; }
.ctk-mega-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.ctk-mega-foot span { font-size: 13px; color: rgba(255,255,255,.6); }
.ctk-mega-foot a { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13.5px; color: #fff !important; background: var(--ctk-grad-cta); padding: 9px 18px; border-radius: 999px; }

/* ============================================================
   HERO — grid bg + floating cards
   ============================================================ */
.ctk-hero::after {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: linear-gradient(rgba(124,58,237,.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(124,58,237,.06) 1px, transparent 1px);
    background-size: 42px 42px;
    -webkit-mask-image: radial-gradient(circle at 60% 35%, #000 0%, transparent 72%);
            mask-image: radial-gradient(circle at 60% 35%, #000 0%, transparent 72%);
}
.ctk-hero .mock-wrap { position: relative; }
.ctk-mock { animation: ctkFloat 7s ease-in-out infinite; }
.ctk-float-card {
    position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px;
    background: #fff; border: 1px solid var(--ctk-line); border-radius: 14px; padding: 11px 15px;
    box-shadow: var(--ctk-shadow);
}
.ctk-float-card .fc-ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; }
.ctk-float-card .fc-ico img { width: 38px; height: 38px; }
.ctk-float-card .fc-lbl { font-size: 11px; color: var(--ctk-muted); }
.ctk-float-card .fc-val { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; color: var(--ctk-ink); }
.ctk-float-card.f1 { top: 6%; left: -26px; animation: ctkFloatSm 5.5s ease-in-out infinite; }
.ctk-float-card.f2 { bottom: 8%; right: -18px; animation: ctkFloatSm 6.5s ease-in-out infinite .6s; }
.ctk-float-card .dotpulse { width: 10px; height: 10px; border-radius: 50%; background: #16a34a; }

/* ============================================================
   SHOWCASE — alternating illustration + content sections
   ============================================================ */
.ctk-showcase { padding: 70px 0; }
.ctk-showcase.soft { background: var(--ctk-bg-soft); }
.ctk-showcase .sc-illus { width: 100%; height: auto; }
.ctk-showcase .sc-tag {
    display: inline-flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-weight: 600;
    font-size: 12.5px; letter-spacing: .6px; text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
    background: var(--ctk-bg-tint); color: var(--ctk-violet); margin-bottom: 18px;
}
.ctk-showcase h2 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 33px; color: var(--ctk-ink); margin-bottom: 14px; line-height: 1.15; }
.ctk-showcase > .container p.sc-lead { font-size: 16.5px; color: var(--ctk-body); margin-bottom: 22px; }
.ctk-bullets { list-style: none; padding: 0; margin: 0 0 26px; }
.ctk-bullets li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 13px; font-size: 15.5px; color: var(--ctk-ink); }
.ctk-bullets li .bk { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: var(--ctk-grad); margin-top: 1px; }
.ctk-bullets li .bk svg { width: 13px; height: 13px; }

/* mobile menu polish (reuse) */
.mobile-menu .ctk-brand .ctk-word { font-size: 21px; }
.mobile-menu .ctk-tag { display: none; }

@media (max-width: 991px) {
    .ctk-mega { display: none !important; }
    .ctk-demo { display: none; }
    .ctk-float-card { display: none; }
    .ctk-showcase h2 { font-size: 27px; }
}

/* ============================================================
   CENTRIK PRODUCT VISUALS — consistent image treatment
   ============================================================ */
.banner-thumb .ctk-product-visual,
.lab-thumb .ctk-product-visual,
.pos-thmub .ctk-product-visual,
.about-thumb .ctk-product-visual,
.ctk-showcase .ctk-product-visual {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    object-fit: cover;
    border-radius: 28px;
    border: 1px solid rgba(124,58,237,.14);
    box-shadow: 0 30px 70px rgba(42,28,91,.16);
    background: #fff;
}

.banner-thumb .ctk-product-visual {
    margin: 0 auto;
}

.lab-thumb,
.pos-thmub,
.about-thumb {
    position: relative;
}

.lab-thumb:has(.ctk-product-visual)::before,
.pos-thmub:has(.ctk-product-visual)::before,
.about-thumb:has(.ctk-product-visual)::before {
    content: "";
    position: absolute;
    inset: 8% -2% -4% 10%;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(124,58,237,.13), rgba(236,72,153,.09), rgba(245,158,11,.10));
    z-index: -1;
}

.ctk-showcase .ctk-product-visual {
    max-width: 560px;
    margin-inline: auto;
}

.about-section.erp-about .lab-thumb img,
.service-section .lab-thumb img {
    border-radius: 18px;
}

@media (max-width: 991px) {
    .header-section .logo img,
    .ctk-brand img {
        height: 40px;
        max-width: 164px;
    }

    .banner-thumb .ctk-product-visual,
    .lab-thumb .ctk-product-visual,
    .pos-thmub .ctk-product-visual,
    .about-thumb .ctk-product-visual {
        margin-top: 28px;
    }
}
