/* =========================================================
   GLOBAL CSS VARIABLES & RESET
   ========================================================= */
:root {
    --primary-blue: #2563eb;
    --primary-blue-hover: #1d4ed8;
    --primary-blue-soft: #eff6ff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-body: #ffffff;
    --bg-card: #ffffff;
    --border-light: #e2e8f0;
    --font-main: "Plus Jakarta Sans", sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .05);
    --shadow-md: 0 8px 25px rgba(15, 23, 42, .08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, .15);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

/* =========================================================
   SECTION 1: HERO SECTION (tk-sec-hero_)
   ========================================================= */
.tk-sec-hero_wrap {
    background-color: var(--bg-body);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tk-sec-hero_container {
    max-width: 1280px;
    width: 100%;
    background: rgba(185, 203, 248, 0.35);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 50px;
    gap: 40px;
}

.tk-sec-hero_left {
    flex: 1.1;
    min-width: 0;
}

.tk-sec-hero_title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin: 0 0 30px 0;
}

.tk-sec-hero_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    color: var(--primary-blue);
    border: 2px solid #93c5fd;
    padding: 2px 16px;
    min-width: 145px;
    height: 48px;
    border-radius: 40px;
    background-color: var(--primary-blue-soft);
    transform: rotate(-1.5deg);
    margin: 0 4px;
    overflow: hidden;
}

.tk-sec-hero_rotator {
    display: inline-block;
    white-space: nowrap;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.45s ease, opacity 0.35s ease;
}

.tk-sec-hero_rotator.flip-out {
    transform: translateY(-100%);
    opacity: 0;
}

.tk-sec-hero_benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.tk-sec-hero_benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.tk-sec-hero_benefits li i {
    color: var(--primary-blue);
    font-size: 16px;
    background: var(--primary-blue-soft);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tk-sec-hero_cta_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tk-sec-hero_btn_wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.tk-sec-hero_btn_wa:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
}

.tk-sec-hero_btn_call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background-color: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    padding: 13px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tk-sec-hero_btn_call:hover {
    color: var(--primary-blue);
    border-color: #93c5fd;
    transform: translateY(-2px);
}

.tk-sec-hero_right {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tk-sec-hero_illustration {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: tkHeroFloat 4s ease-in-out infinite;
}

@keyframes tkHeroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
    .tk-sec-hero_container {
        flex-direction: column;
        padding: 35px 20px;
        text-align: center;
    }
    .tk-sec-hero_benefits li { justify-content: center; }
    .tk-sec-hero_cta_wrap { justify-content: center; }
    .tk-sec-hero_btn_wa, .tk-sec-hero_btn_call { width: 100%; }
}

/* =========================================================
   SECTION 2: INTRO CARD (tk-sec-intro_)
   ========================================================= */
.tk-sec-intro_wrap {
    width: 100%;
    padding: 2.5rem 0.75rem;
    display: flex;
    justify-content: center;
}

.tk-sec-intro_card {
    max-width: 1280px;
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.tk-sec-intro_media { width: 100%; flex: 1; }

.tk-sec-intro_img_box {
    position: relative;
    width: 100%;
    min-height: 260px;
    max-height: 460px;
    background-color: #f1f5f9;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.tk-sec-intro_img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}

.tk-sec-intro_tag {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.tk-sec-intro_dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
}

.tk-sec-intro_content {
    width: 100%;
    flex: 1.15;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tk-sec-intro_pill {
    display: inline-flex;
    padding: 5px 12px;
    background-color: var(--primary-blue-soft);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.tk-sec-intro_h1 {
    font-size: clamp(1.5rem, 5vw, 2.45rem);
    line-height: 1.25;
    font-weight: 800;
    margin: 0 0 1rem 0;
}

.tk-sec-intro_accent { color: var(--primary-blue); }

.tk-sec-intro_p {
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 0.9rem 0;
}

.tk-sec-intro_btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
    width: 100%;
}

.tk-sec-intro_btn_primary, .tk-sec-intro_btn_outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    width: 100%;
}

.tk-sec-intro_btn_primary {
    background-color: var(--primary-blue);
    color: #ffffff;
}

.tk-sec-intro_btn_primary:hover { background-color: var(--primary-blue-hover); }

.tk-sec-intro_btn_outline {
    background-color: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

@media (min-width: 992px) {
    .tk-sec-intro_card {
        flex-direction: row;
        padding: 3.5rem 3rem;
        gap: 3.5rem;
    }
    .tk-sec-intro_content {
        align-items: flex-start;
        text-align: left;
    }
    .tk-sec-intro_btns {
        flex-direction: row;
        width: auto;
    }
    .tk-sec-intro_btn_primary, .tk-sec-intro_btn_outline { width: auto; }
    .tk-sec-intro_tag { left: 20px; bottom: 20px; transform: none; }
}























/* =========================================================
   SECTION 3: PAIN POINTS (tk-sec-pain_)
   ========================================================= */
.tk-sec-pain_wrap {
    width: 100%;
    background-color: #0f172a;
    padding: 3.5rem 0.75rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.tk-sec-pain_container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.tk-sec-pain_left {
    width: 100%;
    flex: 1.25;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tk-sec-pain_badge {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #38bdf8;
    margin-bottom: 0.75rem;
}

.tk-sec-pain_title {
    font-size: clamp(1.5rem, 5vw, 2.45rem);
    line-height: 1.25;
    font-weight: 800;
    color: #f8fafc;
    margin: 0 0 1rem 0;
}

.tk-sec-pain_accent { color: #60a5fa; }
.tk-sec-pain_lead { font-size: 0.94rem; line-height: 1.65; color: #94a3b8; margin: 0 0 1.75rem 0; }

/* Mobile Slider Container Wrapper */
.tk-sec-pain_grid_wrapper {
    width: 100%;
    margin-bottom: 1.75rem;
}

/* Mobile: Horizontal Carousel with Scroll Snap & Peek */
.tk-sec-pain_grid {
    display: flex;
    gap: 1rem;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 1rem 1rem 1rem;
    margin: 0 -0.75rem;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.tk-sec-pain_grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

/* Card Styling for Mobile: 82% width so next card peeks from right */
.tk-sec-pain_card {
    flex: 0 0 82%;
    scroll-snap-align: center;
    background-color: #1e293b;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    padding: 1.35rem 1.15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.tk-sec-pain_card:hover {
    background-color: #24344d;
    border-color: rgba(96, 165, 250, 0.4);
    transform: translateY(-3px);
}

.tk-sec-pain_icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(56, 189, 248, 0.15));
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(56, 189, 248, 0.25);
    flex-shrink: 0;
}

.tk-sec-pain_card_info h3 { font-size: 1.05rem; font-weight: 700; color: #f1f5f9; margin: 0 0 0.35rem 0; }
.tk-sec-pain_card_info p { font-size: 0.86rem; line-height: 1.55; color: #94a3b8; margin: 0; }

/* Mobile Dots Indicator */
.tk-sec-pain_indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 0.5rem;
}
.tk-indicator {
    width: 8px;
    height: 6px;
    border-radius: 4px;
    background: rgba(148, 163, 184, 0.3);
    transition: all 0.3s ease;
}
.tk-indicator.active {
    width: 22px;
    background: #38bdf8;
}

.tk-sec-pain_note { font-size: 0.92rem; line-height: 1.6; color: #cbd5e1; margin: 0 0 1.5rem 0; }
.tk-sec-pain_note_highlight { color: #38bdf8; font-weight: 700; }

.tk-sec-pain_btn_group { display: flex; flex-direction: column; gap: 0.85rem; width: 100%; }
.tk-sec-pain_btn_p, .tk-sec-pain_btn_g {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    width: 100%;
}
.tk-sec-pain_btn_p { background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #ffffff; }
.tk-sec-pain_btn_g { background: rgba(30, 41, 59, 0.6); color: #e2e8f0; border: 1px solid rgba(148, 163, 184, 0.2); }

.tk-sec-pain_right { width: 100%; flex: 0.85; }
.tk-sec-pain_media_card {
    position: relative;
    width: 100%;
    min-height: 320px;
    border-radius: 22px;
    overflow: hidden;
    background-color: #1e293b;
    border: 1px solid rgba(148, 163, 184, 0.15);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.tk-sec-pain_glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 70%);
}
.tk-sec-pain_img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; z-index: 1; }
.tk-sec-pain_floating_tag {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.tk-sec-pain_dot { width: 8px; height: 8px; background-color: #38bdf8; border-radius: 50%; }

/* Motions */
.tk-motion-pulse:hover { animation: tkP 1s infinite; }
.tk-motion-bounce:hover { animation: tkB 0.8s infinite; }
.tk-motion-spin:hover { animation: tkS 2.5s linear infinite; }
.tk-motion-shake:hover { animation: tkSh 0.6s ease; }
@keyframes tkP { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes tkB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes tkS { 100% { transform: rotate(360deg); } }
@keyframes tkSh { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-3px); } 75% { transform: translateX(3px); } }

/* =========================================================
   DESKTOP MEDIA QUERY (992px & ABOVE)
   ========================================================= */
@media (min-width: 992px) {
    .tk-sec-pain_wrap { padding: 4.5rem 1.5rem; }
    .tk-sec-pain_container { flex-direction: row; gap: 3.5rem; }
    .tk-sec-pain_left { align-items: flex-start; text-align: left; }
    
    /* Reset Slider back to 2-Column Grid on Desktop */
    .tk-sec-pain_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 0;
        margin: 0;
    }
    
    .tk-sec-pain_card {
        flex: unset;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 1.35rem;
        scroll-snap-align: unset;
    }
    
    /* Hide dots on Desktop */
    .tk-sec-pain_indicators { display: none; }
    
    .tk-sec-pain_btn_group { flex-direction: row; width: auto; }
    .tk-sec-pain_btn_p, .tk-sec-pain_btn_g { width: auto; }
    .tk-sec-pain_floating_tag { left: 20px; bottom: 20px; transform: none; }
}






















/* =========================================================
   SECTION 4: COMPLETE SEO SERVICES (tk-sec-srv_)
   ========================================================= */
.tk-sec-srv_wrap {
    width: 100%;
    padding: 3.5rem 0.75rem;
    display: flex;
    justify-content: center;
}
.tk-sec-srv_container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tk-sec-srv_header { text-align: center; max-width: 820px; margin-bottom: 2rem; }
.tk-sec-srv_badge { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; color: var(--primary-blue); margin-bottom: 0.75rem; display: inline-block; }
.tk-sec-srv_title { font-size: clamp(1.6rem, 4.5vw, 2.6rem); font-weight: 800; margin: 0 0 1rem 0; }
.tk-sec-srv_accent { color: var(--primary-blue); }
.tk-sec-srv_sub { font-size: 0.95rem; line-height: 1.65; color: var(--text-muted); margin: 0; }

.tk-sec-srv_nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f8fafc;
    border: 1px solid var(--border-light);
    padding: 6px;
    border-radius: 50px;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 2.5rem;
}
.tk-sec-srv_nav::-webkit-scrollbar { display: none; }
.tk-sec-srv_tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}
.tk-sec-srv_tab.active {
    background-color: var(--bg-card);
    color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    font-weight: 700;
}

.tk-sec-srv_panes {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-md);
}
.tk-sec-srv_pane { display: none; flex-direction: column; gap: 2rem; align-items: center; }
.tk-sec-srv_pane.active { display: flex; animation: tkFade 0.35s ease; }
@keyframes tkFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.tk-sec-srv_pane_media { width: 100%; flex: 1; }
.tk-sec-srv_visual_box {
    position: relative;
    width: 100%;
    min-height: 280px;
    border-radius: 18px;
    overflow: hidden;
    background-color: #f1f5f9;
    border: 1px solid var(--border-light);
}
.tk-sec-srv_img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }
.tk-sec-srv_tag {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.tk-sec-srv_dot { width: 8px; height: 8px; background-color: #10b981; border-radius: 50%; }

.tk-sec-srv_pane_text {
    width: 100%;
    flex: 1.15;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.tk-sec-srv_index {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-blue);
    background-color: var(--primary-blue-soft);
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 0.85rem;
}
.tk-sec-srv_pane_text h3 { font-size: clamp(1.35rem, 3.5vw, 1.95rem); font-weight: 800; margin: 0 0 1rem 0; }
.tk-sec-srv_pane_text p { font-size: 0.92rem; line-height: 1.65; color: var(--text-muted); margin: 0 0 1rem 0; }

.tk-sec-srv_chips { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; margin-top: 0.5rem; }
.tk-sec-srv_chip {
    font-size: 0.875rem;
    font-weight: 600;
    background-color: #f8fafc;
    border: 1px solid var(--border-light);
    padding: 8px 14px;
    border-radius: 10px;
    text-align: center;
}

.tk-sec-srv_cta { margin-top: 2rem; width: 100%; display: flex; justify-content: center; }
.tk-sec-srv_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    background-color: var(--primary-blue);
    color: #ffffff;
    transition: all 0.25s ease;
    width: 100%;
}
.tk-sec-srv_btn:hover { background-color: var(--primary-blue-hover); transform: translateY(-2px); }

@media (min-width: 992px) {
    .tk-sec-srv_panes { padding: 3.5rem; border-radius: 28px; }
    .tk-sec-srv_pane { flex-direction: row; gap: 3.5rem; }
    .tk-sec-srv_pane_text { align-items: flex-start; text-align: left; }
    .tk-sec-srv_chips { align-items: flex-start; }
    .tk-sec-srv_chip { width: auto; text-align: left; }
    .tk-sec-srv_tag { left: 20px; bottom: 20px; transform: none; }
    .tk-sec-srv_btn { width: auto; }
}

/* =========================================================
   SECTION 5: 5-STEP SEO PROCESS (tk-sec-proc_)
   ========================================================= */
.tk-sec-proc_wrap {
    width: 100%;
    background: radial-gradient(circle at top right, #131d33 0%, #090d16 100%);
    padding: 3.5rem 0.75rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.tk-sec-proc_container { max-width: 1280px; width: 100%; display: flex; flex-direction: column; }
.tk-sec-proc_top { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.25rem; }
.tk-sec-proc_header { max-width: 780px; text-align: center; }
.tk-sec-proc_badge { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; color: #38bdf8; margin-bottom: 0.75rem; display: inline-block; }
.tk-sec-proc_title { font-size: clamp(1.6rem, 4.5vw, 2.6rem); font-weight: 800; color: #f8fafc; margin: 0 0 1rem 0; }
.tk-sec-proc_cyan {
    background: linear-gradient(135deg, #38bdf8, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tk-sec-proc_sub { font-size: 0.95rem; line-height: 1.65; color: #94a3b8; margin: 0; }

.tk-sec-proc_arrows { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.tk-sec-proc_arr_btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #131b2e;
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}
.tk-sec-proc_arr_btn:hover { background-color: #2563eb; border-color: #38bdf8; color: #ffffff; transform: scale(1.08); }

.tk-sec-proc_track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}
.tk-sec-proc_track::-webkit-scrollbar { display: none; }

.tk-sec-proc_item { flex: 0 0 100%; scroll-snap-align: start; }
.tk-sec-proc_card {
    background-color: #131b2e;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 20px;
    padding: 1.75rem 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    transition: all 0.3s ease;
}
.tk-sec-proc_card:hover { background-color: #18223a; border-color: rgba(56, 189, 248, 0.4); transform: translateY(-4px); }

.tk-sec-proc_card_top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.tk-sec-proc_icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(56, 189, 248, 0.15));
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(56, 189, 248, 0.25);
}
.tk-sec-proc_pill {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
    background: rgba(56, 189, 248, 0.1);
    color: #7dd3fc;
    border: 1px solid rgba(56, 189, 248, 0.25);
}
.tk-sec-proc_card h3 { font-size: 1.25rem; font-weight: 800; color: #f1f5f9; margin: 0 0 1.15rem 0; }
.tk-sec-proc_lbl { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: #64748b; }
.tk-sec-proc_body p { font-size: 0.88rem; line-height: 1.6; color: #cbd5e1; margin: 0.35rem 0 1.25rem 0; }

.tk-sec-proc_outcome {
    background: rgba(15, 23, 42, 0.65);
    border: 1px dashed rgba(56, 189, 248, 0.35);
    border-radius: 12px;
    padding: 0.9rem 1rem;
}
.tk-sec-proc_out_lbl { font-size: 0.75rem; font-weight: 700; color: #38bdf8; text-transform: uppercase; }
.tk-sec-proc_outcome p { font-size: 0.85rem; font-weight: 600; color: #e2e8f0; margin: 0.25rem 0 0 0; }

.tk-sec-proc_card_special { background: linear-gradient(135deg, #131b2e, #172545); border-color: rgba(96, 165, 250, 0.35); }
.tk-icon-cyan { color: #60a5fa; border-color: rgba(96, 165, 250, 0.3); }
.tk-pill-cyan { background: rgba(96, 165, 250, 0.15); color: #93c5fd; border-color: rgba(96, 165, 250, 0.35); }

.tk-sec-proc_bar {
    width: 100%;
    background: #111a2e;
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}
.tk-sec-proc_bar_txt strong { font-size: 1.05rem; color: #f8fafc; display: block; margin-bottom: 0.25rem; }
.tk-sec-proc_bar_txt span { font-size: 0.88rem; color: #94a3b8; }
.tk-sec-proc_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    width: 100%;
}

@media (min-width: 768px) {
    .tk-sec-proc_top { flex-direction: row; justify-content: space-between; align-items: flex-end; }
    .tk-sec-proc_header { text-align: left; }
    .tk-sec-proc_item { flex: 0 0 calc((100% - 1.25rem) / 2); }
}

@media (min-width: 1024px) {
    .tk-sec-proc_wrap { padding: 5rem 1.5rem; }
    .tk-sec-proc_item { flex: 0 0 calc((100% - (1.25rem * 2)) / 3); }
    .tk-sec-proc_bar { flex-direction: row; justify-content: space-between; text-align: left; padding: 1.75rem 2.5rem; }
    .tk-sec-proc_btn { width: auto; }
}

















/* =========================================================
   SECTION: RECENT WORK & CASE STUDIES (tk-sec-work_)
   ========================================================= */
.tk-sec-work_wrap {
    width: 100%;
    background-color: #12161f;
    padding: 3.5rem 0.75rem;
    box-sizing: border-box;
    overflow: hidden;
}

.tk-sec-work_container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styles */
.tk-sec-work_header {
    text-align: center;
    max-width: 780px;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
}

.tk-sec-work_badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #38bdf8;
    margin-bottom: 1rem;
}

.tk-sec-work_title {
    font-size: clamp(1.6rem, 5vw, 2.6rem);
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.tk-sec-work_accent {
    color: #60a5fa;
}

.tk-sec-work_lead {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

/* Slider & Cards Layout (Mobile First: Touch Swipe Carousel) */
.tk-sec-work_slider_wrapper {
    width: 100%;
    position: relative;
}

.tk-sec-work_grid {
    display: flex;
    gap: 1.15rem;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.75rem 1rem 1.25rem 1rem;
    margin: 0 -0.75rem;
    box-sizing: border-box;
    scrollbar-width: none;
}

.tk-sec-work_grid::-webkit-scrollbar {
    display: none;
}

/* Base Card Styles */
.tk-sec-work_card {
    flex: 0 0 84%;
    scroll-snap-align: center;
    border-radius: 24px;
    padding: 1.6rem 1.35rem 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    box-sizing: border-box;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tk-sec-work_card_top {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 1.25rem;
}

.tk-card_num {
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.65;
    margin-bottom: 0.5rem;
}

.tk-card_heading {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 0.6rem 0;
    letter-spacing: -0.01em;
}

.tk-card_desc {
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
    opacity: 0.85;
}

/* Card Themes (Color Scheme Match) */
.tk-card-blue { background: #719df0; color: #0c1a30; }
.tk-card-yellow { background: #fac75b; color: #2e1d00; }
.tk-card-green { background: #6ec88f; color: #062b14; }
.tk-card-purple { background: #af8def; color: #1c093a; }
.tk-card-orange { background: #fca369; color: #351401; }
.tk-card-cyan { background: #579cf4; color: #081d38; }

/* Mockup Elements Containers */
.tk-mockup-wrap {
    width: 100%;
    margin-top: auto;
}

/* 1. Browser Mockup */
.tk-mockup-browser {
    background: #ffffff;
    border-radius: 16px;
    padding: 0.9rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.tk-browser-dots { display: flex; gap: 4px; margin-bottom: 0.65rem; }
.tk-browser-dots span { width: 6px; height: 6px; border-radius: 50%; background: #cbd5e1; }
.tk-browser-bar { height: 8px; width: 65%; background: #2563eb; border-radius: 4px; margin-bottom: 0.75rem; }
.tk-browser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.tk-bg-box {
    background: #eff6ff;
    border-radius: 8px;
    padding: 0.6rem 0.3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.tk-bg-box span { font-size: 0.65rem; color: #64748b; font-weight: 600; }
.tk-bg-box strong { font-size: 0.78rem; color: #1e40af; margin-top: 2px; }

/* 2. GMB Mockup */
.tk-mockup-gmb {
    background: #ffffff;
    border-radius: 16px;
    padding: 0.9rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.tk-gmb-header { display: flex; align-items: center; gap: 8px; margin-bottom: 0.6rem; }
.tk-gmb-avatar {
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.tk-gmb-title { font-size: 0.8rem; font-weight: 700; color: #0f172a; }
.tk-gmb-stars { font-size: 0.68rem; color: #f59e0b; font-weight: 600; }
.tk-gmb-stars span { color: #64748b; }
.tk-gmb-metrics {
    background: #fef3c7;
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: #78350f;
    margin-bottom: 0.6rem;
}
.tk-gmb-btns { display: flex; gap: 6px; }
.tk-gmb-btn {
    flex: 1;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 6px;
    font-size: 0.7rem;
    text-align: center;
    font-weight: 700;
    color: #334155;
}
.tk-gmb-btn.primary { background: #dbeafe; color: #1d4ed8; }

/* 3. Brand Card Mockup */
.tk-mockup-brand {
    background: #0f172a;
    border-radius: 16px;
    padding: 1.1rem;
    color: #ffffff;
}
.tk-brand-chip {
    font-size: 0.62rem;
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}
.tk-brand-title { font-size: 1.15rem; font-weight: 900; margin: 0 0 0.75rem 0; letter-spacing: -0.02em; }
.tk-brand-stats { display: flex; justify-content: space-between; margin-bottom: 0.75rem; }
.tk-brand-stats strong { font-size: 1rem; color: #4ade80; display: block; }
.tk-brand-stats span { font-size: 0.65rem; color: #94a3b8; }
.tk-brand-bars { display: flex; gap: 4px; height: 5px; }
.tk-brand-bars span { background: #4ade80; border-radius: 3px; }

/* 4. Chart Mockup */
.tk-mockup-growth {
    background: #ffffff;
    border-radius: 16px;
    padding: 0.9rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.tk-growth-header { display: flex; justify-content: space-between; font-size: 0.75rem; color: #475569; margin-bottom: 0.4rem; }
.tk-growth-badge { background: #f3e8ff; color: #7e22ce; padding: 2px 6px; border-radius: 4px; font-weight: 700; }
.tk-growth-chart { width: 100%; height: 45px; }
.tk-chart-svg { width: 100%; height: 100%; }
.tk-growth-footer { display: flex; justify-content: space-between; font-size: 0.62rem; color: #94a3b8; }

/* 5. Content Strategy Mockup */
.tk-mockup-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 0.9rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.tk-content-top { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: #334155; margin-bottom: 0.6rem; }
.tk-content-top strong { margin-left: auto; color: #ea580c; }
.tk-content-lines { display: flex; flex-direction: column; gap: 4px; margin-bottom: 0.65rem; }
.tk-line { height: 6px; background: #fed7aa; border-radius: 3px; }
.tk-line.full { width: 100%; }
.tk-line.med { width: 75%; }
.tk-line.short { width: 45%; }
.tk-content-tags { display: flex; gap: 4px; }
.tk-content-tags span { font-size: 0.6rem; background: #ffedd5; color: #9a3412; padding: 2px 6px; border-radius: 4px; font-weight: 600; }

/* 6. Stats & Progress Mockup */
.tk-mockup-stats {
    background: #ffffff;
    border-radius: 16px;
    padding: 0.9rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.tk-stats-title { display: flex; justify-content: space-between; font-size: 0.72rem; color: #334155; font-weight: 700; margin-bottom: 0.6rem; }
.tk-green-text { color: #16a34a; }
.tk-stat-row { margin-bottom: 0.45rem; }
.tk-stat-row span { font-size: 0.65rem; color: #64748b; display: block; margin-bottom: 2px; }
.tk-progress { height: 5px; width: 100%; background: #e2e8f0; border-radius: 3px; overflow: hidden; }
.tk-prog-fill { height: 100%; background: #2563eb; border-radius: 3px; }

/* Mobile Footer: Indicators & Swipe hint */
.tk-sec-work_footer_mob {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
}
.tk-sec-work_indicators {
    display: flex;
    gap: 6px;
}
.tk-indicator {
    width: 8px;
    height: 6px;
    border-radius: 4px;
    background: rgba(148, 163, 184, 0.3);
    transition: all 0.3s ease;
}
.tk-indicator.active {
    width: 24px;
    background: #38bdf8;
}
.tk-sec-work_swipe_hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* =========================================================
   DESKTOP MEDIA QUERY (992px & ABOVE)
   ========================================================= */
@media (min-width: 992px) {
    .tk-sec-work_wrap {
        padding: 5rem 1.5rem;
    }

    .tk-sec-work_header {
        margin-bottom: 3.5rem;
    }

    /* Transform Slider to 3-Column Desktop Grid */
    .tk-sec-work_grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 0;
        margin: 0;
    }

    .tk-sec-work_card {
        flex: unset;
        scroll-snap-align: unset;
        min-height: 490px;
        padding: 2.2rem 1.8rem 1.8rem;
    }

    .tk-sec-work_card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    }

    /* Hide Mobile UI helpers on Desktop */
    .tk-sec-work_footer_mob {
        display: none;
    }
}



























/* =========================================================
   SECTION 7: KEY INDUSTRIES (MOBILE AUTO-SLIDER & DESKTOP GRID)
   ========================================================= */
.tk-sec-ind_wrap {
    width: 100%;
    padding: 3.5rem 0.75rem;
    background-color: var(--bg-body, #ffffff);
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    font-family: var(--font-main, "Plus Jakarta Sans", sans-serif);
    overflow: hidden;
}

.tk-sec-ind_container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* Header */
.tk-sec-ind_header {
    text-align: center;
    max-width: 820px;
    margin-bottom: 2.25rem;
}

.tk-sec-ind_badge {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-blue, #2563eb);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.tk-sec-ind_title {
    font-size: clamp(1.6rem, 4.5vw, 2.6rem);
    line-height: 1.25;
    font-weight: 800;
    color: var(--text-dark, #0f172a);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.tk-sec-ind_accent {
    color: var(--primary-blue, #2563eb);
}

.tk-sec-ind_sub {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted, #64748b);
    margin: 0;
}

/* Mobile Track: Touch Scroll + Smooth Snap */
.tk-sec-ind_slider_track {
    display: flex;
    gap: 1.25rem;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0.25rem 1.25rem 0.25rem;
}

.tk-sec-ind_slider_track::-webkit-scrollbar {
    display: none;
}

/* Mobile Slide Items (1 Card per Screen) */
.tk-sec-ind_slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    box-sizing: border-box;
}

/* Base Card */
.tk-sec-ind_card {
    background-color: #f8fafc;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 24px;
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    height: 100%;
    min-height: 250px;
    box-sizing: border-box;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0, 0, 0, .05));
    cursor: pointer;
}

/* Icon Default */
.tk-sec-ind_icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--border-light, #e2e8f0);
    color: var(--text-dark, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
}

.tk-sec-ind_card_title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark, #0f172a);
    margin: 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.tk-sec-ind_card_desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-muted, #64748b);
    margin: 0;
    transition: color 0.3s ease;
}

/* Dynamic Blue Hover */
.tk-sec-ind_card:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.32);
}

.tk-sec-ind_card:hover .tk-sec-ind_icon {
    background-color: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: scale(1.06);
}

.tk-sec-ind_card:hover .tk-sec-ind_card_title {
    color: #ffffff;
}

.tk-sec-ind_card:hover .tk-sec-ind_card_desc {
    color: rgba(255, 255, 255, 0.92);
}

/* Mobile Dots Pagination */
.tk-sec-ind_dots_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.75rem;
}

.tk-sec-ind_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tk-sec-ind_dot.active {
    width: 24px;
    border-radius: 20px;
    background-color: var(--primary-blue, #2563eb);
}

/* =========================================================
   TABLET (>= 768px)
   ========================================================= */
@media (min-width: 768px) {
    .tk-sec-ind_slide {
        flex: 0 0 calc((100% - 1.25rem) / 2); /* 2 per view on tablet */
    }
}

/* =========================================================
   DESKTOP (>= 1024px) -> STRICT 3x2 GRID (NO SLIDER)
   ========================================================= */
@media (min-width: 1024px) {
    .tk-sec-ind_wrap {
        padding: 5rem 1.5rem;
    }

    .tk-sec-ind_slider_track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
        overflow: visible;
        padding: 0;
    }

    .tk-sec-ind_slide {
        flex: auto;
    }

    .tk-sec-ind_card {
        padding: 2.5rem 2rem;
        min-height: 260px;
    }

    .tk-sec-ind_dots_wrap {
        display: none; /* Hide dots on desktop */
    }
}
































/* =========================================================
   SECTION 8: MONTHLY DELIVERABLES (DARK SLATE THEME)
   ========================================================= */
.tk-sec-deliv_wrap {
    width: 100%;
    padding: 3.5rem 0;
    /* Dark Neutral Slate Canvas (Chat Surface Look) */
    background: radial-gradient(circle at 50% 0%, #17233f 0%, #0b0f19 100%);
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    font-family: var(--font-main, "Plus Jakarta Sans", sans-serif);
    overflow: hidden;
    position: relative;
}

.tk-sec-deliv_container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Header & Navigation Row (Centered on All Devices) */
.tk-sec-deliv_top_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 0 1.25rem;
    margin-bottom: 2.5rem;
}

.tk-sec-deliv_header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.tk-sec-deliv_badge {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 0.85rem;
    display: inline-block;
}

.tk-sec-deliv_title {
    font-size: clamp(1.6rem, 4.5vw, 2.6rem);
    line-height: 1.25;
    font-weight: 800;
    color: #f8fafc;
    margin: 0 auto 1rem auto;
    letter-spacing: -0.02em;
    text-align: center;
}

.tk-sec-deliv_accent {
    background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tk-sec-deliv_sub {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0 auto;
    text-align: center;
}

/* Arrows (Centered below text) */
.tk-sec-deliv_arrows {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.tk-sec-deliv_btn_arr {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #131b2e;
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease;
}

.tk-sec-deliv_btn_arr:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-color: #38bdf8;
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
}

/* =========================================================
   MOBILE PEEK CAROUSEL TRACK (DARK CARDS)
   ========================================================= */
.tk-sec-deliv_track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 1.25rem 1.75rem 1.25rem;
}

.tk-sec-deliv_track::-webkit-scrollbar {
    display: none;
}

/* Mobile Slide */
.tk-sec-deliv_item {
    flex: 0 0 82%;
    scroll-snap-align: center;
    box-sizing: border-box;
}

/* Dark Slate Surface Card */
.tk-sec-deliv_card {
    background-color: #131b2e;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 24px;
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 290px;
    box-sizing: border-box;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.tk-layout-top {
    justify-content: flex-start;
    gap: 1.75rem;
}

.tk-layout-bottom {
    justify-content: space-between;
    gap: 1.75rem;
}

/* Card Hover Elevation */
.tk-sec-deliv_card:hover {
    background-color: #18233c;
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45), 0 0 20px rgba(56, 189, 248, 0.12);
}

/* Glowing Icon Bubble */
.tk-sec-deliv_icon_box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(56, 189, 248, 0.15) 100%);
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tk-sec-deliv_card:hover .tk-sec-deliv_icon_box {
    background: #2563eb;
    color: #ffffff;
    border-color: #60a5fa;
    transform: scale(1.08);
}

.tk-sec-deliv_content {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.tk-sec-deliv_h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #f1f5f9;
    margin: 0;
    line-height: 1.35;
}

.tk-sec-deliv_p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

/* Progress Bar on Mobile */
.tk-sec-deliv_progress_wrap {
    width: 140px;
    height: 4px;
    background-color: rgba(148, 163, 184, 0.2);
    border-radius: 10px;
    margin: 0.5rem auto 0 auto;
    overflow: hidden;
}

.tk-sec-deliv_progress_bar {
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, #38bdf8, #2563eb);
    border-radius: 10px;
    transition: width 0.25s ease;
}

/* =========================================================
   TABLET & DESKTOP (>= 768px & >= 1024px)
   ========================================================= */
@media (min-width: 768px) {
    .tk-sec-deliv_arrows {
        display: flex;
    }

    .tk-sec-deliv_item {
        flex: 0 0 calc((100% - 1.25rem) / 2);
    }
}

@media (min-width: 1024px) {
    .tk-sec-deliv_wrap {
        padding: 5rem 1.5rem;
    }

    .tk-sec-deliv_track {
        padding: 0.5rem 0 1.5rem 0;
    }

    .tk-sec-deliv_item {
        /* EXACT 3 CARDS PER VIEW */
        flex: 0 0 calc((100% - (1.25rem * 2)) / 3);
        scroll-snap-align: start;
    }

    .tk-sec-deliv_card {
        padding: 2.5rem 2rem;
        min-height: 310px;
    }

    .tk-sec-deliv_progress_wrap {
        display: none;
    }
}






























/* =========================================================
   SECTION 9: WHY CHOOSE US (LIGHT CLEAN THEME)
   ========================================================= */
.tk-sec-why_wrap {
    width: 100%;
    padding: 4.5rem 0.75rem;
    background-color: #f8fafc; /* Crisp light gray surface */
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    font-family: var(--font-main, "Plus Jakarta Sans", sans-serif);
    overflow: hidden;
}

.tk-sec-why_container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* Header */
.tk-sec-why_header {
    text-align: center;
    max-width: 840px;
    margin-bottom: 2.75rem;
}

.tk-sec-why_badge {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-blue, #2563eb);
    background-color: var(--primary-blue-soft, #eff6ff);
    border: 1px solid rgba(37, 99, 235, 0.18);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 0.85rem;
    display: inline-block;
}

.tk-sec-why_title {
    font-size: clamp(1.6rem, 4.5vw, 2.6rem);
    line-height: 1.25;
    font-weight: 800;
    color: var(--text-dark, #0f172a);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.tk-sec-why_accent {
    color: var(--primary-blue, #2563eb);
}

.tk-sec-why_sub {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted, #64748b);
    margin: 0;
}

/* =========================================================
   MOBILE PEEK CAROUSEL (LIGHT THEME)
   ========================================================= */
.tk-sec-why_track {
    display: flex;
    gap: 1.25rem;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.75rem 0.5rem 1.5rem 0.5rem;
}

.tk-sec-why_track::-webkit-scrollbar {
    display: none;
}

/* Base Inactive Card (White & Soft Border) */
.tk-sec-why_card {
    flex: 0 0 84%;
    scroll-snap-align: center;
    background-color: #ffffff;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 26px;
    padding: 1.85rem 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    box-sizing: border-box;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0, 0, 0, .05));
    cursor: pointer;
}

.tk-sec-why_card_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 1.25rem;
}

.tk-sec-why_info {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.tk-sec-why_icon_pill {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background-color: var(--primary-blue-soft, #eff6ff);
    color: var(--primary-blue, #2563eb);
    border: 1px solid rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tk-sec-why_h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark, #0f172a);
    margin: 0;
    line-height: 1.35;
}

.tk-sec-why_desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted, #64748b);
    margin: 0;
}

/* Media Box */
.tk-sec-why_media {
    width: 100%;
    margin-top: auto;
}

.tk-sec-why_visual_box {
    position: relative;
    width: 100%;
    height: 140px;
    border-radius: 18px;
    overflow: hidden;
    background-color: #f1f5f9;
    border: 1px solid var(--border-light, #e2e8f0);
}

.tk-sec-why_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: all 0.4s ease;
}

.tk-sec-why_chip {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    white-space: nowrap;
}

/* =========================================================
   ACTIVE / EXPANDED STATE (ROYAL BLUE GRADIENT LIKE REF IMAGE)
   ========================================================= */
.tk-sec-why_card.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: transparent;
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.32);
    transform: translateY(-4px);
}

.tk-sec-why_card.active .tk-sec-why_icon_pill {
    background-color: #ffffff;
    color: var(--primary-blue, #2563eb);
    border-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.tk-sec-why_card.active .tk-sec-why_h3 {
    color: #ffffff;
}

.tk-sec-why_card.active .tk-sec-why_desc {
    color: rgba(255, 255, 255, 0.92);
}

.tk-sec-why_card.active .tk-sec-why_img {
    opacity: 1;
    transform: scale(1.04);
}

/* =========================================================
   DESKTOP ACCORDION EXPANSION (>= 1024px)
   ========================================================= */
@media (min-width: 1024px) {
    .tk-sec-why_wrap {
        padding: 5.5rem 1.5rem;
    }

    .tk-sec-why_track {
        display: flex;
        overflow: visible;
        padding: 0;
        gap: 1.5rem;
        height: 380px;
    }

    /* Collapsed Cards on Desktop */
    .tk-sec-why_card {
        flex: 1;
        min-height: 100%;
        height: 100%;
        padding: 2.25rem 1.6rem;
        border-radius: 28px;
    }

    .tk-sec-why_card:not(.active):hover {
        border-color: rgba(37, 99, 235, 0.4);
        transform: translateY(-3px);
    }

    .tk-sec-why_card:not(.active) .tk-sec-why_media {
        display: none;
    }

    .tk-sec-why_card:not(.active) .tk-sec-why_card_inner {
        justify-content: flex-start;
        gap: 1.25rem;
    }

    /* Expanded Card on Desktop */
    .tk-sec-why_card.active {
        flex: 2.2;
    }

    .tk-sec-why_card.active .tk-sec-why_card_inner {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }

    .tk-sec-why_card.active .tk-sec-why_info {
        flex: 1.1;
    }

    .tk-sec-why_card.active .tk-sec-why_media {
        display: block;
        flex: 1;
        height: 100%;
        min-height: 280px;
    }

    .tk-sec-why_card.active .tk-sec-why_visual_box {
        height: 100%;
        min-height: 280px;
        border-color: rgba(255, 255, 255, 0.2);
    }
}














































































/* =========================================================
   SECTION 11: FINAL CTA BANNER (DARK THEME - tk-sec-cta_)
   ========================================================= */
.tk-sec-cta_wrap {
    width: 100%;
    padding: 3.5rem 0.75rem 5rem 0.75rem;
    background-color: #0f172a; /* Seamless dark neutral slate background matching previous dark sections */
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    font-family: var(--font-main, "Plus Jakarta Sans", sans-serif);
}

.tk-sec-cta_container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

/* Main Curved Dark Surface Card */
.tk-sec-cta_card {
    width: 100%;
    position: relative;
    /* Rich Deep Slate-Navy Gradient Surface with subtle border */
    background: linear-gradient(135deg, #131b2e 0%, #0b0f19 100%);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 32px;
    padding: 4rem 2rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(37, 99, 235, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* Background Ambient Glows (Cyber Cyan / Electric Blue Tints) */
.tk-sec-cta_glow_left {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.tk-sec-cta_glow_right {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.tk-sec-cta_content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tk-sec-cta_badge {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.tk-sec-cta_title {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    line-height: 1.2;
    font-weight: 800;
    color: #f8fafc;
    margin: 0 0 1.25rem 0;
    letter-spacing: -0.02em;
}

.tk-sec-cta_title span {
    background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tk-sec-cta_desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0 0 1rem 0;
}

.tk-sec-cta_subnote {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    margin: 0 0 2.25rem 0;
    display: inline-block;
}

/* Action Pill Buttons Group */
.tk-sec-cta_btn_group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.tk-sec-cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    width: 100%;
}

/* High-Contrast White Pill Button */
.tk-sec-cta_btn_white {
    background-color: #ffffff;
    color: #0f172a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.tk-sec-cta_btn_white i {
    font-size: 1.2rem;
    color: #25d366; /* WhatsApp Brand Green */
}

.tk-sec-cta_btn_white:hover {
    background-color: #f1f5f9;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Glass Outline Pill Button for Dark Theme */
.tk-sec-cta_btn_glass {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    color: #f1f5f9;
    border: 1.5px solid rgba(148, 163, 184, 0.25);
}

.tk-sec-cta_btn_glass:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: #38bdf8;
    color: #38bdf8;
    transform: translateY(-3px);
}

/* =========================================================
   TABLET & DESKTOP ADJUSTMENTS (>= 768px)
   ========================================================= */
@media (min-width: 768px) {
    .tk-sec-cta_card {
        padding: 5rem 3.5rem;
        border-radius: 40px;
    }

    .tk-sec-cta_btn_group {
        flex-direction: row;
        width: auto;
        gap: 1.25rem;
    }

    .tk-sec-cta_btn {
        width: auto;
        padding: 15px 32px;
    }
}








































































